Claude Code Slash Commands Playbook — Solanasis LLC

Date: 2026-03-25 Version: 1.1 Status: AUTHORITATIVE — Single reference for all Claude Code commands, skills, and agent workflows Author: Claude Code (Opus 4.6), commissioned by Dmitri Zasage


TL;DR — The single “get shit done” command: /ultra-auto {description} Plans it, builds it, tests it, reviews it, verifies it. Walk away and come back to results. See Section 2c for details. Updated 2026-03-25.


How to Use This Playbook

This is the “what command do I use for X?” reference. It covers every slash command, skill, and agent workflow across all of Dmitri’s repos and tools. Start with the Decision Tree (Section 1), then drill into the relevant system.

Related docs:


1. Quick Reference: Decision Tree

What are you trying to do?
|
+-- Simple task (< 15 min, routine)
|   +-- Just do it. No planning command needed.
|   +-- Examples: research a prospect, draft an email, update a doc
|
+-- Quick research / lookup
|   +-- Simple factual lookup --> WebSearch directly
|   +-- Deep prospect/market research --> research-agent subagent
|
+-- Medium task (15-60 min, 1-2 system areas)
|   +-- /deep-plan --> implement manually using plan checklist
|   +-- Requirements unclear? --> /clarify first
|
+-- Complex task (1+ hours, 3+ system areas)
|   +-- Want full autonomy?
|   |   +-- /ultra-auto {ticket or description}
|   +-- Want to review plan first?
|   |   +-- /ultra-plan {ticket} --> review --> /ultra-execute
|   +-- Matchkeyz project?
|   |   +-- /a-planning-start --> /my-execute-plan
|   +-- GSD project?
|       +-- /gsd:new-project --> /gsd:plan-phase N --> /gsd:execute-phase N
|
+-- Validate or strengthen a plan
|   +-- /deep-plan-validate (5 Whys, trigger words, assumptions)
|   +-- /plan-review (adversarial 12-point rubric, forked context)
|
+-- Debugging
|   +-- Matchkeyz --> /my-troubleshoot
|   +-- Any project --> /deep-plan-validate (root cause via 5 Whys)
|
+-- Code review
|   +-- Matchkeyz --> /my-review-work (parallel test + review)
|   +-- Any project --> senior-reviewer subagent
|
+-- Client deliverable
|   +-- Draft it --> then ALWAYS run senior-reviewer before sending
|
+-- Domain-specific task
|   +-- Sales --> /account-research, /call-prep, /draft-outreach, etc.
|   +-- Marketing --> /campaign-plan, /content-creation, /seo-audit, etc.
|   +-- Legal --> /contract-review, /compliance-check, /triage-nda, etc.
|   +-- Compliance --> /soc-2, /hipaa, /gdpr, /iso-27001, /fedramp
|   +-- Engineering --> /architecture, /code-review, /debug, /testing-strategy
|   +-- Operations --> /runbook, /change-request, /vendor-review

2. The Ultra System (Flagship)

The Ultra system is the most rigorous planning and execution pipeline. It produces Sonnet-executable XML task specifications through multiple research and review cycles, then implements them through a wave-based multi-agent pipeline.

Source: c:/_my/claude-code-config/skills/ultra-*/ Deployed to: ~/.claude/skills/ via deploy.py

2a. /ultra-plan — Deep Planning (10 Phases)

Purpose: Transform a ticket, spec, or description into a comprehensive implementation plan.

PhaseNameActorContext Cost
0Input ResolutionOrchestrator~2%
1Clarification GateOrchestrator + /clarify~5%
2ResearchSubagent: research-agent~2%
3Deep PlanningSubagent: ultra-planner (Opus)~2%
4Review Cycle 1Subagent: ultra-plan-reviewer (Opus)~2%
5Revision (conditional)Subagent: ultra-planner~1%
6Review Cycle 2Subagent: ultra-plan-reviewer~2%
7ValidationSubagent: ultra-planner~2%
8Final Quality GateOrchestrator~5%
9HandoffOrchestrator~3%

Input formats: Ticket ID (e.g., SOL-42), file path (.md/.txt/.yaml), or inline description.

