Skip to content

Commands Full Reference

Complete reference for all 161 commands available in Claude Craft.


Quick Reference

NamespaceCountDescription
/common:13Transversal commands
/workflow:9Development workflow
/team:4Agent Teams
/qa:6QA & Testing
/uiux:7UI/UX & Accessibility
/symfony:10Symfony/PHP
/flutter:10Flutter/Dart
/python:10Python
/react:10React/TypeScript
/reactnative:10React Native
/angular:6Angular
/csharp:6C#/.NET
/laravel:6Laravel
/vuejs:6Vue.js
/php:5PHP
/docker:5Docker/Infrastructure
/coolify:5Coolify/PaaS
/project:22Project Management
/sprint:5Sprint Management (BMAD v6)
/gate:6Quality Gates (BMAD v6)

Common Commands (/common:)

Workflow Commands

CommandDescription
/common:pre-commit-checkValidate code before commit
/common:pre-merge-checkValidate code before merge
/common:release-checklistPre-release validation

Generation Commands

CommandDescription
/common:generate-changelogGenerate changelog from commits
/common:architecture-decisionDocument an ADR

Sprint Commands

CommandDescription
/workflow:startInitialize a new sprint
/workflow:reviewGenerate sprint review summary
/workflow:retroConduct sprint retrospective
/common:daily-standupGenerate standup summary

Configuration Commands

CommandDescription
/common:setup-project-contextInteractive project context setup

Ralph Commands

CommandDescription
/common:ralph-runRun Claude in continuous loop

Usage:

/common:ralph-run "Task description"
/common:ralph-run --full "Task with all DoD checks"

DevOps Commands

CommandDescription
/common:setup-ciConfigure CI/CD pipeline
/docker:optimizeOptimize Docker configuration

Development Commands

CommandDescription
/qa:tddFix bug using TDD methodology
/common:research-context7Deep technical research

UI/UX Commands

CommandDescription
/uiux:orchestratorOrchestrate UI/UX/A11y experts
/uiux:auditComplete UI/UX/A11y audit
/uiux:component-specFull component specification
/uiux:design-tokensDefine design system tokens
/uiux:user-flowDesign user journey
/uiux:a11y-auditWCAG 2.2 AAA audit
/uiux:a11y-componentAccessibility specs for component

Technology Commands

CommandDescription
/common:add-technologyAdd new technology to Claude Craft

Usage:

/common:add-technology "nextjs"
/common:add-technology "golang" backend

Workflow Commands (/workflow:)

CommandDescriptionPhase
/workflow:initInitialize workflow (auto-detect track)Setup
/workflow:analyzeResearch and explorationAnalysis
/workflow:planGenerate PRD, backlogPlanning
/workflow:designTech spec, architectureDesign
/workflow:implementSprint developmentImplementation
/workflow:statusShow current progressAny

Usage:

/workflow:init              # Auto-detect
/workflow:init --quick      # Bug fix mode
/workflow:init --enterprise # Full methodology

Project Commands (/project:)

Backlog Management

CommandDescription
/project:generate-backlogGenerate backlog from feature
/project:decompose-tasksBreak epic into tasks

Epic/Story/Task

CommandDescription
/project:add-epicCreate a new EPIC
/project:add-storyCreate a User Story
/project:add-taskCreate a task
/project:list-epicsList all EPICs
/project:list-storiesList User Stories
/project:list-tasksList tasks
/project:update-epicUpdate an EPIC
/project:update-storyUpdate a User Story
/project:move-taskChange task status

Sprint

CommandDescription
/project:boardDisplay Kanban board
/sprint:statusShow sprint metrics
/sprint:devStart TDD/BDD sprint development

Usage:

/sprint:dev 1        # Sprint 1
/sprint:dev next     # Next incomplete sprint
/sprint:dev current  # Current sprint

BMAD v6

CommandDescription
/project:analyze-backlogAnalyze current backlog structure
/project:migrate-backlogConvert to BMAD v6 format
/project:update-storiesAdd missing BMAD fields
/project:sync-backlogSync files with YAML
/project:run-epicQueue all stories in epic
/project:run-queueProcess queued stories
/project:run-sprintExecute full sprint
/project:batch-statusView batch queue status

Sprint Commands (/sprint:)

CommandDescription
/sprint:next-storyGet next ready-for-dev story
/sprint:transitionTransition story status
/sprint:auto-routeExecute automatic routing

Usage:

/sprint:next-story --claim
/sprint:transition US-005 in-progress
/sprint:transition US-005 blocked --reason="Waiting for API"

Valid Transitions:

backlog → ready-for-dev → in-progress → review → done
any → blocked

Gate Commands (/gate:)

CommandThresholdDescription
/gate:validate-prd≥80%Validate PRD quality
/gate:validate-techspec≥90%Validate Tech Spec
/gate:validate-backlogINVEST 6/6Validate INVEST compliance
/gate:validate-story100%Validate story DoD
/gate:validate-sprint100%Validate sprint readiness
/gate:report-Full quality gates report

Usage:

/gate:validate-prd docs/prd.md
/gate:validate-story US-005
/gate:report

BMAD Commands (/bmad:)

