agentsclimarketplace

Gh issue list

Skill dceoy/github-cli-agent-skills/skills/gh-issue-list

Agent skills for GitHub CLI

Install
npx -y skills add dceoy/github-cli-agent-skills --skill gh-issue-list

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

List and filter GitHub issues using gh CLI with various filters like state, author, labels, milestone, and search queries.

SKILL.md

2.6 KB, 626 tokens by cl100k_base, as published. Nobody here has run it

GitHub Issue List

When to use

  • The user asks to list issues in a repository.
  • Finding issues by author, label, milestone, or state.
  • Reviewing issue backlog or triaging.

Inputs to confirm

  • Filter criteria: state (open/closed/all), author, assignee, labels, milestone.
  • Search query if advanced filtering needed.
  • Target repo if not current (--repo OWNER/REPO).
  • Output format (table, JSON, web).

Workflow

  1. Verify auth:
    gh --version
    gh auth status
    
  2. List issues with filters:
    gh issue list
    gh issue list --state all --limit 50
    gh issue list --author "@me"
    gh issue list --label "bug" --label "priority"
    gh issue list --assignee "@me" --state open
    gh issue list --milestone "v2.0"
    
  3. Use search syntax for advanced queries:
    gh issue list --search "no:assignee sort:created-asc"
    gh issue list --search "is:open label:bug -label:wontfix"
    
  4. Get JSON output for scripting:
    gh issue list --json number,title,state,labels --jq '.[] | "\(.number): \(.title)"'
    

Examples

# List your assigned issues
gh issue list --assignee "@me"

# Find unassigned bugs
gh issue list --label "bug" --search "no:assignee"

# List issues in a milestone
gh issue list --milestone "Release 1.0"

# Get issues as JSON
gh issue list --json number,title,state,assignees

# Open issue list in browser
gh issue list --web

Flags reference

FlagDescription
-s, --stateFilter: open, closed, all (default: open)
-A, --authorFilter by author
-a, --assigneeFilter by assignee
-l, --labelFilter by label (repeatable)
-m, --milestoneFilter by milestone name or number
--mentionFilter by mentioned user
-S, --searchSearch with GitHub query syntax
-L, --limitMax items to fetch (default 30)
--jsonOutput specific fields as JSON
-w, --webOpen list in browser

References

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.