Agent skill

issues

Interact with GitHub issues - create, list, and view issues.

Nick44,414★ · +328/wk · 1 repos on radarProfile →
claude-codecodexcursorread-onlyMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill issues --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 8 KB
Bundled scripts: none
Version: 1.0
Declared author: Shpigford
Allowed tools: Bash(gh*)
Path: skills/issues/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

Interact with GitHub issues - create, list, and view issues. ## When to Use - The user wants to create, list, inspect, or otherwise work with GitHub issues. - The task involves issue intake or repository issue management through the GitHub CLI workflow. - You need a guided issue flow that gathers titles, descriptions, and action selection before running commands. ## Instructions This command helps you work with GitHub issues using the `gh` CLI. ### Step 1: Determine Action Use AskUserQuestion to ask what the user wants to do: **Question:** - question: "What would you like to do with GitHub issues?" - header: "Action" - multiSelect: false - options: - label: "Create new issue" description: "Open a new issue with title, body, and optional labels" - label: "List issues" description: "View open issues in the current repository" - label: "View issue" description: "See details of a specific issue by number" --- ## If "Create new issue" selected: ### Step 2a: Get Issue Title Use AskUserQuestion to get the issue title: **Question:** - question: "What's a short, scannable title for this issue? Keep it brief (5-10 words max) - details go in the body. (Use 'Other' to type your title)" - heade

What's inside
Steps it walks through
  1. When to Use
  2. Instructions
  3. Step 1: Determine Action
  4. If "Create new issue" selected:
  5. Step 2a: Get Issue Title
  6. Step 3a: Get Issue Body
  7. Step 4a: Get Labels (Optional)
  8. Step 5a: Create the Issue
  9. If "List issues" selected:
  10. Step 2b: Filter Options
  11. Step 3b: List Issues
  12. If "View issue" selected:
  13. Step 2c: Get Issue Number
  14. Step 3c: View Issue
Commands it runs
gh issue create --title "[title]" --body "[constructed body]" --label "[labels]"
gh issue create --title "Title" --body "$(cat <<'EOF'
More from agentic-awesome-skills
All skills →
About this skill
What does the issues skill do?

Interact with GitHub issues - create, list, and view issues.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill issues --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going