All commands
Every command, flag, and shortcut.
Sprint skills
/think
Challenge scope and assumptions before writing code.
- --autopilot — run the full sprint pipeline automatically after scope is locked
- --diagnostic — deeper analysis mode that produces a structured diagnostic before planning (default)
- --fast — skip diagnostic, go straight to scope questions
/nano
Generate an implementation plan. Lists every file, route, and migration. No flags. Reads the think artifact if available, otherwise prompts for a task description.
/review
Two-pass code review: structural correctness then adversarial edge-case hunting.
- --quick — single structural pass, confidence gate 0.6, drift ignored
- --standard — two passes, confidence gate 0.7, drift warning (default)
- --thorough — two passes + scope verification, confidence gate 0.85, drift blocking
/qa
Generate and run tests based on the implementation plan and code.
- --quick — run existing tests only, no generation
- --standard — generate tests for uncovered paths, run all (default)
- --thorough — generate + adversarial tests, mutation testing if supported
/security
OWASP Top 10 audit and STRIDE threat modeling.
- --quick — OWASP checklist against changed files only
- --standard — OWASP + STRIDE on change set and imports (default)
- --thorough — full STRIDE, data flow analysis, dependency audit, whole project
/ship
Commit, open a PR, and produce the sprint summary. Aggregates all phase artifacts, resolves conflicts, and generates the commit message and PR description. No flags.
Safety skills
/guard
Activate the command interception hook with 33 block rules and 9 warn rules.
- --careful — warn mode, asks before blocking
- off — deactivate guard
/freeze
Restrict writes to a specific directory.
- /freeze <path> — add a path to the allowed write list
- Can be called multiple times to allow multiple paths
/unfreeze
Remove write restrictions.
- /unfreeze — remove all restrictions
- /unfreeze <path> — remove a specific path, keep others
Team skills
/conductor
Orchestrate parallel phases across multiple agent sessions. Manages phase claiming, locking, and aggregation. No flags; reads sprint state from .nanostack/sprint/.
Compound skills
/compound
Document what you learned during the sprint. Reads artifacts and writes structured solutions to know-how/. Run after /ship or after fixing a significant bug. No flags.
/feature
Add a feature to an existing project. Skips /think diagnostic, goes straight to /nano planning. Use when you know what you want and the project context already exists. No flags.
Utility commands
/nano-run
First-time project setup. Detects your stack, sets preferences, and configures the sprint pipeline. Run once per project. No flags.
/nano-help
Show all available skills with descriptions. No flags.
/nano-update
Update nanostack to the latest version. Preserves custom skills and renames. No flags.