Artifacts produced:

  • .ultra-plans/{slug}-STATE.md — session state (survives context loss)
  • .ultra-plans/{slug}-RESEARCH.md — DRY analysis, existing components, blockers
  • .ultra-plans/{slug}-PLAN.md — full plan with XML task specs
  • .ultra-plans/{slug}-REVIEW-{N}.md — review findings per cycle

Key features:

  • Session resume: if STATE file exists, continues from last phase
  • Max 3 review cycles before escalating to user
  • XML task format with <task>, <action>, <acceptance_criteria>, <verify>
  • Wave-based parallelization: tasks in same wave are independent
  • All assumptions tracked with validation methods
  • Trigger word scanning: “disable”, “skip”, “workaround”, “temporary”, “ignore”, “suppress”, “hardcode”, “just”, “as needed”, “align with”, etc.

Usage:

/ultra-plan Add CSV export to reporting dashboard
/ultra-plan SOL-42
/ultra-plan path/to/requirements.md

2b. /ultra-execute — Execution Pipeline (6 Phases)

Purpose: Take an approved plan and implement it through multi-agent pipeline.

PhaseNameActorContext Cost
0Input Resolution + Pre-FlightOrchestrator~5%
1Wave-Based ImplementationSubagent: ultra-executor (Sonnet) per wave~2%/wave
2Parallel Test + Reviewultra-test-runner + ultra-code-reviewer (parallel)~3%
3Gate CheckOrchestrator~2%
4Completion VerificationSubagent: ultra-completion-gate (Opus)~3%
5Wrap-UpOrchestrator~3%

Gate decision matrix:

Test RunnerCode ReviewerAction
CLEANAPPROVEPASS to completion
CLEANCONDITIONALPASS (note P1s)
CLEANNEEDS WORKRE-IMPLEMENT (P0 fixes)
REGRESSIONSanyRE-IMPLEMENT (fix regressions first)
BUILD_FAILEDanyRE-IMPLEMENT (fix build first)

Key features:

  • Captures test baseline before implementation
  • Max 3 review cycles before escalating
  • Completion gate independently verifies ALL requirements with evidence
  • Minor gaps (1-2 requirements): auto-fix inline
  • Major gaps (3+): return to implementation phase

Usage:

/ultra-execute csv-export-reporting-dashboard
/ultra-execute path/to/.ultra-plans/slug-PLAN.md

2c. /ultra-auto — Full Autonomous Pipeline

Purpose: Chain /ultra-plan then /ultra-execute with minimal human intervention.

Auto-proceed on:

  • Wave completion
  • Test runner CLEAN + Code reviewer APPROVE/CONDITIONAL
  • Gate check PASS
  • Minor completion gaps (1-2 requirements)
  • Deviation Rules 1-3 (bugs, missing features, blockers)

STOP on (requires human):

  • Ambiguous requirements (presents clarifying questions)
  • Architectural changes (Deviation Rule 4)
  • Human-action checkpoints (2FA, auth gates)
  • Max review cycles exceeded (3 cycles)
  • Major completion gaps (3+ requirements)

Usage:

/ultra-auto Add CSV export to reporting dashboard
/ultra-auto SOL-42

3. Planning Commands Comparison

Feature/ultra-plan/deep-plan/a-planning-start/gsd:plan-phase
ScopeAll projectsAll projectsMatchkeyz onlyGSD projects
Phases1074 (start/dig/resume/complete)Research+plan+verify
Review cycles2 (max 3)0 built-in0 built-in1
Adversarial reviewYes (ultra-plan-reviewer)Manual via /plan-reviewManualBuilt-in
Subagents used3 (research, planner, reviewer)1 (planner)0Varies
XML task specsYesNo (checklists)NoNo
Wave parallelizationYesNoNoYes
Session resumeSTATE.md filedeep-plan-validatePlanning memory.planning/STATE.md
Token costHigh (~8 agent spawns)Medium (~1-2 agents)LowMedium
Best forComplex multi-system workMedium complexityMatchkeyz ticketsGSD-managed projects
ModelOpus orchestratorOpus (planner agent)Session modelSession model

