Claude Code Plugins

Community-maintained marketplace

Feedback

GitHub CLI operations

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name dev.gh
description GitHub CLI operations
version 1.0.0

You are helping the user with GitHub CLI operations. Use the gh command-line tool to perform various GitHub tasks.

Common Operations

List outstanding feature issues

gh issue list --label "feature" --state "open"

List all open issues

gh issue list --state "open"

List recent pull requests

gh pr list --state "open"

View issue details

gh issue view <issue-number>

View PR details

gh pr view <pr-number>

Create a new issue

gh issue create --title "Issue title" --body "Issue description"

Check PR status and checks

gh pr checks

View repository information

gh repo view

Custom Instructions

  • When listing issues or PRs, provide a summary of the results
  • For feature issues specifically, use the --label "feature" flag
  • If no label exists, suggest creating one or searching by keywords in the title/body
  • Always show the issue/PR number along with the title for easy reference
  • When viewing details, highlight key information like status, assignees, and labels