Create standalone work items (TASK, BUG, or SPIKE) with AI-assisted type detection. Use when you need to track work that needs doing, exploration needed, or something broken.
Create standalone work items through natural conversation with AI-assisted type detection.
/issue # Start conversation
/issue "Implement authentication" # AI detects: TASK
/issue "Compare GraphQL vs REST" # AI detects: SPIKE
/issue "Broken link in project-brief" # AI detects: BUG
/issue --project coordinatr # Create for specific project
| Type | Purpose | Detection Keywords |
|---|---|---|
| TASK | Work that needs doing | implement, create, add, build, write, set up |
| SPIKE | Time-boxed exploration | compare, vs, should we, evaluate, explore, research, feasibility |
| BUG | Something broken/wrong |
| fix, broken, incorrect, outdated, wrong, error |
ideas/[project]/issues/
└── 001-implement-auth/
├── TASK.md # or SPIKE.md or BUG.md
├── PLAN.md # Created by /plan
└── WORKLOG.md # Progress tracking
If no description: "What needs to be done?" If no project: "Which project?"
Analyze description keywords, present detection:
"This sounds like a TASK. Create as issue 002? (yes / spike / bug)"
ls ideas/[project]/issues/ | grep -E '^[0-9]{3}-' | sort -n | tail -1
Check if project has a spec:
Glob: spaces/[project]/docs/specs/*.md
If spec exists:
"Which spec section does this implement?"
- docs/specs/required-features.md#authentication
- docs/specs/required-features.md#documents
- none (standalone task)
TASK.md:
---