What problem does it solve? Managing the full GitHub repository lifecycle from the terminal requires remembering many gh and git commands. This Skill automates remote repository creation, structured commits, CI/CD workflow triggering, and pull request generation without leaving the terminal. ## Core Features & Use Cases - Zero-Click Repo Creation: Initialize a remote GitHub repository from the current folder with a single gh repo create command, including upstream setup. - Auto-Sync Commits: Stage, commit with Conventional Commits messages (≤50 characters), and push changes in one flow. - Cloud Workflow Runner: Trigger GitHub Actions workflows on demand and monitor runs asynchronously via logs written to /tmp/workflow.log. - Standardized Pull Requests: Create PRs with safety checks (not on main/master), preflight script execution, and repository PR templates. - Use Case: After finishing a feature branch, ask the agent to run preflight checks and open a pull request using the repo's PULL_REQUEST_TEMPLATE.md with a Conventional Commits title. ## Quick Start Ask the agent to initialize a GitHub repository for the current project and push the code using the gh CLI.