A safety-first shipping workflow that manages build verification and version control operations.
Install
mkdir -p .claude/skills/ship-devkanro && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/10057" && unzip -o skill.zip -d .claude/skills/ship-devkanro && rm skill.zipInstalls to .claude/skills/ship-devkanro
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Ship workflow for committing and pushing changes. Use when user says "ship", "commit", "push", "deploy", or wants to finalize and submit their work. Handles build verification, test execution, brainstorm status check, changelog updates, and git operations.Key capabilities
- →Verify build stability
- →Execute tests
- →Check brainstorm status
- →Commit changes
- →Push to remote
How it works
It enforces a strict pre-ship checklist including build, test, and brainstorm status verification.
Inputs & outputs
When to use ship
- →Committing changes
- →Pushing work to remote
- →Finalizing features
- →Verifying build stability
About this skill
Ship
A disciplined shipping workflow that ensures quality before code leaves the branch.
Shipping is not just git push. It's a checklist: build passes, tests pass, the brainstorm state is correct, the commit message is meaningful, and the code is pushed cleanly. This skill enforces that checklist every time.
When to Use
- User says "ship", "commit", "push", "let's ship it", "we're done"
- User wants to finalize current work and push to remote
- User asks to create a commit for recent changes
Pre-Ship Checklist
Before any commit, run through these checks in order. Stop at the first failure and report it to the user.
1. Brainstorm Status Check
Read .github/brainstorm.md if it exists:
| Brainstorm Status | Ship Allowed? | Action |
|---|---|---|
| Planning | ❌ No | Design not finalized — finish the brainstorm first |
| Questioning | ❌ No | Open questions remain — answer them first |
| Ready | ❌ No | Design confirmed but not started — begin implementing first |
| Implementing | ⚠️ Partial | Allow shipping intermediate progress with a WIP commit |
| Completed | ✅ Yes | Full ship allowed |
| Paused | ❌ No | Work is paused — resume or complete first |
| No file | ✅ Yes | No brainstorm needed (quick fix path) |
For WIP commits during Implementing:
- Commit message must start with
WIP:prefix - Remind the user that the brainstorm is still in progress
2. Build Verification
Run the project build:
./gradlew build
- If build fails → stop and report errors
- If build succeeds → continue
3. Test Verification
Tests are run as part of the Gradle build. If any tests fail:
- Report which tests failed
- Do not proceed with commit
4. Uncommitted Changes Review
Run git status and git diff --stat to show the user what will be committed:
- List all modified, added, and deleted files
- Show a brief summary of changes
- Ask user to confirm the changes look correct
Commit Process
Commit Message Format
<type>: <concise description>
<optional body explaining what and why>
Co-authored-by: Copilot <[email protected]>
Types:
feat— new feature or capabilityfix— bug fixrefactor— code restructuring without behavior changedocs— documentation onlychore— build, CI, dependenciestest— adding or updating tests
Generate the commit message based on the actual changes. Present it to the user for approval before committing.
Git Operations
git add— stage relevant files (not blindlygit add .; be intentional)git commit— with the approved messagegit push— push to the current branch's remote- Create or update PR:
- If no PR exists for this branch → create one with
gh pr create - If a PR already exists → push is sufficient, the PR updates automatically
- PR title follows the commit message format; body summarizes the changes
- If no PR exists for this branch → create one with
If push fails due to diverged history, inform the user and suggest options (pull --rebase, force push, etc.) rather than acting unilaterally.
Post-Ship
After a successful ship:
- If brainstorm status was
Completed, note that the feature is shipped - Trigger the reflect skill — remind the user (or automatically initiate) a reflection on what was shipped
- Report success with a summary: branch name, commit hash, files changed
Error Recovery
- Build failure: Show the error output, suggest fixes
- Test failure: Show failing tests, suggest investigation
- Merge conflict: Explain the conflict, do not auto-resolve
- Push rejection: Explain why (usually needs pull), suggest safe resolution
- Network issues: Retry once, then report
Quick Ship
For trivial changes (typos, config tweaks) where no brainstorm exists, the flow is streamlined:
- Build check
- Show changes
- Commit and push
No brainstorm check needed, no WIP prefix — just a clean commit.
When not to use it
- →Shipping without brainstorm completion
Prerequisites
Limitations
- →Do not auto-resolve merge conflicts
How it compares
It treats shipping as a disciplined quality-gate process rather than just a push.
Compared to similar skills
ship side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| ship (this skill) | 0 | 5mo | No flags | Intermediate |
| land | 0 | 3mo | Review | Beginner |
| project-management | 0 | 3mo | No flags | Beginner |
| start | 0 | 5mo | Review | Advanced |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
land
All-The-Vibes
Session completion protocol - the opposite of "takeoff". Use this skill whenever the user says "land", "/land", "land the plane", "land it", "let's land", "land this", "bring it in", "wrap it up", "land the plan", "land plane", "time to land", "ok land", "go ahead and land", or any variation that si
project-management
elhaddajiOtmane
Automated workflows for Git version control, database backups, semantic naming, and task tracking. Use this skill whenever the user asks to save progress, commit changes, or perform project management tasks.
start
diegosouzapw
Execute a task autonomously with real-time Telegram progress updates, automatic deployment, commit, and push. No user interaction required - makes all decisions independently.
github-workflow-automation
ruvnet
Advanced GitHub Actions workflow automation with AI swarm coordination, intelligent CI/CD pipelines, and comprehensive repository management
github-actions-templates
wshobson
Create production-ready GitHub Actions workflows for automated testing, building, and deploying applications. Use when setting up CI/CD with GitHub Actions, automating development workflows, or creating reusable workflow templates.
hooks-automation
ruvnet
Automated coordination, formatting, and learning from Claude Code operations using intelligent hooks with MCP integration. Includes pre$post task hooks, session management, Git integration, memory coordination, and neural pattern training for enhanced development workflows.