wgm ("well, gosh... make") is a portable build methodology, not a domain skill — a single
SKILL.md protocol that any agentskills.io-compatible host loads to turn a rough request into
working software. It marries three ideas: a relentless alignment interview before any code is
written, a Ralph-style loop (one task per iteration, a persistent plan as shared state, steered by
deterministic backpressure), and holdout-scenario LLM judging (scenarios the build never sees, so a
high satisfaction score can't be gamed). It also runs its own internal docs-audit and
self-improvement loop, cross-pollinating durable lessons from sibling agent-coding projects back
into its own protocol.
Classify the work onto a scale-adaptive track (Quick / Standard / Full) so ceremony matches risk — a one-file fix skips holdout scenarios and the docs-audit swarm; a greenfield app gets the full rig. The deterministic backpressure gate itself is never skipped, only the ceremony around it.
Interview the user one question at a time, always with a recommended answer, until the goal, success criteria, and constraints are known — capping interrogation after ~5 questions to avoid theater. Explore the codebase to self-answer before asking anything a human doesn't need to weigh in on.
Produce a project constitution, one spec per coherent slice (each with a magic moment and a demo
path), holdout acceptance scenarios the build must never read, and IMPLEMENTATION_PLAN.md — the
persistent shared state across every later iteration. Cross-check every artifact against every other
one before moving on.
Score the plan's readiness 0-100 across goal clarity, observable success criteria, scenario coverage, and backpressure mapping. Below the threshold, return to Grill/Plan and fix the weakest dimension — do not start building on a shaky plan.
Run Analyze -> Implement -> Validate -> Review -> Record, one task per iteration: pick the single
most important pending task, make the smallest change that completes it, run its deterministic
validation command (green or it isn't done), judge holdout-scenario satisfaction, review the diff
for scope creep, then record status and any durable lesson before advancing exactly one task.
Summarize what shipped and how to validate it, run a mandatory four-persona docs-audit pass (junior/senior/principal/PM perspectives, consolidated into one paper-trail report), and harvest any durable, cross-project lesson back into the shared skill's own ledger.
User: "Build a CLI todo app with add/list/complete commands, from scratch."
wgm states its Track (Standard), grills for the ~3-5 unknowns that actually matter, writes specs +
IMPLEMENTATION_PLAN.md, scores Preflight readiness, then loops one task at a time — each task's
own test/lint/build command must exit 0 before it's marked done — and finally ships with a
docs-audit pass.
User: "/wgm plan: add OAuth login to this existing Express API"
wgm writes the specs and plan, then hard-stops at the Plan-exit gate without starting the build loop — useful when a human wants to review the plan before any code is touched.
IMPLEMENTATION_PLAN.md alone./wgm build resumes an existing IMPLEMENTATION_PLAN.md; a bare request like
"build the auth module" (more text after "build") is a full-lifecycle request, not build mode.@grill-me - the narrower alignment-interview primitive wgm's Grill phase is adapted from.@skill-creator - useful for authoring/evaluating the skill itself; wgm ships its own eval
fixture (evals/evals.json) using the same eval-driven-iteration discipline.