gh-issues

Solid

Use when creating, searching, updating, or managing GitHub issues via CLI. Triggers: "issue", "create issue", "gh issue", "task tracking", "context", "handoff", "resume task", "session context", "save progress", "active tasks", "in-progress", "my tasks", "open issues". Covers: gh commands, bulk operations, JSON/jq, search filters, issue-to-PR workflow, AI session context storage, task workflow with labels.

AI & Automation 176 stars 21 forks Updated yesterday MIT

Install

View on GitHub

Quality Score: 88/100

Stars 20%
75
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# GitHub Issues CLI Efficient GitHub Issues management via `gh` CLI with AI session context storage. ## Table of Contents 1. [Quick Reference](#quick-reference) 2. [JSON Output](#json-output-patterns) 3. [Search Filters](#advanced-search-filters) 4. [Bulk Operations](#bulk-operations) 5. [Issue to PR Workflow](#issue-to-pr-workflow) 6. [Milestones](#milestones-via-api) 7. [AI Session Context](#ai-session-context) 8. [Task Workflow](#task-workflow) 9. [Examples](#examples) 10. [Common Mistakes](#common-mistakes) ## Quick Reference | Task | Command | |------|---------| | Create issue | `gh issue create -t "Title" -b "Body" -l bug -a @me` | | **Active tasks** | `gh issue list -l in-progress -s open` | | List open bugs | `gh issue list -l bug -s open` | | View as JSON | `gh issue view 123 --json number,title,body,labels,state` | | Close with comment | `gh issue close 123 -c "Fixed in #456"` | | Edit labels | `gh issue edit 123 --add-label priority:high` | | Start work | `gh issue edit 45 --add-label in-progress` | | Create branch | `gh issue develop 123 --checkout` | | Load context | `gh issue view 45 --json comments --jq '.comments[] \| select(.body \| contains("AI-CONTEXT"))' ` | ## JSON Output Patterns Always use `--json` for parsing. Fields: `number`, `title`, `body`, `state`, `labels`, `assignees`, `milestone`, `author`, `createdAt`, `updatedAt`, `comments`, `url`. ```bash gh issue view 123 --json number,title,labels,state gh issue list --json number,title,labels --j...

Details

Author
serejaris
Repository
serejaris/personal-corp-skills
Created
5 months ago
Last Updated
yesterday
Language
HTML
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category