| name | build |
| description | Use when implementing any non-trivial feature, change, or fix โ "build me X", "add this feature", "implement this", "make this work", "can you create". Covers new functionality, meaningful changes to existing code, and anything where quality matters. Not for a one-line diff โ just do that. |
MasterMind โ Build
The single "do it the genius way, end to end" workflow. It runs the loop from ~/.mastermind/engineering/core/agent-loop.md,
pulling in the specialist agents and the field pack at each phase. Task: $ARGUMENTS.
Scale effort to the task (~/.mastermind/engineering/core/principles.md): a trivial change skips straight to implement+verify;
a foundation gets the full loop. Don't perform ceremony the task doesn't warrant.
The loop
-
Understand โ restate the real problem and its scope/lifespan; do the asked task and nothing more
(~/.mastermind/engineering/core/rigor.md โ Stay in scope). Read the relevant existing code and conventions first (delegate
wide reading to a subagent to protect context); learn the stack if unfamiliar (~/.mastermind/engineering/core/agent-loop.md
โ Learn the stack first). Match the codebase.
-
Design (non-trivial only) โ invoke the architect agent to produce the blueprint:
module/component boundaries + interfaces, state model, data flow, key types, edge-case list. For a
multi-file or unfamiliar change, write the design/spec down before coding. Skip for a clear one-file fix.
-
Decide the stack โ apply the active field's stack-defaults.md. Choose the simplest thing that
fully works; deviate only for a stated reason. Consult mentors.md if a call is contested.
Plan-first gate (opt-in, off by default). If the project's plan-first preference is on
(.mastermind/prefs.md: plan-first: on) โ or the user asks to "plan first" โ do not start editing yet.
Present a concise plan from steps 1โ3: the goal, the approach, the files you'll touch, the
steps, and any risk/decision worth a look.
The bar: clear enough for an enthusiastic junior engineer with poor taste, no judgement, no project
context, and an aversion to testing to follow without asking you anything. That means exact file
paths, not "the auth module"; bite-sized steps, not "implement the feature"; and a stated way to
tell each step worked. If a step needs you to already know something the plan doesn't say, it isn't
written yet. Then stop and wait for the user's go-ahead (this
overrides the usual "decide and do" for this project โ they opted in). If they adjust it, fold that in and
re-show. On approval, announce ๐ง MasterMind โธ implementing the plan with โ build ยท implement โ verify โ review beneath it, then proceed to step 4. Skip the
gate entirely for a trivial one-liner (match effort to stakes) โ it's for changes worth reviewing first.
-
Implement to rigor (~/.mastermind/engineering/core/rigor.md) โ build against the design. Handle the unhappy paths
(null/empty/loading/error/zero/one/many/offline/unauthorized/malformed). Types honest, no lazy
placeholders, no dead code. Single-purpose units. Style like the surrounding code.
-
Verify โ close the loop (~/.mastermind/engineering/core/agent-loop.md; the qa skill) โ prove it works by driving
the real thing: typecheck + lint + build, run the project's existing tests, and for UI exercise the
actual flow / screenshot. Show the evidence; never assert success. If you can't verify it, it isn't
done. Fix root causes. Don't add tests or a test framework unprompted โ once it works, offer:
"Built and verified โ want me to add tests / do this test-first?"
-
Adversarial review โ invoke the code-reviewer agent on the diff in a fresh context. Fix
real must-fix findings (correctness/security/a11y); treat gap-hunting nits as optional to avoid
over-engineering. Re-verify after fixes.
-
Capture & report โ run the levelup skill (capture) to fold any durable lesson
or correction into the active field's lessons.md. Report honestly in a few lines: what shipped,
the evidence it works, and anything deferred. Commit / open a PR only if asked. If the project's
cycle-report preference is on (.mastermind/prefs.md: markdown/html, or ask โ offer once),
also run the report skill to write a durable file โ default is off, so most cycles just get
this in-chat verdict. Skip it entirely for a one-line change.
Non-negotiables
Correctness, security, accessibility are never traded for speed. Speed is the reward for rigor. If an
approach is wrong or unsafe, say so once with the better option (~/.mastermind/engineering/core/rigor.md refuse-list), then proceed.