Loading...
Loading...
Manage tickets with tk CLI. Triggers on "create ticket", "list tickets", "what's next", "blocked", "close ticket", "ticket status", "work on next ticket/issue".
npx skill4agent add sebastiaanwouters/dotagents ticketgo install github.com/wedow/ticket/cmd/tk@latest.tickets/| Command | Purpose |
|---|---|
| Create ticket |
| List all |
| Ready to work (deps resolved) |
| Waiting on deps |
| View details |
| Open in $EDITOR |
| Change status |
| Add dependency |
| Show dep tree |
| Remove dep |
| Link related |
| Append note |
tk show 5c4nw-5c46tk create "Implement JWT login" -t feature -p 1 \
--description "POST /api/login validates creds, returns JWT with 24h expiry" \
--acceptance "- Valid creds → 200 + {token, expiresAt}
- Invalid password → 401
- Missing fields → 400
- Token expires in 24h" \
--tags backend,auth-t-p-d--acceptance--design-a--parent--tagstk dep ticket-a ticket-b # a depends on b
tk dep tree ticket-a # view tree
tk undep ticket-a ticket-b # remove
tk dep cycle # find cyclestk create "Auth system" -t epic # auth-7f3a
tk create "Design schema" --parent auth-7f3a # sch-2b1c
tk create "Login endpoint" --parent auth-7f3a \
--acceptance "POST /login returns JWT" # log-9d4e
tk dep log-9d4e sch-2b1c # login depends on schema
tk ready # shows sch-2b1c
tk close sch-2b1c
tk ready # now shows log-9d4e