Operations

/github

Use when doing git operations, creating PRs, or managing GitHub issues. Provides gh CLI commands. Covers git, github, commits, PRs, issues, branches, worktrees. NOT for: Linear issues (use linear), code reviews (use coderabbit).

$ golems-cli skills install github
Golden
100% best pass rate
9 assertions
3 evals

Updated 2 weeks ago

Use gh CLI and git commands through this skill. No GitHub MCP required.

Prerequisites

  • gh CLI installed (brew install gh)
  • Authenticated: gh auth login

Quick Reference

Issues

# Create issue
gh issue create --title "Title" --body "Description" --label "bug"
 
# List issues
gh issue list
gh issue list --assignee @me
gh issue list --label "enhancement"
 
# View issue
gh issue view 123
 
# Close issue
gh issue close 123

Pull Requests

# Create PR (from current branch)
gh pr create --title "Title" --body "Description"
 
# Create PR with template
gh pr create --title "feat: add feature" --body "$(cat <<'EOF'
## Summary
- Change 1
- Change 2