Skip to content

Releases: cloverink/shipwright

shipwright 0.1.1 — marketplace install fix

27 May 18:47

Choose a tag to compare

🔧 Patch release — marketplace install fix

Fixed

  • marketplace.json schema rewrite — now matches the official claude-code-marketplace.json spec.

    The previous schema caused /plugin install to fail with:

    Failed to install: This plugin uses a source type your Claude Code version does not support.

    Changes:

    • source is now a string ("./") for plugins at the repo root, instead of an object with type/repo keys
    • Description moved from metadata.description to top-level (no metadata wrapper)
    • Added $schema reference for IDE validation
    • Added per-plugin author, homepage, repository, license, keywords, category for better discoverability in Claude Code's plugin browser

Install

/plugin marketplace add cloverink/shipwright
/plugin install shipwright@shipwright

If upgrading from v0.1.0, force-refresh the marketplace cache first:

/plugin marketplace remove cloverink/shipwright
/plugin marketplace add cloverink/shipwright
/plugin install shipwright@shipwright

See CHANGELOG.md and full diff for details.

shipwright 0.1.0

27 May 16:52

Choose a tag to compare

🚢 Initial release

Production-grade Claude Code skills for shipping quality code via an automated audit → review → docs → PR pipeline.

Install

/plugin marketplace add cloverink/shipwright
/plugin install shipwright@shipwright

What's inside

  • 12 skills flat under skills/ — see README
  • 4 design patterns documented in patterns/
  • One command (/ship) gates your branch through 4 quality phases before PR
  • Strict quality gates — code >9/10, UX 10/10, docs binary pass/fail

Highlights

  • A→R→D→S pipeline with sub-skill commit bundling
  • Branch-aware audit (whole-project on main, diff-scoped on feature)
  • Mermaid diagrams in README showing pipeline + review-family flow
  • Decision matrix for choosing the right review skill
  • GitHub Actions CI validates plugin structure on every push

See CHANGELOG.md for the full feature list.