ship
Installation
SKILL.md
/ship - Build, Commit, Push & Version Bump
Automates the complete ship workflow for ccboard:
Workflow Steps
-
Build Verification
- Run
cargo build --allto ensure compilation succeeds - Run
cargo clippy --all-targetsto catch warnings - Run
cargo test --allto verify tests pass - If any step fails, stop and report errors
- Run
-
Stage Changes
- Run
git statusto show current state - Stage all changes with
git add -A - Show what will be committed with
git diff --cached --stat
- Run