anthemflynn/ccmp
Anthem's Claude Code Marketplace - A curated collection of skills and plugins for Claude Code
npx skills add anthemflynn/ccmpREADME
Anthem's Claude Code Marketplace (CCMP)
The Integrated Development Experience for Claude Code
A curated collection of deeply integrated plugins that work together to provide compound value: context management, session workflows, and test-driven development that amplify each other's effectiveness.
šÆ Why CCMP?
Most plugin collections are just that: collections. CCMP plugins are designed to work together, providing exponentially more value when used as a system rather than individually.
The Power of Integration
| Using Individually | Using Together (CCMP) |
|---|---|
| Manually check context health | Auto-checked at every checkpoint |
| Remember to update documentation | Auto-updated on GREEN checkpoints |
| Track TDD discipline manually | Automatically analyzed and scored |
| Context goes stale | Real-time monitoring and alerts |
| Session handoffs miss details | Comprehensive: context + TDD + decisions |
Result: Zero cognitive overhead. Everything happens automatically.
š Quick Start
Installation
# Add the marketplace to Claude Code
claude-code marketplace add AnthemFlynn/ccmp
# Install all three core plugins for full integration
claude-code plugin add AnthemFlynn/ccmp/claude-context-manager
claude-code plugin add AnthemFlynn/ccmp/session-management
claude-code plugin add AnthemFlynn/ccmp/tdd-workflow
Your First Integrated Session
# 1. Start a TDD session (activates all three plugins)
python scripts/session.py start feature/payment --tdd --objective "Add Stripe integration"
# Integration provides automatically:
# ā
Loads relevant claude.md context files
# ā
Shows context health warnings
# ā
Activates TDD workflow
# ā
Sets up checkpoint tracking
# 2. Work with full context + TDD discipline
# - Write failing test (RED)
# - Implement minimal code (GREEN)
# - Refactor if needed
# 3. Create GREEN checkpoint (magic happens here!)
python scripts/session.py checkpoint --label "stripe-webhook" --tdd-phase GREEN
# Automatically:
# ā
Analyzes test patterns
# ā
Updates tests/claude.md with discovered patterns
# ā
Checks context health
# ā
Increments TDD cycle counter
# ā
Creates git commit
# 4. Analyze TDD discipline
python scripts/session.py analyze
# Shows:
# - TDD score (0-100)
# - Violations detected
# - Cycle timing
# - Recommendations
# 5. End with comprehensive handoff
python scripts/session.py end
# Includes:
# - Context health report
# - TDD metrics and violations
# - Test pattern updates
# - Next session recommendations
Zero manual integration. Everything just works.
š The Integrated Ecosystem
CCMP plugins share state through .ccmp/state.json and coordinate automatically:
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā Session Management (Orchestrator) ā
ā ⢠Git-native workflows ā
ā ⢠Checkpoint tracking ā
ā ⢠Objective management ā
āāāāāāāāāāāāāāāā¬āāāāāāāāāāāāāāāāāāāāāā¬āāāāāāāāāāāāāāāāā
ā ā
āāāāāāāāā¼āāāāāāāāā āāāāāāāā¼āāāāāāāāā
ā Context ā ā TDD ā
ā Manager ā ā Workflow ā
ā ā ā ā
ā ⢠Health ā ā ⢠Cycle ā
ā monitoring ā ā tracking ā
ā ⢠Auto-updates ā ā ⢠Pattern ā
ā ⢠Staleness ā ā discovery ā
ā detection ā ā ⢠Violation ā
ā ā ā detection ā
āāāāāāāāāā¬āāāāāāāā āāāāāāāāā¬āāāāāāāā
ā ā
āāāāāāāāāā¬āāāāāāāāāāāā
ā
āāāāāā¼āāāāā
ā .ccmp/ ā
ā state ā
ā .json ā
āāāāāāāāāāā
Integration Patterns
Pattern 1: Context Loading
- Sessions auto-load relevant
claude.mdfiles based on objectives - Full situational awareness from the start
Pattern 2: Health Monitoring
- Checkpoints detect stale context (>30 days)
- Automatic warnings and update recommendations
Pattern 3: Test Documentation
- GREEN checkpoints analyze test patterns
- Auto-generate/update
tests/*/claude.md - Patterns documented for future tests
Pattern 4: TDD Analysis
- Git history analyzed for violations
- Discipline scores calculated
- Cycle timing tracked
Pattern 5: Comprehensive Handoffs
- Context health + TDD metrics + decisions
- Next session knows exactly what needs attention
[Read Full Integration Guide ā](./docs/guid
...