ghi-list
community[skill]
List GitHub issues in a formatted ASCII table. Supports filters like --state, --assignee, --label. Use for issue triage and tracking workflows.
$
/plugin install gastowndetails
GHI List - Formatted GitHub Issues Table
Display GitHub issues in a clean ASCII box-drawing table format.
Usage
/ghi-list [options]
Options (passed to gh issue list)
--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 milestone
Execution Steps
- Run
gh issue listwith any provided options plus--json number,assignees,labels,title,state - Format output as an ASCII table using box-drawing characters
- Truncate titles to fit reasonable terminal width (~45 chars)
- Show first assignee only, or "-" if none
- Show first 2-3 labels abbreviated, or "-" if none
Output Format
Use 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 │
└───────┴────────────┴─────────────────┴───────────────────────────────────────────────┴────────┘
Table Requirements
- Use Unicode box-drawing:
┌ ┐ └ ┘ ├ ┤ ┬ ┴ ┼ │ ─ - Right-align issue numbers
- Left-align text columns
- Pad columns consistently
- For assignees: show login of first assignee, "-" if none
- For labels: show comma-separated names (truncate if >17 chars)
- Show count summary below table: "N issues (M open, K closed)"
Example Commands
# 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
technical
- github
- gastownhall/gastown
- stars
- 14410
- license
- MIT
- contributors
- 100
- last commit
- 2026-04-20T01:01:49Z
- file
- .claude/skills/ghi-list/SKILL.md