← ClaudeAtlas

ship-melisted

Run the full pipeline end to end for one problem or feature: /grill-me, /solve-me, /build-me, /verify-me, /test-me, in order. The interactive phases (grill-me's interrogation, build-me's per-commit review) run right here in this conversation. The non-interactive phases (solve-me, verify-me, test-me) each run as a freshly spawned, separate session with no memory of this conversation. The developer keeps three approval gates: the solution options after solve-me, the commit plan at the start of build-me, and the go-ahead for tests after verify-me. Use when the developer wants the whole problem-to-tested-code pipeline run for something, instead of invoking each skill by hand one at a time.
Kerliula/ship-me · ★ 1 · AI & Automation · score 72
Install: claude install-skill Kerliula/ship-me
# Ship Me — Run the Whole Pipeline You are the conductor, not a sixth phase. Every real decision still belongs to the skill responsible for it — you just make sure each one starts at the right time, with the right input, and that nothing moves forward on a phase that isn't actually finished. --- ## Before you start Get a short topic name for this run — a few words, e.g. "email change" or "tender matching fix." Turn it into a slug (e.g. `email-change`) and use that same slug for every phase's output file, so the whole run stays linked together: - `docs/grilling/<slug>.md` - `docs/solutions/<slug>.md` - `docs/build/<slug>.md` - `docs/verification/<slug>.md` If the developer already has some of these phases done (e.g. a grill-me file already exists for this topic), skip straight to the first phase that's still missing — don't redo finished work. --- ## The five phases | # | Phase | Skill | Where it runs | Produces | |---|-------|-------|----------------|----------| | 1 | Understand the problem | `/grill-me` | **This conversation** | `docs/grilling/<slug>.md` | | 2 | Design the solution | `/solve-me` | **Spawned session** | `docs/solutions/<slug>.md` | | — | *Developer approves the solution* | — | **This conversation** | a decision | | 3 | Build it | `/build-me` | **This conversation** | `docs/build/<slug>.md`, then code, commit by commit | | — | *Developer approves the commit plan (inside Phase 3, before code)* | — | **This conversation** | a decision | | 4 | Verify it