When to use which:

  • Simple (< 15 min): No planning command. Just do it.
  • Medium (15-60 min, 1-2 areas): /deep-plan
  • Complex (1+ hrs, 3+ areas): /ultra-plan
  • Matchkeyz ticket: /a-planning-start (has Linear integration)
  • GSD project with existing phases: /gsd:plan-phase N

4. Execution Commands Comparison

Feature/ultra-execute/my-execute-plan/gsd:execute-phase
ScopeAll projectsMatchkeyz onlyGSD projects
Implementation agentultra-executor (Sonnet)Session-level agentsSession model
Parallel test+reviewYes (2 agents)Yes (/my-review-work)Post-phase verify
Gate checkAutomated matrixManual/gsd:verify-phase
Completion verificationultra-completion-gate (Opus)/my-double-check or /my-triple-check/gsd:verify-work
Max review cycles3Not enforcedNot enforced
Wave-basedYesYesYes
Token costHigh (5+ agents)MediumMedium
Autonomous option/ultra-autoNo/gsd:autonomous

5. Agent Architecture

Core Agents (All Projects)

Deployed from c:/_my/claude-code-config/agents/ to ~/.claude/agents/.

AgentModelMax TurnsRoleTools AllowedTools Blocked
plannerOpus15Planning, file-based outputRead, Grep, Glob, WebSearch, WebFetch, WriteEdit, Bash, Agent
research-agentOpus15Deep research, multi-sourceWebSearch, WebFetch, Read, Grep, Glob, BashWrite, Edit, Agent
senior-reviewerOpus10Quality verificationRead, Grep, Glob, Bash, WebSearch, WebFetchWrite, Edit, Agent

Ultra System Agents

AgentModelMax TurnsRoleKey Restriction
ultra-plannerOpus20Plan creation, XML task specsNo Edit, no Bash
ultra-plan-reviewerOpus10Adversarial 15-point reviewREAD-ONLY (no Write/Edit)
ultra-executorSonnet25ImplementationFull access (Read/Write/Edit/Bash)
ultra-test-runnerSonnet10Test suite executionREAD-ONLY + Bash
ultra-code-reviewerSonnet106-dimension code reviewREAD-ONLY, >80% confidence only
ultra-completion-gateOpus10Evidence-based requirement verificationREAD-ONLY, zero tolerance

Key design principle: Agents that CREATE (planner, executor) have write access. Agents that REVIEW (reviewer, test-runner, gate) are READ-ONLY. This prevents reviewers from “fixing” issues instead of reporting them.


6. Context Window Strategy

The Ultra system is specifically designed to stay within Claude’s 200k context window across multi-hour workflows.

Budget Allocation

ComponentTargetMax
Orchestrator state~15%25%
Subagent context (each)Full 200k
Skill descriptions (total)~2% (~16k chars)

Rules (Non-Negotiable)

  1. Pass PATHS to agents, never CONTENT. Agents read files themselves with fresh 200k context.
  2. After each agent: read ONLY verdict/status/metadata. First 20-30 lines. Extract 3-5 routing data points.
  3. Never accumulate agent output. Each phase is self-contained. Later agents read from disk, not orchestrator memory.
  4. STATE file is single source of truth. Write after every phase transition. New sessions resume from STATE.
  5. Budget enforcement. If orchestrator context grows past 15% between phases, rules 1-3 are being violated.

Session Resume

Both /ultra-plan and /ultra-execute write state files to disk. If the context window runs out or the session is interrupted:

  1. Start a new session
  2. Re-invoke the same command with the same slug
  3. It reads the STATE file and resumes from the next incomplete phase

7. Model Allocation

Task TypeModelReasoning
Planning, review, final gateOpusNeeds deep reasoning, adversarial thinking
Implementation, testingSonnetFaster, cheaper, follows precise instructions
OrchestrationSession model (usually Opus)Coordinates agents, makes routing decisions
Domain skills (sales, marketing, etc.)Session modelGenerally lightweight

Cost Hierarchy (Approximate)

