go
Installation
SKILL.md
Go -- Ship What You Built
Phases 4-6 of /development-lifecycle, standalone command. Use when code written, ready launch.
Assumes: implementation done, tests written. If not -- run /development-lifecycle.
Phase 4: Verify
Run all checks. Fix failures before proceed.
bun run type:check(tsgo)bun run lint:fix(biome)bun vitest run --related(changed files)- Route touched ->
bun vitest run *.browser.test.tsx - Dev server running -> browser smoke via
scripts/skills-browser.sh(Vercel agent-browser). Skip if not installed. - Frontend or customer-facing surface diff -> run
/visual-review(screenshots/terminal evidence, states, a11y, console, mobile/cross-browser when feasible). Skip only with reason. - Dependency changed (
package.json,bun.lock,yarn.lock,go.mod,go.sum) -> run/upgrade-dependencyor record skip reason + upgrade report/PR section. - When green: commit now. One commit per passing state.