What problem does it solve? Managing pull requests involves repetitive manual steps: creating branches, writing conventional commits, opening PRs, watching CI, diagnosing failures, and merging. This Skill guides an agent through the entire PR lifecycle with both gh CLI and git + curl fallback commands, so it works on any machine regardless of tooling. ## Core Features & Use Cases - Full PR Lifecycle: Branch creation with naming conventions, conventional commits, PR creation via gh or the GitHub REST API, and squash/merge/rebase with branch cleanup. - CI Monitoring & Auto-Fix: Poll check runs and commit statuses, download failed job logs, diagnose common failure patterns (tests, lint, types, build, permissions, timeouts), and loop through fix-push-verify cycles. - Dual Auth Modes: Automatically detects whether gh is authenticated or falls back to GITHUB_TOKEN from environment, .nyxora/.env, or git credentials for raw API calls. - Use Case: Ask the agent to fix a bug and ship it — it creates a fix/ branch, commits with a conventional message, opens a PR with a structured body template, watches CI, auto-fixes a failing lint check, and squash-merges when green. ## Quick Start Create a pull request for my current changes, monitor the CI checks, fix any failures, and merge it when everything passes.