| name | issue-tracking |
| description | Creates and manages issues via tissue for tracking work items, bugs, and features. Use for organizing work, checking ready issues, or updating status. |
Issue Tracking Skill
Work tracking via tissue, a git-native issue tracker.
When to Use
- Creating new issues for bugs or features
- Checking what's ready to work on
- Updating issue status
- Adding comments or context to issues
- Managing dependencies between issues
Setup
Tissue stores issues in .tissue/ (git-tracked).
tissue init
Core Operations
List issues
tissue list
tissue list --status open
tissue list --tag bug
tissue list --priority 1
Show ready issues
tissue ready
Show issue details
tissue show <id>
Create issue
tissue new "title"
tissue new "title" -t bug
tissue new "title" -p 1
tissue new "title" -t feature -p 2
Update status
tissue status <id> open
tissue status <id> in_progress
tissue status <id> closed
Add comment
tissue comment <id> -m "message"
Tags and Priority
Standard Tags
| Tag | Purpose |
|---|
bug | Something broken |
feature | New functionality |
refactor | Code improvement |
docs | Documentation |
trivial | Quick fix |
Priority Levels
| Priority | Meaning |
|---|
| 1 | Critical - do first |
| 2 | High - do soon |
| 3 | Medium - normal |
| 4 | Low - when time permits |
| 5 | Backlog - someday |
Dependencies
tissue dep add <blocker-id> blocks <blocked-id>
tissue dep rm <blocker-id> blocks <blocked-id>
tissue show <id>
Workflow Integration
Use tissue to track work items. When working on an issue:
- Check
tissue ready to see what's available
- Start working:
tissue status <id> in_progress
- Add comments as you discover things
- Close when done:
tissue status <id> closed
Issue Naming
Issues get IDs like auth-a3f2. The prefix comes from the title:
- "Fix auth bug" →
auth-xxxx
- "Add caching" →
caching-xxxx
Examples
tissue new "Login fails on Safari" -t bug -p 2
tissue ready
tissue status auth-a3f2 in_progress
tissue comment auth-a3f2 -m "Root cause: cookie SameSite attribute"
tissue status auth-a3f2 closed
Querying
tissue list --tag bug --priority 1
tissue list --tag feature --status open
tissue list --tag sprint-42
Integration with jwz
Issue topics in jwz follow the pattern issue:<id>:
jwz post "issue:auth-a3f2" -m "Starting work on this"
jwz read "issue:auth-a3f2"
This connects tissue issues with agent discussions.