Slash Commands
All available Candid commands.
/candid-review
Run a code review on your changes.
/candid-reviewOptions
| Flag | Description |
|---|---|
--harsh | Use brutal honesty tone |
--constructive | Use caring directness tone |
--focus <mode> | Focus on security, performance, architecture, or edge-case |
--auto-commit | Auto-commit applied fixes |
--re-review | Compare against previous review |
--merge-target <branch> | Specify the branch to diff against |
--exclude <pattern> | Exclude files matching pattern |
Examples
/candid-review --harsh --focus security
/candid-review --constructive --auto-commit
/candid-review --re-review/candid-loop
Run code review in a loop until all issues are resolved.
/candid-loopOptions
| Flag | Description |
|---|---|
--mode <auto|review-each|interactive> | Execution mode (default: auto) |
--max-iterations <N> | Maximum loop iterations (default: 5) |
--categories <list> | Categories to enforce: critical, major, standards, smell, edge_case, architectural, or all (default: all) |
Modes
- auto (default): Automatically applies all fixes until clean
- review-each: Go through each fix one by one (Yes/No for each)
- interactive: Full control with skip, ignore, and batch options
Examples
/candid-loop
/candid-loop --mode review-each
/candid-loop --mode interactive
/candid-loop --max-iterations 3
/candid-loop --categories critical,major/candid-init
Generate a Technical.md file by analyzing your codebase.
/candid-initOptions
| Flag | Description |
|---|---|
--template <name> | Use a specific template (minimal, react, node, python) |
--effort <level> | Analysis depth: quick (~30s), medium (~1-2min), thorough (~5-10min, default) |
--output <path> | Custom output path (default: .candid/Technical.md) |
Effort Levels
- quick: Fast analysis - framework detection, directory structure, file suffixes
- medium: Balanced - adds naming conventions, error patterns, reads 5-8 key files
- thorough: Comprehensive - launches sub-agents to read ALL files in parallel (default)
Examples
/candid-init
/candid-init --template react
/candid-init --effort quick
/candid-init --effort thorough/candid-validate-standards
Check your Technical.md for issues.
/candid-validate-standardsOptions
| Flag | Description |
|---|---|
--fix | Auto-fix issues where possible |
What It Checks
- 🌫️ Vague rules without clear criteria
- 📏 Missing thresholds or limits
- 🔧 Rules that overlap with linters
Last updated on