List GitHub issues in a formatted ASCII table. Supports filters like --state, --assignee, --label. Use for issue triage and tracking workflows.
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