# Issue Tracking
This project uses **tk (ticket-rs)** for issue tracking.
Issues are stored as Markdown in `.tickets/`.
## Quick Commands
- `tk ready` - Find work with no blockers
- `tk list` - List all open issues
- `tk create "Title" -t task -p 2` - Create issue
- `tk close <id>` - Complete work
- `tk triage` - AI recommendations
- `tk dep add <blocked> <blocker>` - Add dependency
## Issue Format
Issues are Markdown files with YAML frontmatter:
\`\`\`markdown
---
status: open
type: feature
priority: 1
deps: [tk-abc123]
labels: [backend]
---
# Issue Title
Description here.
\`\`\`
## Status Values
- `open` - Ready to be worked on
- `in_progress` - Currently being worked on
- `blocked` - Waiting on dependencies
- `closed` - Completed
## Priority Levels
- P0 - Critical
- P1 - High
- P2 - Medium (default)
- P3 - Low
- P4 - Lowest