com um clique
pr-list
// List GitHub PRs in a formatted ASCII table. Supports filters like --state, --author, --label. Use for PR review workflows and sheriff duties.
// List GitHub PRs in a formatted ASCII table. Supports filters like --state, --author, --label. Use for PR review workflows and sheriff duties.
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 issues in a formatted ASCII table. Supports filters like --state, --assignee, --label. Use for issue triage and tracking workflows.
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 | pr-list |
| description | List GitHub PRs in a formatted ASCII table. Supports filters like --state, --author, --label. Use for PR review workflows and sheriff duties. |
| allowed-tools | Bash(gh pr list:*) |
| version | 1.0.0 |
| author | Gas Town |
Display GitHub pull requests in a clean ASCII box-drawing table format.
/pr-list [options]
--state open|closed|merged|all - Filter by state (default: open)--author <user> - Filter by author--label <label> - Filter by label (can repeat)--limit <n> - Max items to fetch (default: 30)--assignee <user> - Filter by assignee--draft - Show only drafts--all-reviews - Include PRs with CHANGES_REQUESTED (excluded by default)gh pr list with any provided options plus --json number,author,title,state,isDraft,reviewDecision--all-reviews specified)Use this exact table style with box-drawing characters:
┌─────┬────────────────────┬───────────────────────────────────────────────────┬────────┐
│ PR │ Author │ Title │ State │
├─────┼────────────────────┼───────────────────────────────────────────────────┼────────┤
│ 123 │ username │ feat: add new feature for something │ OPEN │
│ 122 │ another-user │ fix: resolve bug in component │ DRAFT │
└─────┴────────────────────┴───────────────────────────────────────────────────┴────────┘
┌ ┐ └ ┘ ├ ┤ ┬ ┴ ┼ │ ─# Default - open PRs (excludes CHANGES_REQUESTED)
gh pr list --json number,author,title,state,isDraft,reviewDecision
# With filters
gh pr list --state all --author boshu2 --json number,author,title,state,isDraft,reviewDecision