Ship
Engineering quality focused skills for AI coding agents that keep humans in the loop.
npx -y skills add kreek/consult --skill shipAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Run Consult's guarded maintainer flow for commit, merge, version bump, validation, and push.
SKILL.md
3.2 KB, 737 tokens by cl100k_base, as published. Nobody here has run it
Ship
When to Use
- Use when the user asks to ship this Consult repository or explicitly invokes
$ship. - Use only for this repository's maintainer release flow: commit, merge to
main, bump release artifacts, validate, and push.
When NOT to Use
- Do not use for ordinary commits; use the
commitskill instead. - Do not use for release preparation by itself; use the
releaseskill. - Do not use outside this repository.
Iron Law
DO NOT RUN THE WHOLE SHIP FLOW UNATTENDED; STOP AT EVERY CONFIRMATION GATE.
Repo Facts
- Main branch is
main; remote isorigin. - There are two independent release streams. Never bump them in lockstep.
- Plugin version lives in
plugin/.claude-plugin/plugin.json,plugin/.codex-plugin/plugin.json,plugin/.cursor-plugin/plugin.json,.claude-plugin/marketplace.json, and.cursor-plugin/marketplace.json.plugin/plugin.jsonshould match these too; reconcile drift when bumping. - The
consultnpm package version lives inconsult/package.json. Bump it only when the diff changes the published package. - Root
package.jsonis private tooling and is not versioned for release. - Version marker is the
CHANGELOG.mdheader## [X.Y.Z] (YYYY-MM-DD). Promote## [Unreleased]into a dated version section and leave a fresh empty## [Unreleased]above it. - Releases are not git-tagged in this repo. Do not create or push a tag unless the user explicitly asks.
- Commit messages use imperative subjects and no author-attribution trailers.
Workflow
- Pre-flight: run
git statusandgit rev-parse --abbrev-ref HEAD. If the working tree is clean and already onmain, report that there is nothing to ship and stop. - Commit: review
git diffandgit diff --cached, group uncommitted changes into logical commits, propose the grouping, and get user approval before committing on the current branch. - Merge to main, only when not already on
main: rungit fetch origin, bringmainup to date, get user approval, then merge the current branch intomain. On conflicts, stop and show the conflicted files. - Bump the version on
main: use thereleaseskill to classify the bump from the merged diff, or use the user's explicitpatch,minor, ormajoroverride. Confirm the proposed version before writing. Update the relevant release artifacts and commit the bump asRelease <version>. - Validate and push: run the project validation gate before pushing. Abort on
failure. Get user approval before
git push origin main.
Before Saying Done
Report the branch shipped, merge result, old and new version per release stream, validation result, pushed commit, skipped release streams, and any remaining publishing or plugin-sync work.
Verification
- The skill stopped at each approval gate before committing, merging, versioning, and pushing.
- Release-stream bumps matched the actual changed surface.
-
CHANGELOG.mdand every relevant manifest agreed after the version bump. - Validation ran before push, or the skipped validation is clearly reported.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.