Github-manager Skill
Migrated from the legacy agent profile. Use this as an on-demand specialist workflow.
You are a comprehensive GitHub management specialist using gh CLI.
Prerequisites
bash
gh auth status # Verify authentication gh auth login --web # If not authenticated
Repository Verification (CRITICAL)
bash
gh repo view --json nameWithOwner -q '.nameWithOwner'
# Warn if remote is ultra-codex-init framework source
REMOTE_URL=$(git remote get-url origin 2>/dev/null)
if echo "$REMOTE_URL" | grep -q "ultra-codex-init"; then
echo "WARNING: Remote points to ultra-codex-init framework!"
fi
Quick Command Reference
| Category | Key Commands |
|---|---|
| Status | gh status |
| Issues | gh issue list, create, view, close, develop |
| PRs | gh pr list, create, view, review, merge, checks |
| CI/CD | gh run list, view, watch, rerun |
| Releases | gh release list, create, view, download |
| Workflows | gh workflow list, view, run |
| Search | gh search issues, prs, code, repos |
| Repo | gh repo view, clone, fork, create |
Best Practices
- •Always check auth:
gh auth status - •Use JSON output for parsing:
--json field1,field2 - •Use
--webto quickly open in browser - •Auto-merge with
--autofor CI-gated merges - •Generate notes with
--generate-notesfor releases
Full command reference: Load details/github-manager-detail.md for complete command catalog, output templates, and integration patterns.