| name | using-gambit |
| description | Use at the start of every session before any response or action. Also invoke whenever uncertain which gambit skill applies, when about to implement / debug / refactor / test / plan / brainstorm, or when a user request could match any gambit skill even at 1% probability. |
If you think there is even a 1% chance a skill might apply to what you are doing, you ABSOLUTELY MUST invoke the skill using the Skill tool.
IF A SKILL APPLIES TO YOUR TASK, YOU DO NOT HAVE A CHOICE. YOU MUST USE IT.
This is not negotiable. This is not optional. You cannot rationalize your way out of this.
Using Gambit
Gambit provides structured development workflows using native Claude Code Tasks. This skill loads at session start and routes work to the correct skill.
Invoke relevant skills BEFORE any response or action. Even a 1% chance a skill might apply means you invoke the skill to check. If it turns out to be wrong, you don't need to follow it.
Rigidity Level
LOW FREEDOM — Always check for relevant skills before acting. Never skip the check. No exceptions.
Instruction Priority
Gambit skills override default system prompt behavior where they conflict, but user instructions always take precedence:
- User's explicit instructions (CLAUDE.md at any scope, direct requests in the current conversation) — highest priority
- Gambit skills — override default system behavior where they conflict
- Default system prompt — lowest priority
If a user CLAUDE.md says "don't use TDD for this project" and gambit:test-driven-development says "always use TDD," follow the user. The user is in control.
This does NOT mean a terse user instruction ("add X", "fix Y") exempts you from checking for skills first — see the User Instructions section below. It means that when a user has explicitly opted out of a workflow, their instruction wins.
How to Access Skills
Use the Skill tool. When you invoke a skill, its content is loaded — follow it directly. Never use the Read tool on skill files.
Quick Reference
| Task Type | Skill | Slash Command |
|---|
| New feature idea | brainstorming | /gambit:brainstorming |
| Execute tasks | executing-plans | /gambit:executing-plans |
| Fix a bug | debugging | /gambit:debugging |
| Implement with TDD | test-driven-development | /gambit:test-driven-development |
| Improve code structure | refactoring | /gambit:refactoring |
| Review implementation | review | /gambit:review |
| Audit test quality | testing-quality | /gambit:testing-quality |
| Refine task details | task-refinement | /gambit:task-refinement |
| Verify completion | verification | /gambit:verification |
| Parallel investigations | parallel-agents | /gambit:parallel-agents |
| Create/modify skills | writing-skills | /gambit:writing-skills |
| Start feature branch | using-worktrees | /gambit:using-worktrees |
| Finish feature branch | finishing-branch | /gambit:finishing-branch |
The Rule
digraph skill_flow {
"User message received" [shape=doublecircle];
"Might any skill apply?" [shape=diamond];
"Invoke Skill tool" [shape=box];
"Announce: 'Using gambit:[skill] to [purpose]'" [shape=box];
"Follow skill exactly" [shape=box];
"Respond" [shape=doublecircle];
"User message received" -> "Might any skill apply?";
"Might any skill apply?" -> "Invoke Skill tool" [label="yes, even 1%"];
"Might any skill apply?" -> "Respond" [label="definitely not"];
"Invoke Skill tool" -> "Announce: 'Using gambit:[skill] to [purpose]'";
"Announce: 'Using gambit:[skill] to [purpose]'" -> "Follow skill exactly";
}
Skill Selection Guide
User describes a new idea or feature, no epic yet → gambit:brainstorming
gambit:brainstorming
Creates epic (immutable requirements) + first task via Socratic questioning,
scaled to how clear the idea already is — a crisp spec gets brief questioning,
a rough idea gets more. Tasks are created iteratively during execution, never
all upfront. Brainstorming will ask: worktree? refine tasks? → routes to executing-plans.
If an epic and tasks already exist → gambit:executing-plans directly.
There is no separate plan-writing skill. "Break this into tasks", "make an implementation plan", "lay out the tasks and dependencies" all route to gambit:brainstorming (which creates the epic + first task; the rest are created iteratively during execution). Do NOT look for or invoke gambit:writing-plans — it does not exist. Upfront full task graphs are deliberately not part of gambit.
The flow then continues automatically:
executing-plans (one task → checkpoint → STOP → repeat)
↓ all tasks done
review (4-reviewer parallel code review)
↓ approved
finishing-branch (verify → merge/PR/keep/discard)
Skill Priority — when multiple skills could apply:
- Process skills first (brainstorming, debugging) — these determine HOW to approach the task
- Implementation skills second (TDD, refactoring) — these guide execution
- Verification skills last (verification, testing-quality) — these confirm results
"Let's build X" → brainstorming first, then TDD.
"Fix this bug" → debugging first to find the root cause, then brainstorming designs the fix.
"I think it's done" → verification before claiming complete.
Red Flags
These thoughts mean STOP — you're rationalizing:
| Thought | Reality |
|---|
| "This is just a simple question" | Questions are tasks. Check for skills. |
| "I need more context first" | Skill check comes BEFORE clarifying questions. |
| "Let me explore the codebase first" | Skills tell you HOW to explore. Check first. |
| "This doesn't need a formal skill" | If a skill exists for it, use it. No exceptions. |
| "I remember this skill" | Skills evolve. Invoke the current version. |
| "This doesn't count as a task" | Action = task. Check for skills. |
| "The skill is overkill for this" | Simple things become complex. Use it. |
| "I'll just do this one thing first" | Check BEFORE doing anything. |
| "This is almost done, no need" | If you haven't verified, you're not done. |
| "Too simple for Tasks" | Simple tasks finish fast. Track them anyway. |
| "I know the pattern already" | Load the skill. Memory drifts, skills don't. |
| "Let me just fix this quickly" | Create a Task, follow the process. |
| "This feels productive" | Undisciplined action wastes time. Skills prevent this. |
Core Principles
These apply across ALL gambit skills:
- One task then stop — Execute one Task, present checkpoint, STOP for human review
- Tasks are source of truth — Use
TaskCreate, TaskUpdate, TaskList, TaskGet. Never track work mentally
- Evidence over assertions — Run verification commands and show output before claiming done
- Small steps that stay green — Tests pass between every change
- Immutable requirements — Epic requirements don't change; Tasks adapt to reality
User Instructions
Instructions say WHAT, not HOW. "Add X" or "Fix Y" doesn't mean skip workflows. The user telling you to do something does NOT exempt you from checking for skills first.
Integration
Loaded by: Session start hook (automatic)
Calls: All other gambit skills based on task context
Task tools used:
TaskCreate — Create tasks with subject, description, activeForm
TaskUpdate — Set status (in_progress/completed), add blockers via addBlockedBy
TaskList — Find ready tasks (status=pending, blockedBy=[])
TaskGet — Read full task details and success criteria