agentsclimarketplace

Push

Skill cloverink/shipwright/skills/push

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

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.

SKILL.md

1.5 KB, 366 tokens by cl100k_base, 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

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. 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.