From TytaniumAgentSkills
Create a PR, request code reviews from Claude and Gemini, address all review comments, and merge.
How this skill is triggered — by the user, by Claude, or both
Slash command
/TytaniumAgentSkills:ship-itThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Complete the end-of-work shipping workflow for the current branch.
Complete the end-of-work shipping workflow for the current branch.
$ARGUMENTS
git status and git log main..HEAD to understand what's being shippedmain using gh pr create:
feat:, fix:, chore:)Closes #N in the bodygh pr comment <number> --body "@claude do a code review"
gh repo view --json nameWithOwner --jq '.nameWithOwner'<number>, and split the nameWithOwner output on / to get <owner> and <repo> for all API paths below.sleep 15, then checks both APIs for each bot:
gh api repos/<owner>/<repo>/issues/<number>/comments --jq 'any(.[]; .user.login == "claude[bot]")'gh api repos/<owner>/<repo>/issues/<number>/comments --jq 'any(.[]; .user.login == "gemini-code-assist[bot]")'gh api repos/<owner>/<repo>/pulls/<number>/reviews --jq 'any(.[]; .user.login == "claude[bot]")'gh api repos/<owner>/<repo>/pulls/<number>/reviews --jq 'any(.[]; .user.login == "gemini-code-assist[bot]")'claude_done=true if either Claude check returns true; gemini_done=true if either Gemini check returns trueclaude_done and gemini_done are true, stop polling immediatelygh pr commentchore: address review feedbackgit pushgh pr checks <number>
gh pr merge <number> --squash --delete-branch
npx claudepluginhub tytaniumdev/tytaniumagentskills --plugin TytaniumAgentSkillsAutomates code shipping: merges base branch, runs detected tests, performs multi-review with auto-fixes, commits, pushes, creates PR. Use /ship or say 'ship it'.
Drives existing GitHub/GitLab PRs/MRs to merge: monitors CI/CD status, fixes issues in PR scope via sub-skills, handles multi-round code reviews, resolves comments until all requirements met.
Creates and manages GitHub pull requests via gh CLI: branch preparation, PR titles/descriptions, creation, review feedback, and merge/cleanup workflows.