| name | github-issue-list |
| description | List and search GitHub issues in claude-power-pack |
Codex target-repository contract
Resolve REPO from an explicit owner/repo argument when supplied; otherwise
run gh repo view --json nameWithOwner --jq .nameWithOwner in the current
checkout. Pass --repo "$REPO" to every issue command. If neither source can
resolve a repository, ask the user before performing a write.
Codex harness adaptations
Generated from a Claude Code command. Where the procedure references these Claude-only surfaces, adapt as follows:
- MCP tools: use the MCP servers configured in
~/.codex/config.toml, or fall back to the referenced repo scripts and CLI entry points.
List GitHub Issues
List and search issues in the claude-power-pack repository.
Default Behavior
If the user just runs /github-issue-list without specifying filters, show open issues:
gh issue list --repo "$REPO" --state open --limit 20
Available Filters
Ask the user if they want to apply any filters:
State Filter
open (default) - Open issues only
closed - Closed issues only
all - All issues
Label Filter
Common labels:
best-practice - Best practice suggestions
correction - Documentation corrections
feature-request - Feature requests
bug - Bug reports
enhancement - Enhancements
documentation - Documentation related
Search Filter
Search issue titles and bodies:
gh issue list --repo "$REPO" --search "QUERY"
Author/Assignee Filter
--author USERNAME - Issues created by specific user
--assignee USERNAME - Issues assigned to specific user
--assignee @me - Issues assigned to current user
Command Examples
gh issue list --repo "$REPO" --state open --limit 20
gh issue list --repo "$REPO" --label "best-practice"
gh issue list --repo "$REPO" --search "MCP token"
gh issue list --repo "$REPO" --state closed --limit 10
gh issue list --repo "$REPO" --author @me
gh issue list --repo "$REPO" --state open --label "bug" --limit 10
Output Format
Present results in a clean table format:
# TITLE LABELS UPDATED
42 Use Plan Mode for complex refactors best-practice 2h ago
38 MCP server fails on Python 3.12 bug 1d ago
35 Add /test:setup command feature-request 3d ago
Follow-up Options
After listing issues, offer:
- View a specific issue:
/github-issue-view NUMBER
- Refine search with different filters
- Create a new issue:
/github-issue-create