What problem does it solve?
This Skill provides guided automation for GitHub workflows by leveraging the GitHub CLI to streamline repository operations, issue tracking, PR management, and authentication from a local development environment.
Core Features & Use Cases
- Unified GitHub workflow automation: authenticate, clone, create repositories, issues, and pull requests with gh commands from a single interface.
- Cross-project consistency: apply standard GH workflows across multiple repositories to align developer practices.
- On-demand guidance: embedded commands and tips to accelerate setup, debugging, and routine maintenance of GitHub projects.
Quick Start
Install the GitHub CLI and ensure it is accessible as gh (see SETUP.md).
Authenticate with gh auth login.
Common operations:
gh repo clone owner/repo
gh repo create owner/new-repo --public
gh issue create --title "Sample issue" --body "Describe the issue" --repo owner/repo
gh pr create --title "New feature" --body "Describe the feature" --base main --head feature-branch