CommandDescription
/bmad:initInitialize BMAD framework
/bmad:statusShow project status
/bmad:routeRoute to appropriate agent
/bmad:handoffHandoff between agents

PM Commands (/pm:)

CommandDescription
/pm:prdCreate Product Requirements Document
/pm:visionDefine product vision
/pm:roadmapCreate product roadmap
/pm:prioritizePrioritize features
/pm:okrDefine OKRs

Architect Commands (/arch:)

CommandDescription
/arch:designDesign system architecture
/arch:techspecCreate technical specification
/arch:adrDocument architecture decision
/arch:apiDesign API contracts
/arch:databaseDesign database schema
/arch:securitySecurity architecture review

Symfony Commands (/symfony:)

Code Generation

CommandDescription
/symfony:generate-crudGenerate CRUD operations
/symfony:generate-commandGenerate CLI command
/symfony:api-endpointGenerate API endpoint

Analysis

CommandDescription
/symfony:check-architectureValidate Clean Architecture
/symfony:check-code-qualityRun code quality checks
/symfony:check-complianceCheck DDD compliance
/symfony:check-securitySecurity audit
/symfony:check-testingTest coverage analysis

Database

CommandDescription
/symfony:migration-planPlan database migration
/symfony:optimize-doctrineOptimize Doctrine queries

Flutter Commands (/flutter:)

Code Generation

CommandDescription
/flutter:generate-featureGenerate feature module
/flutter:generate-widgetGenerate widget

Analysis

CommandDescription
/flutter:check-architectureValidate architecture
/flutter:check-code-qualityRun code quality checks
/flutter:check-complianceCheck rule compliance
/flutter:check-securitySecurity audit
/flutter:check-testingTest coverage analysis
/flutter:analyze-performancePerformance analysis

Testing

CommandDescription
/flutter:golden-updateUpdate golden files

Localization

CommandDescription
/flutter:localization-checkValidate i18n setup

Python Commands (/python:)

Code Generation

CommandDescription
/python:generate-endpointGenerate API endpoint
/python:generate-modelGenerate data model

Analysis

CommandDescription
/python:check-architectureValidate architecture
/python:check-code-qualityRun code quality checks
/python:check-complianceCheck rule compliance
/python:check-securitySecurity audit
/python:check-testingTest coverage analysis
/python:type-coverageAnalyze type hint coverage
/python:async-checkValidate async/await usage
/python:dependency-auditAudit dependencies

React Commands (/react:)

Code Generation

CommandDescription
/react:generate-componentGenerate React component
/react:generate-hookGenerate custom hook
/react:storybook-storyGenerate Storybook story

Analysis

CommandDescription
/react:check-architectureValidate architecture
/react:check-code-qualityRun code quality checks
/react:check-complianceCheck rule compliance
/react:check-securitySecurity audit
/react:check-testingTest coverage analysis
/react:bundle-analyzeAnalyze bundle size
/react:accessibility-checkA11y validation

React Native Commands (/reactnative:)

Code Generation

CommandDescription
/reactnative:generate-screenGenerate screen component
/reactnative:native-moduleGenerate native module

Analysis

CommandDescription
/reactnative:check-architectureValidate architecture
/reactnative:check-code-qualityRun code quality checks
/reactnative:check-complianceCheck rule compliance
/reactnative:check-securitySecurity audit
/reactnative:check-testingTest coverage analysis
/reactnative:app-sizeAnalyze app bundle size
/reactnative:deep-linkConfigure deep linking
/reactnative:store-preparePrepare for app store

Angular Commands (/angular:)

Code Generation

CommandDescription
/angular:generate-componentGenerate standalone component

Analysis

CommandDescription
/angular:check-architectureValidate architecture
/angular:check-code-qualityRun code quality checks
/angular:check-complianceCheck rule compliance
/angular:check-securitySecurity audit
/angular:check-testingTest coverage analysis

C#/.NET Commands (/csharp:)

Code Generation

CommandDescription
/csharp:generate-featureGenerate CQRS feature

Analysis

CommandDescription
/csharp:check-architectureValidate Clean Architecture
/csharp:check-code-qualityRun code quality checks
/csharp:check-complianceCheck rule compliance
/csharp:check-securitySecurity audit (OWASP)
/csharp:check-testingTest coverage analysis

Laravel Commands (/laravel:)

Code Generation

CommandDescription
/laravel:generate-controllerGenerate API controller

Analysis

CommandDescription
/laravel:check-architectureValidate Clean Architecture
/laravel:check-code-qualityRun code quality checks
/laravel:check-complianceCheck rule compliance
/laravel:check-securitySecurity audit
/laravel:check-testingTest coverage analysis

Vue.js Commands (/vuejs:)

Code Generation

CommandDescription
/vuejs:generate-componentGenerate component with test

Analysis

CommandDescription
/vuejs:check-architectureValidate architecture
/vuejs:check-code-qualityRun code quality checks
/vuejs:check-complianceCheck rule compliance
/vuejs:check-securitySecurity audit
/vuejs:check-testingTest coverage analysis

PHP Commands (/php:)