WorkflowAgent SpawnsEstimated Token Usage
/ultra-auto (full pipeline)8-12500k-1M+ tokens
/ultra-plan only4-6200k-400k tokens
/ultra-execute only4-6200k-500k tokens
/deep-plan1-250k-150k tokens
/clarify05k-20k tokens
/plan-review0 (forked context)30k-80k tokens
Domain skill010k-50k tokens

Pro Tip: For medium-complexity work, /deep-plan then manual implementation is 3-5x cheaper than /ultra-auto. Reserve the Ultra system for work where the review cycles and gate checks genuinely prevent costly rework.


8. Claude Code Config System (All Projects)

Skills (Globally Deployed)

Source: c:/_my/claude-code-config/skills/ Deployed to: ~/.claude/skills/ via python deploy.py

SkillInvokeTriggers AutomaticallyPurpose
/ultra-planManualNo10-phase deep planning
/ultra-executeManualNo6-phase execution pipeline
/ultra-autoManualNoAutonomous plan+execute chain
/deep-planManual or autoYes (complex tasks, 3+ areas)7-phase planning doc
/deep-plan-validateManual or autoYes (plan validation, resuming)5 Whys, assumption validation
/clarifyManual or autoYes (ambiguous requirements)3-7 multiple-choice questions
/plan-reviewManual onlyNo (disable-model-invocation: true)Adversarial 12-point review

Solanasis Service Skills (Globally Deployed)

SkillInvokePurpose
/contract-reviewManual or autoReview contracts, NDAs, SaaS terms. CUAD-based.
/client-onboardingManual or autoDiscovery questionnaire, systems inventory, 30-60-90 plan
/dr-verificationManual or autoDR/BCP test plans, RTO/RPO verification, gap analysis
/security-assessment-reportManual or autoClient-ready security reports with NIST/CIS mapping

Compliance Skills (Globally Deployed)

SkillInvokeFramework
/soc-2Manual or autoSOC 2 Type I/II
/hipaaManual or autoHIPAA Security/Privacy Rules
/gdprManual or autoGDPR (EU data protection)
/iso-27001Manual or autoISO 27001 ISMS
/fedrampManual or autoFedRAMP authorization

Deploy Commands

python c:/_my/claude-code-config/deploy.py              # Deploy everything
python c:/_my/claude-code-config/deploy.py skills        # Skills only
python c:/_my/claude-code-config/deploy.py agents        # Agents only
python c:/_my/claude-code-config/deploy.py --dry-run     # Preview changes

9. Matchkeyz-Specific Commands

These live in c:/_my/_matchkeyz/_matchkeyz_code/qa/.claude/commands/ and are only available inside the Matchkeyz project.

Planning Commands

CommandPurpose
/a-planning-startInitialize persistent planning memory for complex tickets
/a-planning-dig-deeper-n-confirmDeep validation with 5 Whys, assumption checking
/a-planning-resumeResume interrupted planning session
/a-planning-completeFinalize planning for implementation

Execution Commands

CommandPurpose
/my-execute-planMulti-agent implementation pipeline
/my-plan-linear-ticketCreate implementation plan from Linear ticket
/my-new-functionality-implementation-startStart implementing new feature
/my-pickup-implementationResume interrupted implementation
/my-fix-linear-ticketFix a specific Linear ticket
/my-fix-github-issueFix a specific GitHub issue

Testing and QA

CommandPurpose
/my-review-workTest + review in parallel
/my-double-checkSecondary QA verification
/my-triple-checkTertiary QA verification (highest rigor)
/my-extensive-qa-testingFull QA test suite
/my-test-changesRun tests on recent changes
/my-verify-implementationVerify implementation matches plan
/my-verify-auditAudit trail verification
/my-robustness-checkEdge case and error handling check

Code Quality

CommandPurpose
/my-code-review-for-coherenceCode coherence review
/my-api-security-reviewAPI security audit
/my-fix-pattern-violationsFix detected pattern violations
/my-check-conventionsVerify coding conventions
/my-check-cheatsheetQuick reference for project patterns

Documentation and Utilities

