Routes tasks to reasoning frameworks and command patterns in commands-db...
Routes tasks to appropriate reasoning frameworks and command patterns.
Activate when task involves:
Primary action verbs for development tasks.
| Command | Trigger Keywords | Purpose |
|---|---|---|
sc:analyze |
analyze, evaluate, assess, audit | Deep analysis |
sc:build |
build, compile, package | Build operations |
sc:cleanup |
clean, organize, declutter | Code cleanup |
sc:design |
design, architect, plan | Architecture |
sc:document |
document, readme, guide | Documentation |
sc:estimate |
estimate, cost, time | Estimation |
sc:explain |
explain, clarify, describe | Explanations |
sc:git |
commit, push, merge | Git operations |
sc:implement |
implement, code, feature | Implementation |
sc:improve |
improve, enhance, optimize | Improvement |
sc:load |
load, context, import | Context loading |
sc:spawn |
spawn, delegate, parallel | Delegation |
sc:task |
task, complex, persistent | Complex tasks |
sc:test |
test, verify, validate | Testing |
sc:troubleshoot |
debug, fix, diagnose | Debugging |
sc:workflow |
workflow, prd, process | Workflows |
| Module | Purpose |
|---|---|
bmad:brainstorm |
Structured brainstorming |
bmad:party-mode |
Multi-agent ideation |
bmad:prd |
Product requirements |
bmad:architecture |
System architecture |
# Use reasoning-index for semantic routing
reasoning-index search "{user_intent}"
reasoning-index suggest "{task_description}"
# Example output:
# {
# "commands": ["sc:implement", "sc:design"],
# "skills": ["test-driven-development"],
# "reasoning_chain": ["sc:design", "sc:implement", "sc:test"]
# }
Command Task Detected
β
βββ Implementation?
β βββ New feature? β sc:implement
β βββ Build? β sc:build
β βββ Improvement? β sc:improve
β
βββ Analysis?
β βββ Code review? β sc:analyze
β βββ Debugging? β sc:troubleshoot
β βββ Testing? β sc:test
β
βββ Design?
β βββ Architecture? β sc:design
β βββ Brainstorm? β bmad:brainstorm
β βββ PRD? β bmad:prd
β
βββ Documentation?
β βββ README? β sc:document
β βββ Explain? β sc:explain
β βββ Guide? β sc:document
β
βββ Operations?
βββ Git? β sc:git
βββ Cleanup? β sc:cleanup
βββ Complex? β sc:task
# Search commands
reasoning-index search "debug authentication"
# Get reasoning chain suggestion
reasoning-index suggest "implement user login"
# List all SC commands
reasoning-index list sc
# Build knowledge graph
reasoning-index graph "optimize performance" --depth 2
Design β Implement β Test β Document
sc:design β sc:implement β sc:test β sc:document