Claude Code plugin marketplace for cc-track
npx claudepluginhub cahaseler/cc-track-marketplaceTask Review And Context Keeper: Keep your vibe coding on track
Semantic search for Claude Code conversations. Remember past discussions, decisions, and patterns.
Claude Code marketplace entries for the plugin-safe Antigravity Awesome Skills library and its compatible editorial bundles.
Production-ready workflow orchestration with 79 focused plugins, 184 specialized agents, and 150 skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
Task Review And Context Keeper - Keep your vibe coding on track 🚅
This marketplace provides the cc-track plugin for Claude Code - a comprehensive context management and workflow optimization system that solves the fundamental problem of context loss in AI-assisted development.
cc-track provides:
Before installing cc-track, ensure you have:
Verify Bun installation:
bun --version # Should show 1.0.0+
# 1. Add this marketplace (one-time setup)
/plugin marketplace add cahaseler/cc-track-marketplace
# 2. Install cc-track plugin
/plugin install cc-track@cc-track-marketplace
# 3. Install plugin dependencies
cd $(dirname $(which claude-code))/../plugins/cc-track
bun install
# Navigate to your project
cd /path/to/your-project
# Start Claude Code
claude-code
In Claude Code:
# Run setup command
/setup-cc-track
# Follow the interactive prompts to configure features
/specify, /clarify, /plan, /tasks workflowAfter installation:
# 1. Run setup in your project
/setup-cc-track
# 2. Create your first feature spec
/specify "Add user authentication"
# 3. Clarify requirements
/clarify
# 4. Generate technical plan
/plan
# 5. Create task breakdown
/tasks
# 6. Start implementing!
# (Claude works through tasks, validating as you go)
# 7. When ready to complete
/prepare-completion # Validates tests, lint, runs code review
/complete-task # Squashes commits, creates PR
/setup-cc-track - Initial setup wizard/specify - Create feature specification/clarify - Refine requirements/plan - Generate implementation plan/tasks - Create task breakdown/prepare-completion - Validate task readiness/complete-task - Complete task and create PR/add-to-backlog - Add ideas without disrupting work/constitution - Set project guardrails/config-track - Modify feature configurationcc-track creates a .claude/ directory in your project:
your-project/
├── .claude/
│ ├── specs/ # Feature specifications
│ │ └── 001-feature/
│ │ ├── spec.md # Requirements
│ │ ├── plan.md # Technical design
│ │ ├── tasks.md # Task breakdown
│ │ └── progress.md # Implementation log
│ ├── track.config.json # Feature configuration
│ ├── product_context.md # Project vision
│ ├── system_patterns.md # Technical patterns
│ ├── decision_log.md # Architectural decisions
│ └── ...
└── CLAUDE.md # Main context file
Enable/disable features in .claude/track.config.json:
{
"features": {
"edit_validation": { "enabled": true },
"pre_tool_validation": { "enabled": true },
"github_integration": {
"enabled": true,
"auto_create_issues": true,
"auto_create_prs": true
},
"statusline": { "enabled": true },
"api_timer": { "display": "sonnet-only" }
}
}
If you previously used cc-track v2.x (npm package):
# 1. Uninstall npm version
npm uninstall -g cc-track
# 2. Install plugin (follow Installation steps above)
# 3. Your .claude/ project files work unchanged!
See the full migration guide for detailed instructions.
Update cc-track to the latest version:
/plugin update cc-track
Claude Code handles updates automatically.