agentsclimarketplace

Push

Skill cloverink/shipwright/skills/push

Production-grade Claude Code skills for shipping quality code. One command takes your branch from "done coding" to PR-ready via audit → review → docs → push.

Install
npx -y skills add cloverink/shipwright --skill push

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 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

Smart commit + push + auto-create PR. Blocks push to main. Runs pre-flight gate checks before pushing.

SKILL.md

1.5 KB, as published. Nobody here has run it

/push

Safe push with guard rails. Commits, pushes, and opens a PR if one doesn't exist.

Workflow

  1. Safety check — refuse if on main branch
  2. Stage changesgit add relevant files (never -A blindly)
  3. Commit — conventional commit format, auto-detect type from diff
  4. Rebasegit pull --rebase origin main to stay current
  5. Pushgit push -u origin <branch>
  6. PR — if no open PR exists, create one with template

Conventional Commits

<type>(<scope>): <subject>

Types: feat, fix, docs, style, refactor, perf, test, chore
<!-- CONFIGURE: Adjust scopes to match your project (e.g., www, api, docs) -->

Pre-flight Gates (when called from /ship)

When /push runs as Phase S of /ship, it verifies gates before pushing:

GateRequirement
Code reviewScore > 9
UX reviewScore = 10/10 (if frontend changed)
Working treeClean (no uncommitted changes)
<!-- CONFIGURE: Adjust gate thresholds or remove gates you don't need -->

PR Template

Auto-generated PR body includes:

  • Summary (1-3 bullet points from commits)
  • Test plan checklist
  • Phase-by-phase changelog (when called from /ship)

Safety Rules

  • Never pushes to main — always feature branches
  • Never force pushes — always regular push
  • Never skips hooks — if pre-push hook fails, fix the issue

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.