CommandPurpose
/my-documentation-updateUpdate project docs
/my-cs-documentation-updateC# documentation update
/my-tdd-test-documentationTDD test documentation
/my-create-handoff-docCreate handoff document
/my-create-linear-ticketCreate a Linear ticket
/my-create-tickets-from-ai-suggestionsBulk ticket creation
/my-troubleshootStructured debugging
/my-discuss-problemProblem discussion framework
/my-find-clarifying-questionsGenerate clarifying questions (Matchkeyz-specific)
/my-sql-easySQL query helper
/my-db-searchDatabase search utility
/my-db-release-qaDatabase release QA

Matchkeyz Origins Claude Code Config

Several Matchkeyz commands were generalized into portable skills:

Matchkeyz CommandBecameKey Feature Ported
/a-planning-start/deep-planMulti-phase assessment, DRY research, planning memory
/a-planning-complete/deep-planQuality checks, implementation checklist generation
/a-planning-dig-deeper-n-confirm/deep-plan-validate5 Whys, trigger words, evidence-based investigation
/a-planning-resume/deep-plan-validateSession resume, progress assessment
/my-find-clarifying-questions/clarifyULTRATHINK analysis, multiple-choice format
GSD/Codex rubric/plan-review12-point adversarial review, forked context

10. GSD Framework (v2.43.0)

Install: npm install -g gsd-pi (already installed) CLI: gsd or gsd-cli

GSD is a standalone CLI wrapping Claude Code with spec-driven, phase-based workflows.

Core Commands

CommandPurpose
/gsd:doSmart router — dispatches to appropriate GSD command
/gsd:new-projectInitialize a new GSD project
/gsd:new-milestoneCreate a new milestone within a project
/gsd:plan-phase NResearch + plan + verify for phase N
/gsd:execute-phase NWave-based parallel execution of phase N
/gsd:autonomousFull chain: all phases from plan through execution

Monitoring

CommandPurpose
/gsd:progressShow current progress
/gsd:healthProject health check
/gsd:statsToken usage and timing statistics

Verification

CommandPurpose
/gsd:verify-workVerify completed work
/gsd:verify-phaseVerify a specific phase

Phase Management

CommandPurpose
/gsd:add-phaseAdd a new phase
/gsd:insert-phaseInsert a phase at specific position
/gsd:remove-phaseRemove a phase
/gsd:add-testsAdd tests to a phase
/gsd:add-todoAdd a TODO item
/gsd:settingsView/edit GSD settings

CLI Options

gsd                          # Interactive TUI mode
gsd -c                       # Resume most recent session
gsd -w [name]                # Start in isolated worktree
gsd --model claude-opus-4-6  # Override model
gsd headless auto            # Headless autonomous mode
gsd sessions                 # List past sessions
gsd worktree list            # List active worktrees

GSD vs Native Skills

GSD CommandEquivalent Native SkillNotes
/gsd:plan-phase/deep-planGSD adds state management
/gsd:discuss-phase/clarifySimilar output format
/gsd:verify-work/plan-reviewGSD auto-tracks what to verify
/gsd:autonomous/ultra-autoDifferent orchestration approach
/gsd:execute-phase/ultra-executeGSD is phase-scoped

11. Knowledge Work Plugin Skills (Available but Not Auto-Loaded)

These come from the knowledge-work-plugins marketplace. They are installed but not loaded into the context budget by default. Invoke them explicitly by name.

Sales (9 skills)

SkillPurpose
/account-researchDeep account research before outreach
/call-prepPrepare for a sales call
/call-summarySummarize a completed call
/competitive-intelligenceCompetitive landscape analysis
/create-an-assetCreate a sales asset (one-pager, etc.)
/daily-briefingDaily sales briefing
/draft-outreachDraft outreach messages
/forecastSales forecast
/pipeline-reviewPipeline health review

Marketing (8 skills)

SkillPurpose
/brand-reviewBrand consistency review
/campaign-planCampaign planning
/competitive-briefCompetitive brief
/content-creationContent creation workflow
/draft-contentDraft content pieces
/email-sequenceEmail sequence design
/performance-reportMarketing performance report
/seo-auditSEO audit

Engineering (10 skills)

