mit einem Klick
ghi-list
// List GitHub issues in a formatted ASCII table. Supports filters like --state, --assignee, --label. Use for issue triage and tracking workflows.
// List GitHub issues in a formatted ASCII table. Supports filters like --state, --assignee, --label. Use for issue triage and tracking workflows.
Develop and operate Gas Town with the Cursor agent preset (cursor-agent CLI): gt flags, hooks at .cursor/hooks.json, session resume, and how this repo differs from README marketing copy.
Canonical commit workflow for Gas Town crew members: pre-flight checks, branch creation, gt commit with agent identity, push, and PR creation. Use when ready to commit and submit work for review.
List GitHub PRs in a formatted ASCII table. Supports filters like --state, --author, --label. Use for PR review workflows and sheriff duties.
PR Sheriff workflow: triage PRs into easy-wins and crew assignments. Prints recommendations inline - does NOT post to GitHub.
The definitive guide for working with gastown's convoy system -- batch work tracking, event-driven feeding, stage-launch workflow, and dispatch safety guards. Use when writing convoy code, debugging convoy behavior, adding convoy features, testing convoy changes, or answering questions about how convoys work. Triggers on convoy, convoy manager, convoy feeding, dispatch, stranded convoy, feedFirstReady, feedNextReadyIssue, IsSlingableType, isIssueBlocked, CheckConvoysForIssue, gt convoy, gt sling, stage, launch, staged, wave.
| name | ghi-list |
| description | List GitHub issues in a formatted ASCII table. Supports filters like --state, --assignee, --label. Use for issue triage and tracking workflows. |
| allowed-tools | Bash(gh issue list:*) |
| version | 1.0.0 |
| author | Gas Town |
Display GitHub issues in a clean ASCII box-drawing table format.
/ghi-list [options]
--state open|closed|all - Filter by state (default: open)--assignee <user> - Filter by assignee--label <label> - Filter by label (can repeat)--limit <n> - Max items to fetch (default: 30)--author <user> - Filter by author--milestone <name> - Filter by milestonegh issue list with any provided options plus --json number,assignees,labels,title,stateUse this exact table style with box-drawing characters:
┌───────┬────────────┬─────────────────┬───────────────────────────────────────────────┬────────┐
│ Issue │ Assignee │ Labels │ Title │ State │
├───────┼────────────┼─────────────────┼───────────────────────────────────────────────┼────────┤
│ 372 │ max │ enhancement │ Create /pr-list and /ghi-list skills │ OPEN │
│ 371 │ - │ bug, priority │ Fix null pointer in auth module │ OPEN │
│ 370 │ joe │ - │ Update documentation for new API │ CLOSED │
└───────┴────────────┴─────────────────┴───────────────────────────────────────────────┴────────┘
┌ ┐ └ ┘ ├ ┤ ┬ ┴ ┼ │ ─# Default - open issues
gh issue list --json number,assignees,labels,title,state
# With filters
gh issue list --state all --label bug --json number,assignees,labels,title,state