Creates and manages issues via tissue for tracking work items, bugs, and features. Use for organizing work, checking ready issues, or updating status.
View on GitHubskills/issue-tracking/SKILL.md
January 18, 2026
Select agents to install to:
npx add-skill https://github.com/evil-mind-evil-sword/alice/blob/main/skills/issue-tracking/SKILL.md -a claude-code --skill issue-trackingInstallation paths:
.claude/skills/issue-tracking/# Issue Tracking Skill Work tracking via [tissue](https://github.com/femtomc/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). ```bash # Initialize (once per project) tissue init ``` ## Core Operations ### List issues ```bash tissue list # All issues tissue list --status open # Open only tissue list --tag bug # By tag tissue list --priority 1 # High priority ``` ### Show ready issues ```bash tissue ready # No blockers, ready to work ``` ### Show issue details ```bash tissue show <id> ``` ### Create issue ```bash tissue new "title" tissue new "title" -t bug # With tag tissue new "title" -p 1 # Priority 1 (highest) tissue new "title" -t feature -p 2 # Both ``` ### Update status ```bash tissue status <id> open tissue status <id> in_progress tissue status <id> closed ``` ### Add comment ```bash 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 ```bash # Add dependency (A blocks B) tissue dep add <blocker-id> blocks <blocked-id> # Remove dependency tissue dep rm <blocker-id> blocks <blocked-id> # Show what blocks an issue tissue show <id> # Lists blockers ``` ## Workflow Integration Use tissue to track work items. When working on an issue: 1. Check `tissue ready` to see what's available 2. Start working