Creates and manages issues via tissue for tracking work items, bugs, and features. Use for organizing work, checking ready issues, or updating status.
Creates and manages issues via tissue for tracking work items, bugs, and features. Use for organizing work, checking ready issues, or updating status.
/plugin marketplace add femtomc/trivial/plugin install trivial@idleThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Work tracking via tissue, a git-native issue tracker.
Tissue stores issues in .tissue/ (git-tracked).
# Initialize (once per project)
tissue init
tissue list # All issues
tissue list --status open # Open only
tissue list --tag bug # By tag
tissue list --priority 1 # High priority
tissue ready # No blockers, ready to work
tissue show <id>
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
tissue status <id> open
tissue status <id> in_progress
tissue status <id> closed
tissue comment <id> -m "message"
| Tag | Purpose |
|---|---|
bug | Something broken |
feature | New functionality |
refactor | Code improvement |
docs | Documentation |
trivial | Quick fix |
| Priority | Meaning |
|---|---|
| 1 | Critical - do first |
| 2 | High - do soon |
| 3 | Medium - normal |
| 4 | Low - when time permits |
| 5 | Backlog - someday |
# 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
Use tissue to track work items. When working on an issue:
tissue ready to see what's availabletissue status <id> in_progresstissue status <id> closedIssues get IDs like auth-a3f2. The prefix comes from the title:
auth-xxxxcaching-xxxx# Create a bug
tissue new "Login fails on Safari" -t bug -p 2
# Check ready work
tissue ready
# Start working
tissue status auth-a3f2 in_progress
# Add finding
tissue comment auth-a3f2 -m "Root cause: cookie SameSite attribute"
# Close it
tissue status auth-a3f2 closed
# High priority bugs
tissue list --tag bug --priority 1
# All open features
tissue list --tag feature --status open
# Everything assigned to current sprint
tissue list --tag sprint-42
Issue topics in jwz follow the pattern issue:<id>:
# Post to issue topic
jwz post "issue:auth-a3f2" -m "Starting work on this"
# Read issue discussion
jwz read "issue:auth-a3f2"
This connects tissue issues with agent discussions.
Master authentication and authorization patterns including JWT, OAuth2, session management, and RBAC to build secure, scalable access control systems. Use when implementing auth systems, securing APIs, or debugging security issues.