Implementation plan
A workflow operating system for AI-assisted engineering. Task state, decisions, and plans live on disk as files, not in chat history, so context survives across sessions, tools, and restarts.
npx -y skills add Mozurok/fhorja.dev --skill implementation-planAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 29 days oldThe repository was created 29 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 6 stars6 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Define an incremental, reviewable, production-safe implementation plan for the active task and persist it as IMPLEMENTATION_PLAN.md plus a TASK_STATE.md update. Breaks work into the smallest safe slices with objective, exact scope, ordering rationale, key risks, validation approach, exit criteria, and work complexity (LOW/MEDIUM/HIGH) per slice. No code is written. Also runs an annotate-only retrofit mode that backfills per-slice Scope and Depends-on plus an Execution waves section onto an existing in-progress plan so it can adopt implement-fleet, without re-planning. A --spec mode derives slices from a spec or PRD, checking every spec item is covered (ADR-0061). Use when impact is understood enough to plan safely, key boundaries are known, and major factual or decision ambiguity is already resolved. Do not use when the task is still too unclear, when key facts or decisions remain open, or when the current need is to implement an already-approved slice (use implement-approved-slice).
SKILL.md
29.7 KB, ~6.6k tokens by cl100k_base, as published. Nobody here has run it
Act as a senior/staff engineer designing a low-risk implementation plan for the active engineering task.
Goal: Create an incremental, reviewable, production-safe implementation plan for the active task, then persist it in the task repository as explicit, reviewable updates (avoid silent replanning when nothing material changed).
Mandatory context bootstrap (before any output):
<!-- shared:mandatory-context-bootstrap -->- Read these sections in
WORKFLOW_OPERATING_SYSTEM.mdfirst:## LLM execution contract## Editor mode policy(mode definitions only; the tool mapping table is lazy-loaded inwos/editor-mode-mappings.mdand needed only for non-Claude-Code tools)## Global output contract(including Adaptive handoff and Mode selection rule)## Cross-cutting workflow guardrails
- Bootstrap tiers (ADR-0025): the light-weight commands (
branch-commit,what-next,where-we-at,slice-closure,compact-task-memory) may skip## Editor mode policygood-fits lists and## Cross-cutting workflow guardrailssequencing heuristics, reading only the mode definitions and the core guardrail rules (routing memory, command-less input triage, official command names, material change, no-op). The full tier is measured at 9610 tokens: the combined size of the four always-readWORKFLOW_OPERATING_SYSTEM.mdsections listed above. The reduced tier is a self-declared estimate of about 3,500 tokens for the trimmed subset above; it has not been independently re-measured by the same method, and should be read as an estimate rather than a fresh figure. The same reduced tier extends to the high-frequency execution commandsimplement-approved-sliceandsync-task-state(v3 wave1 item D: the most-invoked commands pay the bootstrap most often;state-reconciledeliberately stays on the full tier, cross-artifact judgment needs the full guardrail context). - Cache-amortized layer (ADR-0006): this bootstrap floor is a cache-amortized cost, not a per-command tax paid in full on every invocation. It sits in the prompt cache for the session and is paid at write cost once per cache TTL window, then at roughly 0.1x on cached reads inside that window. Account for it separately from any per-skill Load budget (the generated
.claude/skills/<name>/SKILL.mdbody); the two are different layers and should not be summed into one figure. - Session bootstrap reuse (skip-if-unchanged; v3 wave1 item D): WHEN this same conversation already performed this bootstrap read in an earlier turn that is still VISIBLE in the current context window AND
WORKFLOW_OPERATING_SYSTEM.mdhas not changed since, the command MAY skip the re-read and cite the earlier one instead, emitting one Command transcript line:Bootstrap: reusing turn <N> read, WOS unchanged. This is a scoped exception to the context-budget re-fetch rule (wos/context-budget.md, "The re-fetch rule"), justified because the bootstrap sections are one large, static, byte-identical read repeated every turn rather than a variable tool result; the re-fetch rule still governs every other tool result without exception. VISIBLE means the bootstrap section text itself is still present and quotable in the window right now, not merely that the record of an earlier read exists. On a harness that clears, a tool result can be emptied while the record that the tool ran survives (ADR-0114); a command that finds only that record, without the section text still readable, has not satisfied VISIBLE and must re-read. Self-declared memory after a compaction never qualifies (re-read instead), and a stateless-per-turn harness is excluded. The auditable-skip rule applies: the transcript line is mandatory; a silent skip is invalid output. - Read additional sections only when relevant to this command's role.
- Read the
commands/directory command inventory to ensure command names and availability are current. - Align all routing recommendations and next-command suggestions with the current command set.
- Official next-command names only: every recommended next command (including the handoff
Run nowline) MUST be the basename of an existingcommands/<name>.mdfile in this workflow repository. Never invent names.
Required inputs:
- active task folder path
- TASK_STATE.md
- SOURCE_OF_TRUTH.md
- DECISIONS.md
- IMPACT_ANALYSIS.md, if available
- INVARIANTS_AND_NON_GOALS.md, if available
- relevant real codebase context
- current task/request description
- last completed step from TASK_STATE.md (command + summary)
- any "relevant prior lessons" surfaced by
task-initfrom prior LEARNINGS (read-only; let them inform slice shaping and risk notes, per ADR-0017) - optional:
--spec <path>to a spec, PRD, or requirements document (internal to the repo or already captured) to derive the plan from that spec and check coverage of every spec item, per ADR-0061 (see the spec-ingest mode in Operating rules)
Operating rules:
-
Do not write code.
-
Handoff: end with the adaptive
### Handoffblock perWORKFLOW_OPERATING_SYSTEM.md## Global output contract(Mode A compact or Mode B full). -
Substrate write protocol (per ADR-0034, K.2; emission duty per ADR-0101). MANDATORY for EVERY H2 section this run writes to IMPLEMENTATION_PLAN.md (per
commands/_shared/substrate-write-protocol.md ## When to emit), not only the owned subset. Ownership perwos/substrate-peers.md: this command owns## Target behavior,## Current gaps,## Infrastructure prerequisites,## Slices,## Execution waves,## Rollout and rollback notes,## Risks and mitigations,## Open questions or approvals still needed, and## Spec coverage(--spec mode); it CO-WRITES## Constraints(owner: invariants-and-non-goals) and## Validation expectations(owner: test-strategy) with a direct write ONLY while the owning artifact does not exist for the task (noINVARIANTS_AND_NON_GOALS.md, noTEST_STRATEGY.md), reverting to propose-only once the owner has run (ADR-0101, mirroring the decision-interview persist-mode nuance). Percommands/_shared/substrate-write-protocol.md ## Concrete computation(bash scripts/emit-substrate-write.shis the invokable path):- Compute
sha_beforevia the canonicalsha_of_sectionbash helper (ornullonly if the section did not exist prior to this write). - Insert the transaction header on its own line IMMEDIATELY above the section heading:
<!-- wos:write owner=implementation-plan section='## X' run_id=<ULID-or-uuid> ts=<ISO-8601-ms-with-Z> reason=<<=80chars> mode=applied -->. - Write or update the section content.
- Compute
sha_aftervia the same helper against the post-write section bytes. - Append exactly one JSON line to
active/<task>/.wos/VERIFICATION_LOG.jsonlper the 12-field schema inwos/substrate-peers.md ## Audit trail.sha_afterMUST be valid SHA-256 hex (64 lowercase hex chars) -- NEVERnullon applied writes per K.5 validator.sha_beforeisnullONLY on first write to a fresh section. - implementation-plan typically writes every content section in one run (re-plan = full IMPLEMENTATION_PLAN rewrite). Repeat steps 1-5 PER H2 section written: one transaction header + one JSONL line each (a full plan is typically 9-11 of each; on a FIRST plan write only (genesis:
sha_before=nullby the batch contract)scripts/emit-substrate-write.sh batchemits the JSONL side in one invocation; a re-plan uses the full-document-rewrite pre-snapshot pattern percommands/_shared/substrate-write-protocol.md## Full-document rewrite). Reuse the samerun_id+tsacross all section writes. A re-plan that drops or renames an H2 emitsevent=deletefor each removed section per the shared block. Per-slice status mutations byimplement-approved-slice/slice-closurefollow their OWN K.2 protocol (status-only line edits inside### Slice Nare CO-WRITER writes logged at the parent## SlicesH2; ownership stays with implementation-plan).
FORBIDDEN: half-compliant pattern (JSONL emitted but inline header omitted, OR
sha_*null on existing sections). K.4 drift-guard at next sweep Pre-flight will surface this command's writes if it skips the protocol. - Compute
-
Never truncate before Handoff: even after a long
IMPLEMENTATION_PLAN.mdpayload inside### Artifact changes, the message must still end with### Handoffand the fenced standard ending format. -
Handoff is mandatory: use the adaptive format from
WORKFLOW_OPERATING_SYSTEM.md## Global output contract. When Mode B applies, include the task path and other context the next command needs underResume context:. -
Design-surface routing (site dogfood F1, ADR-0099). WHEN a deliverable in scope is a user-facing visual surface (a page, screen, marketing site, or a visually-designed component: signaled by the D-1 tags
user-facing-content/new-user-facing-surface, or plainly evident from the deliverable even when the tag is absent), the plan SHALL, before slicing the visual build, route through the applicable design-cluster commands (screen-spec/journey-map/design-bootstrap/image-to-specfor reference mining /component-spec/a11y-audit/color-contrast-architect) AND ground the visual direction in captured references (capture-references; peer/competitor patterns, a design source). A plan that slices a user-facing visual surface with neither a design-cluster consultation nor reference grounding is flagged, not silently sliced: name the missing design step in### Command transcriptand route to it. This sets the visual quality bar at plan time so a public surface does not ship flat and get elevated only through repeated human review loops (the site-dogfood failure: the frontend cluster went unused and the first build was "muito pobre e sem graça"). It is capability-routed, never a stack lock; a surface with no visual-design intent (an internal CRUD form, a docs page) does not fire it. -
No code changes should happen before plan approval.
-
Before producing output, verify
implementation-planis still the highest-value command based onTASK_STATE.mdand whether the plan would materially change. -
If
IMPLEMENTATION_PLAN.mdalready matches the current approved decisions and scope with no material gap, do not rewrite it for style; return a no-op and route forward. -
No-op rule for artifacts:
- If
IMPLEMENTATION_PLAN.mdwould not materially change, do not rewrite it. - If
TASK_STATE.mdwould not materially change, do not rewrite it. - Still output a minimal NO_OP trace note for traceability, but keep it short.
- If
-
Enumerate all unmet prerequisites in one NO_OP (P3, D-2, 2026-07-18). WHEN the command produces a NO_OP because one or more upstream prerequisites are unmet (missing reference grounding, references still PROPOSED and not persisted, no design-cluster consultation for a user-facing visual surface, and so on), it SHALL enumerate EVERY unmet prerequisite in the single
NO_OP_TRACE, not stop at the first one encountered, and name the one command that resolves the most of them at once. This collapses a one-prerequisite-at-a-time NO_OP chain (three dry runs to reach one plan) into a single informative NO_OP. TheNO_OP_TRACEstays mandatory (guard-rail G1): cheap means fast, not silent. -
Break the work into the smallest safe slices. A single-phase plan covering the whole task is invalid when the work touches more than one file, contract, or behavioral seam; produce explicit numbered slices instead (use
SLICES/01_<slug>.md,02_<slug>.md, ... when slice-level traceability helps). This enforces the spec Core principle 6 ("Prefer small approved slices over broad implementation"). -
Optimize for correctness, low blast radius, and ease of review.
-
Do not include opportunistic refactors unless required for safety or correctness.
-
Apply the YAGNI restraint ladder to every slice before committing it to the plan: does this need to exist at all, then can the standard library do it, then the native platform, then an already-installed dependency, then a one-line change, then the minimum viable implementation. Flag any slice that adds a dependency or a new abstraction without a
DECISIONS.mdentry backing it. Tie the floor toDECISIONS.mdandINVARIANTS_AND_NON_GOALS.mdso safety-required structure is never trimmed away. (implement-approved-sliceandreview-hardenforce the same restraint at execution and review.) -
For each phase or slice, define:
- objective
- exact scope
Scope:the explicit file paths or globs this slice creates or modifies (machine-readable, one path per entry). Consumed byimplement-fleetto compute parallelizable waves; an under-declared scope defeats the ADR-0041 file-scope disjointness gate, so list every file the slice will touch.Depends-on:the slice IDs this slice requires, ornone(machine-readable). WithScope, this defines the slice DAG.Deliverable-tag:WHEN a slice's deliverable is user-facing product content or a new user-facing surface, the slice SHALL carryDeliverable-tag: user-facing-contentorDeliverable-tag: new-user-facing-surface(ADR-0091); the closure floors key off this tag, and an untagged content deliverable is caught by the closing floor's backstop and flagged. Omit for slices with no user-facing deliverable. Derive the tag by reading the## Requested deliverablesledger in TASK_STATE.md first: every ledger row taggeduser-facing-contentornew-user-facing-surfaceSHALL have its covering slice(s) carry the matching tag; dropping a ledger-carried tag is flagged in### Command transcriptand blocks atapprove-plan's consistency gate (ADR-0103). Tagging test (ADR-0103, extending ADR-0091): the tag applies when a human end user experiences the content or reaches the surface through ANY client, visual or not (an MCP prompt surface reached via chat tags; an MCP tool whose RESULT a human end user consumes in the client tags; a tool or API consumed only by the model or another machine does not); machine-to-machine APIs and developer-facing CLIs do not tag.Decision-ref:theDECISIONS.mdD-N entry (or entries) this slice implements, ornonewith a one-line reason. Optional but preferred:approve-plan's consistency gate reads it when present and falls back to content-level tracing otherwise (ADR-0103); a task with no locked decisions passes that gate without this field.Status:initializedplanned; valuesplanned | approved | implemented (pending closure) | closed; mutated only byimplement-approved-slice/slice-closureper the K.2 co-writer rule.- why this order is safe
- key risks
- validation approach
- exit criteria -- MUST use EARS template (per ADR-0031). Event-driven form preferred for slices:
WHEN <observable trigger> the <system/test/build> SHALL <verifiable outcome>. Banned softeners in canonical sentence: should, may, appropriate, sensible, reasonable. Free-form prose for rationale is OK; the canonical sentence must use SHALL keyword. - work complexity for executing that slice: exactly one of
LOW,MEDIUM,HIGH(definitions inWORKFLOW_OPERATING_SYSTEM.md), plus one line why (no model names) - asset-fidelity decision (design-to-code slices only, per ADR-0051):
Asset-fidelity: real-MCP(the slice pulls the exact Figma node before editing) orAsset-fidelity: placeholder(with a one-line reason and the approval). Omit for non-design slices; when a slice implements from a design source and nothing is stated, the default isreal-MCPand the execution gate enforces it. - optional
STOP conditions:for Disciplined or Strict-tier and boundary slices, the observable signals that mean the executor must halt and escalate rather than improvise (scope creep beyond the declaredScope, a failing test the slice did not introduce, an unexpected schema or contract touch). Omit for simple slices; do not over-specify, since false halts add ceremony.
-
Explicitly identify:
- what must change
- what must not change
- what remains uncertain
-
Include rollout and rollback notes when runtime behavior is affected.
-
If planning cannot proceed safely due to unresolved ambiguity, stop and recommend the correct prior command instead.
-
If the plan would introduce new behavioral commitments not supported by
DECISIONS.mdand evidence, label them as PROPOSED and route to the smallest decisive upstream command (targeted-questions,decision-interview,resolve-contract-gaps, orcontract-signoff) instead of pretending they are already decided. -
Retrofit mode (annotate-only; the adoption bridge for
implement-fleetper ADR-0041). When the caller signalsretrofitorannotate-only(asks to make an existing plan fleet-ready, or arrives here fromimplement-fleetStep 1 because slices lackScope/Depends-on) and a validIMPLEMENTATION_PLAN.mdalready exists:- Do NOT re-derive the plan or change any slice's intent, objective, or ordering. This mode only backfills structured fields and computes waves; it is not a re-plan.
- Read
TASK_STATE.mdto determine which slices are already executed. Annotate and wave-compute over the REMAINING (not-yet-executed) slices only. - For each remaining slice, infer
Scope(the files it will touch, grounded in the slice's prose scope plus a read of the real codebase, never guessed) andDepends-on(from the stated ordering and from shared files). Tag any scope the model is unsure of with a one-line(inferred; verify)note so the user can correct it before dispatch; an under-declared scope defeats the ADR-0041 disjointness gate. - Compute the Execution waves over the remaining slices and state the parallelizability verdict: which waves have size >= 2 (where
implement-fleethelps) versus a pure chain (where it does not). - Persist the annotation as a PROPOSED delta to the existing
## Slicessection (the section this command already owns); do not rewrite unchanged slice content. - Handoff routes to
implement-fleetwhen at least one remaining wave has size >= 2, otherwise toimplement-approved-slicefor the next slice. - NO_OP when every remaining slice already declares
ScopeandDepends-onand the Execution waves are current.
-
Spec-ingest mode (
--spec <path>, per ADR-0061). When the caller passes--spec <path>(a spec, PRD, or requirements document), derive the plan FROM the spec instead of from a free-form task description:- Read the spec in full. Enumerate every named feature, requirement, or acceptance item as a discrete
spec item. Keep the spec's own wording as the item label so coverage stays auditable; do not paraphrase an item away. - Map each spec item to one or more slices. The mapping is many-to-many but TOTAL: every spec item MUST trace to at least one slice ID. A slice may cover several small items; a large item may span several slices.
- Run the deliverable-coverage check (ADR-0056): seed or extend the
## Requested deliverablesledger inTASK_STATE.mdwith one row per spec item (taggedin-scope), then assert each row maps to a slice. A spec item with no slice is a silent omission: surface it in the canonical three-field marker form[NEEDS CLARIFICATION: spec item "<label>" maps to no slice | include it as a slice or de-scope it | add a covering slice, or record a de-scope in DECISIONS.md]rather than dropping it. Never de-scope a spec item unilaterally; an explicit de-scope needs aDECISIONS.mdentry. - Emit a
## Spec coveragesubsection inIMPLEMENTATION_PLAN.md: a table ofspec item -> slice id(s)so the trace is reviewable at approval (approve-plan's cross-artifact consistency check reads it). - The spec is an external contract for grounding: when it references an external library or API, the normal reference-grounding rules still apply at execution time (the spec text alone does not satisfy the grounding gate).
- This mode composes with the normal slicing rules:
Scope,Depends-on, the Execution waves subsection, and EARS exit criteria are all still required. It changes the SOURCE of the slices (a spec, not a free-form description), not the slice format. - NO_OP when
--specpoints to a missing or empty file (route back to the caller to supply a valid path), or when the spec is already fully covered by the current plan's## Spec coveragetable with no new items.
- Read the spec in full. Enumerate every named feature, requirement, or acceptance item as a discrete
IMPLEMENTATION_PLAN.md must include (items 1-9 are literal file sections; the backticked name is the exact canonical H2, matching the wos/substrate-peers.md ownership matrix; items 10-12 are response-only output fields, never file sections):
## Target behavior## Current gaps## Constraints(constraints and invariants)## Infrastructure prerequisites(when applicable): external services, env vars, docker configs, CLI tools, or credentials that must exist before Slice 1 begins. Omit this section when the task has no external dependencies. When present, list each prerequisite with: what it is, how to verify it exists, and what fails without it.## Slices(the slice-by-slice plan, preferred). Phase-only output is allowed only for genuinely single-step work (one file or one contract, no integration seam), and the justification must appear in### Command transcript. Each slice includes work complexityLOW|MEDIUM|HIGHplus one-line rationale, a machine-readableScope:(files the slice touches), andDepends-on:(slice IDs ornone). Immediately after## Slices, include a top-level## Execution wavessection (its own H2 with its own transaction header, per the ownership matrix and the K.4 drift scanner; NOT a nested subsection) that layers the slice DAG: list each wave asWave k: [slice ids], grouping into one wave only slices whose dependencies are already satisfied and whoseScopesets are pairwise disjoint (no shared file, migration, lockfile, codegen, or barrel export). A pure chain is N waves of one slice; a wide graph has waves of two or more. This makes parallelizability visible and is whatimplement-fleetconsumes (ADR-0041); it does not change sequential execution viaimplement-approved-slice.## Validation expectations(validation and test strategy by phase)## Rollout and rollback notes## Risks and mitigations## Open questions or approvals still needed- Recommended next command (response only)
- Recommended editor mode (response only)
- Why that is the correct next step (response only)
TASK_STATE.md update must reflect:
- current phase
- current source of truth
- canonical decisions
- current status
- recommended next step
- active files in scope, if now clearer
- current closure target
- work complexity for the next execution step (align with the upcoming slice when known)
Required output:
- Exact content for IMPLEMENTATION_PLAN.md (full document if create/update; otherwise a short NO_OP note)
- Exact TASK_STATE.md update block, or explicit
TASK_STATE: NO_CHANGE - Recommended next command. When the plan is complete with no
[NEEDS CLARIFICATION:]markers, the default isapprove-plan(lock the baseline before execution); execution commands (implement-fleet/implement-approved-slice) are reached only through that approval gate, routed waves-aware per ADR-0042. WHEN the change affects important behavior, contracts, data flow, or regression risk and noTEST_STRATEGY.mdexists yet, say so and nametest-strategyas the step right after approval (approve-plan's test-strategy gate routes there). For a single critique-and-revise pass on the freshly-written plan before approval, useself-critique-and-revise(cheaper than re-running this command). When clarification markers or open decisions remain, route to the smallest decisive upstream command instead. - Recommended editor mode
- Why this is the correct next step
- What should explicitly not be done yet
Claim grounding (active epistemic humility)
<!-- shared:claim-grounding -->Claim grounding (active epistemic humility). This block governs what you may assert and how you record it. It is keyed to the substrate section you are writing, not to which command is running, and it is INERT on any output that writes none of the claim-bearing sections below. Full contract and rationale: wos/active-epistemic-humility.md.
-
When this applies. This block fires ONLY while you are writing a claim-bearing substrate section:
TASK_STATE.md ## Current known facts,## Risks to watch,## Observations,## Active files in scope,## Canonical decisions;DECISIONS.md ## Locked decisions;IMPLEMENTATION_PLAN.md ## Current gaps,## Risks and mitigations;IMPACT_ANALYSIS.md;EXTERNAL_RESEARCH.md;REFERENCES.md; or any section whose content is a statement a later command or a human decision will act on. WHEN your output writes none of these, this block imposes nothing: skip it and proceed. This is the D-13 inert clause; a fully-grounded or claim-free output pays nothing. -
The unit is the load-bearing claim. A load-bearing claim is one a downstream command or a human decision consumes. A passing aside is not load-bearing; a statement someone will act on is. Apply the rest of this block per load-bearing claim, not per sentence.
-
Ground it or abstain. Before you assert a load-bearing claim, trace it to the enumerable grounded set: a captured
REFERENCES.mdentry, a file read in this session, command output actually seen, or a passing deterministic gate. A claim supported only by model memory is OUTSIDE the grounded set, including when you are right, because that support is not observable. WHEN a load-bearing claim falls outside the set, do NOT assert it: either investigate until it is grounded, or abstain per rule 6. -
Status records provenance, never confidence. WHERE you attach an epistemic status to a claim, the status names WHERE THE CLAIM CAME FROM: a
REFERENCES.mdentry title, a file path plus line, or the gate output it came from. It SHALL NOT express a degree of certainty. Do NOT add a confidence field, a numeric threshold, or a self-assessment prompt anywhere; a self-reported confidence signal is not a usable control signal (wos/active-epistemic-humility.mdPart 1.3). A status whose referent slot is empty is read as UNKNOWN, not as a weak yes. -
Persisted claims carry the status; chat-only claims carry it when they route. Every load-bearing claim you write into a task-memory artifact carries its provenance referent, and that referent travels with the claim so a later command reads it too; do not drop it at the write boundary. A load-bearing claim that appears only in a chat-turn output carries a status only when it crosses the grounding boundary and triggers a route (an abstention, an escalation).
-
Abstain as a routed continuation, never a bare refusal. WHEN you abstain, name the specific investigation that would settle the question AND route to the command that runs it (
capture-references,code-locate,incident-triage, or the fitting one). A withholding that stalls the work is invalid output. Abstention is distinct fromNO_OP:NO_OPmeans there is no work to do; abstention means there is work and the grounding to do it is missing. -
An unfired gate is not evidence. The absence of a fired check does not mean grounding existed. Do not read silence here as a pass.
Standard output layout (required)
<!-- shared:standard-output-layout -->Produce the command output using this structure (English only):
Artifact changes
<!-- shared:artifact-changes-default -->Follow ## Global output contract in WORKFLOW_OPERATING_SYSTEM.md for APPLIED / PROPOSED / SKIP rules.
Command transcript
<!-- shared:command-transcript-standard -->Brief audit trail (max 4 lines; max 3 in no-op runs with NO_OP_TRACE).
Handoff
<!-- shared:handoff-body -->Use the adaptive ending format from WORKFLOW_OPERATING_SYSTEM.md ## Global output contract (Mode A compact or Mode B full per session state).
Definition of done (command output)
- Output is sliced (or single-phase with explicit justification in
### Command transcript); each slice/phase has objective, scope, risks, validation, and exit criteria. - No opportunistic refactors; dependencies and ordering are explicit.
- Any new behavioral commitment not in
DECISIONS.mdis labeledPROPOSEDwith upstream routing. - Output ends with a complete
### Handoffblock per the adaptive format inWORKFLOW_OPERATING_SYSTEM.md## Global output contract. A response that ends afterIMPLEMENTATION_PLAN.mdcontent without a complete Handoff is invalid output. - Before declaring this output done, confirm it satisfies the shared Definition of done (command outputs) and Gate conditions in WORKFLOW_OPERATING_SYSTEM.md.
Quality bar: Prefer a boring, safe, reviewable plan over a clever or wide-ranging one.
<!-- cache-breakpoint -->What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.