Claude Code Plugins

Community-maintained marketplace

Feedback

working-github-cli

@kevindurb/.dotfiles
0
0

Use when working with GitHub repositories, pull requests, issues, releases, or other GitHub operations via the gh CLI

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 working-github-cli
description Use when working with GitHub repositories, pull requests, issues, releases, or other GitHub operations via the gh CLI

Working with GitHub CLI

Use the gh CLI tool via the Bash tool for all GitHub operations.

Authentication & Account Issues

IMPORTANT: If you encounter "repository not found" or authentication errors:

  1. Check authentication status:

    gh auth status
    
  2. If multiple accounts are configured, try switching accounts:

    gh auth switch
    
  3. If not authenticated, prompt user to run:

    gh auth login
    

Commands & Usage

See @common-commands.md for detailed command reference, examples, and common operations.

Best Practices

  • Use gh commands instead of git+web workflows when possible
  • Always check gh <command> --help for options
  • Use --json flag for machine-readable output when parsing
  • Use heredoc for multiline bodies (PR descriptions, issue bodies)