
Cc
- 3 repo stars
- Updated November 20, 2025
- seanGSISG/crispy-claude
Enhanced Claude Code skills with parallel execution, TDD, debugging, and collaboration patterns
About
cc is a Claude Code skill in the Debugging category. Enhanced Claude Code skills with parallel execution, TDD, debugging, and collaboration patterns
- cc
- Debugging
- AI-coding skill
Cc by the numbers
- Data as of Jul 7, 2026 (Skillselion catalog sync)
/plugin marketplace add seanGSISG/crispy-claude/plugin install cc@crispy-claudeAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| repo stars | ★ 3 |
|---|---|
| Last updated | November 20, 2025 |
| Repository | seanGSISG/crispy-claude ↗ |
What it does
Enhanced Claude Code skills with parallel execution, TDD, debugging, and collaboration patterns
README.md
Crispy Claude
Enhanced Claude Code skills with parallel execution, proven techniques, patterns, and workflows for AI coding assistants.
What You Get
- Testing Skills - TDD, async testing, anti-patterns
- Debugging Skills - Systematic debugging, root cause tracing, verification
- Collaboration Skills - Brainstorming, planning, code review, parallel agents
- Development Skills - Git worktrees, finishing branches, subagent workflows
- Meta Skills - Creating, testing, and sharing skills
Plus:
- Slash Commands -
/cc:brainstorm,/cc:write-plan,/cc:decompose-plan - Parallel Execution - Run up to 2 subagents simultaneously for independent tasks
- Automatic Integration - Skills activate automatically when relevant
- Consistent Workflows - Systematic approaches to common engineering tasks
Installation
Claude Code (via Plugin Marketplace)
In Claude Code, add the marketplace and install:
/plugin marketplace add seanGSISG/crispy-claude
/plugin install cc@crispy-claude
Verify Installation
Check that commands appear:
/help
# Should see:
# /cc:brainstorm - Interactive design refinement
# /cc:write-plan - Create implementation plan
# /cc:decompose-plan - Decompose plan for parallel execution
Codex (Experimental)
Note: Codex support is experimental and may require refinement based on user feedback.
Tell Codex to fetch https://raw.githubusercontent.com/seanGSISG/crispy-claude/refs/heads/main/.codex/INSTALL.md and follow the instructions.
Quick Start
Standard Workflow (Parallel Execution)
1. Brainstorm a design:
/cc:brainstorm
2. Create an implementation plan:
/cc:write-plan
3. Decompose plan for parallel execution:
/cc:decompose-plan
4. Execute with parallel subagents:
After decomposition, use the parallel-subagent-driven-development skill to run up to 2 subagents simultaneously on independent tasks.
Alternative: Sequential Execution
Use /cc:execute-plan for manual batch execution without parallelization.
Automatic Skill Activation
Skills activate automatically when relevant. For example:
test-driven-developmentactivates when implementing featuressystematic-debuggingactivates when debugging issuesverification-before-completionactivates before claiming work is done
What's Inside
Skills Library
Testing (skills/testing/)
- test-driven-development - RED-GREEN-REFACTOR cycle
- condition-based-waiting - Async test patterns
- testing-anti-patterns - Common pitfalls to avoid
Debugging (skills/debugging/)
- systematic-debugging - 4-phase root cause process
- root-cause-tracing - Find the real problem
- verification-before-completion - Ensure it's actually fixed
- defense-in-depth - Multiple validation layers
Collaboration (skills/collaboration/)
- brainstorming - Socratic design refinement
- writing-plans - Detailed implementation plans
- decomposing-plans - Split plans into parallel task files (NEW!)
- parallel-subagent-driven-development - Execute with up to 2 parallel subagents (NEW!)
- executing-plans - Batch execution with checkpoints
- subagent-driven-development - Fast iteration with quality gates (sequential)
- dispatching-parallel-agents - Concurrent subagent workflows
- requesting-code-review - Pre-review checklist
- receiving-code-review - Responding to feedback
- using-git-worktrees - Parallel development branches
- finishing-a-development-branch - Merge/PR decision workflow
Meta (skills/meta/)
- writing-skills - Create new skills following best practices
- sharing-skills - Contribute skills back via branch and PR
- testing-skills-with-subagents - Validate skill quality
- using-crispyclaude - Introduction to the skills system
Commands
All commands are thin wrappers that activate the corresponding skill:
- brainstorm.md - Activates the
brainstormingskill - write-plan.md - Activates the
writing-plansskill - decompose-plan.md - Activates the
decomposing-plansskill (NEW!) - execute-plan.md - Activates the
executing-plansskill
How It Works
- SessionStart Hook - Loads the
using-crispyclaudeskill at session start - Skills System - Uses Claude Code's first-party skills system
- Automatic Discovery - Claude finds and uses relevant skills for your task
- Mandatory Workflows - When a skill exists for your task, using it becomes required
Philosophy
- Test-Driven Development - Write tests first, always
- Systematic over ad-hoc - Process over guessing
- Complexity reduction - Simplicity as primary goal
- Evidence over claims - Verify before declaring success
- Domain over implementation - Work at problem level, not solution level
Contributing
Skills live directly in this repository. To contribute:
- Fork the repository
- Create a branch for your skill
- Follow the
writing-skillsskill for creating new skills - Use the
testing-skills-with-subagentsskill to validate quality - Submit a PR
See skills/meta/writing-skills/SKILL.md for the complete guide.
Updating
Skills update automatically when you update the plugin:
/plugin update cc
License
MIT License - see LICENSE file for details
New Features: Parallel Execution
What's New
Decompose plans into parallel tasks:
- Split monolithic plans into individual task files
- Automatic dependency analysis
- Identify tasks that can run in parallel
Execute with parallel subagents:
- Run up to 2 subagents simultaneously
- 90% context savings (task files vs monolithic plan)
- 40% time savings for parallelizable tasks
- Same quality gates (code review after each batch)
Workflow Comparison
Before (Sequential):
/brainstorm → /write-plan → /execute-plan
- Manual batch execution
- One task at a time
- 5 tasks × 10 min = 50 min
After (Parallel):
/brainstorm → /write-plan → /decompose-plan → parallel-subagent-driven-development
- Automatic parallelization
- Up to 2 tasks simultaneously
- 3 batches × 10 min = 30 min (40% faster!)
Example Output Structure
docs/plans/
├── 2025-01-18-user-auth.md # Monolithic plan
└── tasks/
└── 2025-01-18-user-auth/ # Plan-specific subfolder
├── user-auth-task-01.md # Individual task files
├── user-auth-task-02.md
├── user-auth-task-03.md
└── user-auth-manifest.json # Parallel batches + dependencies