SkillPurpose
/architectureArchitecture review/design
/code-reviewStructured code review
/debugStructured debugging
/deploy-checklistDeployment checklist
/documentationDocumentation generation
/incident-responseIncident response workflow
/standupStandup summary
/system-designSystem design document
/tech-debtTechnical debt analysis
/testing-strategyTest strategy design

Operations (9 skills)

SkillPurpose
/capacity-planCapacity planning
/change-requestChange request document
/compliance-trackingCompliance status tracking
/process-docProcess documentation
/process-optimizationProcess optimization analysis
/risk-assessmentRisk assessment
/runbookOperational runbook
/status-reportStatus report
/vendor-reviewVendor evaluation
SkillPurpose
/briefLegal brief
/compliance-checkCompliance verification
/legal-responseLegal response drafting
/legal-risk-assessmentLegal risk assessment
/meeting-briefingLegal meeting prep
/review-contractContract review
/signature-requestSignature request workflow
/triage-ndaNDA triage
/vendor-checkVendor legal check

Other Categories

  • Finance: audit-support, close-management, financial-statements, journal-entry, reconciliation, sox-testing, variance-analysis
  • Human Resources: comp-analysis, draft-offer, interview-prep, onboarding, org-planning, people-report, performance-review, policy-lookup, recruiting-pipeline
  • Product Management: competitive-brief, metrics-review, product-brainstorming, roadmap-update, sprint-planning, stakeholder-update, synthesize-research, write-spec
  • Design: accessibility-review, design-critique, design-handoff, design-system, research-synthesis, user-research, ux-copy
  • Data: analyze, build-dashboard, create-viz, data-context-extractor, explore-data, sql-queries, statistical-analysis, validate-data, write-query
  • Productivity: memory-management, start, task-management, update

Total available: 109 skills across all marketplace plugins.


12. Superpowers Plugin Skills (Installed)

These are from the superpowers plugin (superpowers@claude-plugins-official). Installed and active.

SkillPurposeInvoke
/brainstormingExplore intent, requirements, constraints before creative work/superpowers:brainstorming
/writing-plansSpec to structured plan/superpowers:writing-plans
/executing-plansExecute plans with review checkpoints/superpowers:executing-plans
/dispatching-parallel-agents2+ independent tasks in parallel/superpowers:dispatching-parallel-agents
/subagent-driven-developmentIndependent tasks in current session/superpowers:subagent-driven-development
/verification-before-completionVerify work before claiming done/superpowers:verification-before-completion
/test-driven-developmentTDD workflow/superpowers:test-driven-development
/systematic-debuggingStructured debugging/superpowers:systematic-debugging
/using-git-worktreesIsolated git worktrees/superpowers:using-git-worktrees
/finishing-a-development-branchIntegration decisions/superpowers:finishing-a-development-branch
/requesting-code-reviewRequest code review/superpowers:requesting-code-review
/receiving-code-reviewReceive and process code review/superpowers:receiving-code-review
/writing-skillsCreate and test new skills/superpowers:writing-skills

Superpowers vs Ultra system:

  • Superpowers = individual developer practices (brainstorming, TDD, debugging, code review)
  • Ultra system = end-to-end autonomous pipeline (plan → implement → test → review → verify)
  • They coexist without conflict. Superpowers skills are manual-invoke only.
  • When /ultra-auto is invoked explicitly, its internal clarification replaces brainstorming.

13. Per-Project Customization

The Ultra system and planning skills adapt to any project via CLAUDE.md conventions.

What the Skills Read from CLAUDE.md

ConventionWhere Used
Plans directoryWhere to save plan files
Test commandsPre-flight baseline, test runner
Build commandsBuild verification
Lint commandsCode quality checks
Naming conventionsTask spec generation
File routing tableWhere to save artifacts
Ticket integrationInput resolution (Phase 0)

Project-Specific Plan Directories

ProjectPlans Directory
Solanasis docssolanasis-docs/playbooks/plans/
Matchkeyzmatchkeyz-docs/plans/
Any other.claude-plans/ in project root
Ultra system.ultra-plans/ in project root

