Ship
Every ship is the same ritual: verify → docs → marketing site → sync surfaces → knowledge → version → secrets → de-vibe spot-check → self-check → commit → push. Work through the checklist in order; report what shipped and what was skipped.
If the repo has its own ship skill (e.g. /dashclaw-ship), use that instead.
Checklist
- Scope check.
git status. If other agents are working in this repo or a scope lock is active, stage only files you changed this session — nevergit add -Ablindly. - Verify. Run the repo's test/lint/build (discover from package.json / pyproject / CI config). Read the output. Failures block the ship — fix first, don't push red.
- Docs. Update every doc the change touches, in this commit and not a later sweep: README run steps, changelog, and internal docs (
docs/, ADRs, runbooks, architecture notes, the repo's ownCLAUDE.mdif a convention changed). New env vars →.env.example+ docs. New scripts and APIs get request/response examples. - Marketing site. If a public surface exists — a
site/,web/,www/, orlanding/dir here, a separate site repo, or a URL in the README — open the pages this change affects and fix drift: feature lists, screenshots, pricing, version numbers, docs pages, changelog/release page. Rendered proof, not a grep of the source:curl -s <url> | grep -c <version|feature>against the live URL, anddeclick web tree <url> --selector <css> --limit 20for its links and buttons, cost a few hundred tokens; a screenshot only when layout is the question. Say "no public site" out loud when there isn't one; never leave it unstated. - Sync other surfaces. Anything else this repo publishes beyond the code: SDK/CLI version references, skills/plugins/MCP manifests, generated docs, dashboards, package registry metadata. List each surface as checked or n/a. A public surface that is new this ship, or a domain that changed, also gets registered before the report: Google Search Console verified + sitemap submitted, Bing Webmaster Tools imported from Search Console, host analytics enabled with its tag live. Follow
~/.claude/skills/preflight/references/search-registration.md; the Bing sign-in is the one step handed to Wes. - Knowledge capture. Write down what this session learned, before it evaporates:
- Durable architecture/product/stack decision →
docs/DECISIONS.md. - Failure or lesson →
docs/ERRORS.md. Full entry (symptom, root cause, fix, date) when debugging took multiple attempts; one line every time you broke something or Wes corrected you, even if the fix was instant. First occurrences must be logged or repeats are never countable. - Fact a future session needs and cannot derive from the code → a memory file in
~/.claude/projects/<project-slug>/memory/plus its one-line pointer in that dir'sMEMORY.md. That is a different repo, so it gets its own commit. - A lesson that has now repeated → promote it to a rule in this repo's
CLAUDE.md. - Nothing durable this session? Say that explicitly.
- Durable architecture/product/stack decision →
- Version bump. If a publishable package changed behavior, bump the version and changelog. Print the publish command for the user to run — never publish without explicit approval.
- Secrets scan. Review the staged diff for secrets, tokens, private paths,
.envfiles. Anything sensitive → unstage and flag. - De-vibe spot-check. Run the CRITICAL security greps and repo/git-tell checks from the de-vibe skill (
~/.claude/skills/de-vibe/references/code-tells.md§1 and §5) against the staged diff and tracked files — committed.env, wildcard CORS, hardcoded keys, tracked AI artifacts (.claude/,CLAUDE.md,.cursorrules), attribution trailers not disabled, default title/favicon on web apps. Hits block the ship like a failed test. This is the spot-check only — for a project's first ship, or when the diff touches UI/marketing copy, suggest a full/de-vibeinstead (audit + identity pass) and let the user decide. - Assumption self-check. NEVER QUIZ WES (his explicit order, 2026-08-14). Ask yourself the 3–5 questions a reviewer would probe — invariants relied on, rollback path, surfaces affected — and ANSWER THEM YOURSELF from the diff. Anything you cannot answer, investigate until you can. State the load-bearing assumptions as facts in the post-ship report, never as blocking questions. The only pre-ship questions allowed are the CLAUDE.md hard-stop categories (auth, billing, prod infra, prod-data migrations, destructive actions).
- Commit and push. Message follows repo convention. Push, then confirm CI kicked off (and passes, if it's fast). Memory-dir changes get their own commit in
~/.claude. - Report. State what shipped, docs updated, the marketing site verdict, surfaces synced, what you logged to DECISIONS/ERRORS/memory, version state, the assumptions you self-checked, and anything intentionally skipped.
Common mistakes
- Claiming shipped while tests were never run — verify means reading the output, not launching the command.
- Committing another agent's in-flight changes.
- Forgetting non-code surfaces (marketing site, SDK version references) — steps 4 and 5 exist because these drifted repeatedly.
- Leaving the site, the internal docs, or the changelog for "a later sweep." There is no later sweep.
- Shipping a hard-won lesson with no ERRORS.md line and no memory file, so the next session pays for it again.
- Grepping the marketing copy instead of loading the page. A stale screenshot greps clean.