What problem does it solve? It standardizes how an AI agent performs GitHub operations from inside a dev container, covering gh CLI authentication, branch pushing, PR creation and review, and issue management while enforcing the repository's git conventions and safety rules. ## Core Features & Use Cases - Authentication Setup: Authenticate the gh CLI via the GH_TOKEN environment variable or interactive gh auth login, with verification commands. - Branch and PR Workflow: Create convention-compliant branches (type/date/slug), push with upstream tracking, and open PRs with properly formatted titles and HEREDOC-safe bodies. - Review and Issue Management: List, view, diff, and check PRs, submit review comments, and create or close GitHub issues. - Safety Guardrails: Prohibit direct pushes to main, restrict force-push usage, and defer merges and releases to the user. - Use Case: After finishing a feature branch in the container, ask the agent to push it and open a draft PR with a conventional title and a summary plus test plan body, then watch CI status with gh pr checks. ## Quick Start Push my current branch and create a draft pull request against main with a summary and test plan using the gh CLI.