Show issue details or search issues from local cycle data
Displays issue details or searches issues from local cycle data with filtering options.
/plugin marketplace add wayne930242/team-toon-tack/plugin install team-toon-tack@ttt-marketplaceShow issue details or search issues from local cycle data.
ttt show
ttt show {{ issue-id }}
ttt show --label {{ label }}
ttt show --status "{{ status }}"
ttt show --user {{ user }}
ttt show --priority {{ priority }}
ttt show {{ issue-id }} --remote
ttt show --remote --status todo
| Option | Description | Example |
|---|---|---|
--label | Filter by label name | --label frontend |
--status | Filter by Linear status | --status "In Progress" |
--user | Filter by assignee | --user me, --user unassigned |
--priority | Filter by priority (0-4) | --priority 1 (Urgent) |
--remote | Fetch from Linear API | --remote |
--export | Output as markdown | --export |
# Show all local issues
ttt show
# Show specific issue
ttt show MP-624
# My in-progress issues
ttt show --status "In Progress" --user me
# All urgent issues
ttt show --priority 1
# Frontend issues
ttt show --label frontend
# Fetch fresh data from Linear
ttt show MP-624 --remote
# Export as markdown
ttt show --export
ttt show MP-624 --export