Adding Ultra to a New Project

  • Ensure project has a CLAUDE.md with test/build/lint commands
  • Run python c:/_my/claude-code-config/deploy.py to ensure skills are deployed
  • Test with /ultra-plan {simple description} to verify setup
  • Check .ultra-plans/ directory is created correctly
  • Verify STATE file resume works (kill session mid-plan, restart)

14. Cost and Token Considerations

Cost Tiers

TierCommandsEst. TokensWhen to Use
FreeJust do it (no command)5k-20kSimple tasks
Light/clarify, domain skills5k-50kClarification, domain tasks
Medium/deep-plan, /plan-review50k-150kMedium complexity planning
Heavy/ultra-plan, /ultra-execute200k-500k eachComplex multi-system work
Maximum/ultra-auto500k-1M+Full autonomous pipeline

Daily Budget Mental Model

Assuming ~$50/day API budget:

ActivityApprox. CostDaily Capacity
/ultra-auto full pipeline$5-153-10 per day
/ultra-plan only$2-510-25 per day
/deep-plan$0.50-225-100 per day
Domain skill$0.10-0.50100-500 per day
Simple task (no command)$0.05-0.20Hundreds

Pro Tip: The biggest cost driver is Opus agent spawns. /ultra-plan spawns 4-6 Opus agents. If a task genuinely needs only /deep-plan (1 Opus agent), using /ultra-plan wastes 3-5x the tokens on review cycles that add little value for simpler work.


15. Appendix: Complete Command Index

A. Globally Available (All Projects)

CommandCategoryAuto-TriggersSource
/ultra-planPlanningNoclaude-code-config
/ultra-executeExecutionNoclaude-code-config
/ultra-autoPipelineNoclaude-code-config
/deep-planPlanningYesclaude-code-config
/deep-plan-validateValidationYesclaude-code-config
/clarifyClarificationYesclaude-code-config
/plan-reviewReviewNo (manual only)claude-code-config
/contract-reviewLegalYesclaude-legal skill
/client-onboardingServiceYesCustom skill
/dr-verificationServiceYesCustom skill
/security-assessment-reportServiceYesCustom skill
/soc-2ComplianceYesCustom skill
/hipaaComplianceYesCustom skill
/gdprComplianceYesCustom skill
/iso-27001ComplianceYesCustom skill
/fedrampComplianceYesCustom skill

B. Matchkeyz-Specific (40+ Commands)

See Section 9 for full listing. Key commands:

CommandCategory
/a-planning-startPlanning
/a-planning-dig-deeper-n-confirmValidation
/my-execute-planExecution
/my-review-workTesting
/my-double-checkQA
/my-triple-checkQA
/my-troubleshootDebugging
/my-plan-linear-ticketTicket integration

C. GSD Commands

See Section 10. Key commands: /gsd:do, /gsd:new-project, /gsd:plan-phase, /gsd:execute-phase, /gsd:autonomous, /gsd:verify-work.

D. Knowledge Work Domain Skills (109 Total)

See Section 11. Available by explicit invocation. Not auto-loaded.

E. Subagents (Invoked via CLAUDE.md Rules, Not Slash Commands)

AgentWhen Invoked
plannerComplex tasks (auto per CLAUDE.md)
research-agentDeep research tasks (auto per CLAUDE.md)
senior-reviewerClient deliverables, strategic decisions (auto per CLAUDE.md)

16. Trigger Word Reference

These words in plans or code are flagged by /deep-plan-validate and /ultra-plan:

WordRed Flag
”disable”Are we hiding a real bug?
“skip”What are we avoiding?
“workaround”What is the real fix?
“temporary”Will this become permanent debt?
“ignore”Are we masking an error?
“suppress”What is being hidden?
“hardcode”Why not config/database?
“just”Minimizing complexity?
“appropriate”Vague — what specifically?
“as needed”When exactly?
“similar to”Copy it or reference it?
“align with”Align how? Be specific.
”properly”What does proper mean here?
“correctly”Define correct.
”ensure”How? What check?
“make sure”What verification step?
“handle edge cases”Which ones? List them.
”follow best practices”Which practices? Cite them.

Last updated: 2026-03-24. Source of truth for “what command do I use?” For architecture and plugin details, see ultimate-claude-code-skills-playbook.md.