CommandDescription
/php:check-architectureValidate Clean Architecture
/php:check-code-qualityRun code quality checks
/php:check-complianceCheck rule compliance
/php:check-securitySecurity audit
/php:check-testingTest coverage analysis

Docker Commands (/docker:)

CommandDescription
/docker:compose-setupGenerate docker-compose
/docker:architectureDesign Docker architecture
/docker:debugDiagnose Docker issues
/docker:cicd-pipelineGenerate CI/CD pipeline

Usage:

/docker:compose-setup symfony postgresql redis
/docker:architecture microservices e-commerce
/docker:cicd-pipeline github-actions

Coolify Commands (/coolify:)

Infrastructure deployment with Coolify self-hosted PaaS.

CommandDescription
/coolify:setupInitialize project for Coolify deployment
/coolify:deployDeploy application to Coolify
/coolify:debugDiagnose Coolify deployment issues
/coolify:backupConfigure and manage backups
/coolify:optimizeOptimize Coolify deployment

Usage Examples

bash
/coolify:setup "Node.js API with PostgreSQL"
/coolify:deploy --branch=main --env=production
/coolify:debug "502 Bad Gateway after deploy"
/coolify:backup --provider=s3 --schedule=daily
/coolify:optimize

QA Recette Commands (/qa:)

Automated acceptance testing with Claude in Chrome.

Prerequisites

  • Claude in Chrome extension v1.0.36+
  • Claude Code v2.0.73+
  • Launch with claude --chrome or run /chrome

Core Commands

CommandDescription
/qa:recetteRun acceptance tests on web application
/qa:fixFix bugs from recette session with TDD workflow
/qa:statusShow session status and progress
/qa:regressionView and manage regression test registry
/qa:reportGenerate recette report (MD/HTML/JSON)

/qa:recette Arguments

ArgumentDescriptionValues
--scopeTesting scopestory, epic, sprint, task
--idTarget identifiere.g., US-001, EPIC-002
--dry-runGenerate plan without execution-
--resumeResume interrupted sessionsession-id
--record-gifRecord test execution-

/qa:fix Arguments

ArgumentDescriptionValues
--sessionRecette session IDe.g., REC-20260130-143022
--dry-runRefine and document without fixing-
--severityFilter by minimum severitycritical, high, medium, low
--skip-fixGenerate BMAD documents only-
--auto-commitAuto-commit after each fix-

/qa:status Arguments

ArgumentDescriptionValues
--sessionShow specific session detaile.g., REC-20260130-143022
--allList all sessions-
--scopeFilter by scopestory, sprint
--statusFilter by statusrunning, completed, paused, failed
--formatOutput formattable, yaml, json
--watchLive refresh mode-

/qa:regression Arguments

ArgumentDescriptionValues
--listList all regression tests-
--statsShow stability score and trends-
--checkRun regression tests, detect violations-
--statusFilter by test statusactive, verified, obsolete
--sourceFilter by source storye.g., US-001
--trendShow historical trend-
--formatOutput formattable, yaml, json

/qa:report Arguments

ArgumentDescriptionValues
--sessionSession ID (required)e.g., REC-20260130-143022
--formatOutput formatmd, html, json
--outputCustom output pathe.g., ./reports/sprint-3/
--include-screenshotsEmbed screenshots in HTML-
--compareCompare with another sessionsession-id

Usage Examples

bash
# Run acceptance tests for a user story
/qa:recette --scope=story --id=US-001

# Dry-run to preview test plan
/qa:recette --scope=story --id=US-001 --dry-run

# Resume interrupted session
/qa:recette --resume=REC-20260130-143022

# Run with GIF recording
/qa:recette --scope=sprint --id=SPRINT-03 --record-gif

# Show all sessions
/qa:status --all

# Show specific session status
/qa:status --session=REC-20260130-143022

# Check regression tests (Golden Rule)
/qa:regression --check

# Show regression stability score
/qa:regression --stats

# Generate report from session
/qa:report --session=REC-20260130-143022

# Generate HTML report with screenshots
/qa:report --session=REC-20260130-143022 --format=html --include-screenshots

# Fix all bugs from a recette session
/qa:fix --session=REC-20260130-143022

# Dry run
/qa:fix --session=REC-20260130-143022 --dry-run

Test Categories

CategoryDescription
acceptance_criteria_validationValidate story acceptance criteria
edge_casesTest boundary conditions
error_scenariosError handling verification
ui_ux_verificationUI/UX consistency checks
performance_checksResponse time validation
security_basicsXSS, CSRF, injection checks

Golden Rule

A fixed bug should NEVER reappear.

When errors are detected:

  1. Error is classified (visual, interaction, validation, logic, security, API)
  2. Appropriate tests are auto-generated (Unit, Functional, Behat)
  3. Tests are added to regression registry
  4. All future runs include regression checks

Creating Custom Commands

Add to .claude/commands/{namespace}/:

markdown
---
description: What this command does
argument-hint: <required> [optional]
---

# Command Title

## Purpose
What this command accomplishes.

## Arguments
$ARGUMENTS

## Process

### Step 1
Instructions...

### Step 2
Instructions...

## Output
Expected output format...

See Also