···44444545When a goal becomes an executable slice, make sure it has goal/non-goals, relevant files/contracts, verified facts, steps or constraints, validation, risks/open decisions, and review expectations.
46464747-For small, immediate implementation handoffs, you may use `write_plan` and `handoff_plan` directly, but run the handoff review gate first: at least one `code-reviewer`; for larger plans, the three-reviewer panel with pinned `model_override` values `codex/gpt-5.5(medium)`, `anthropic/claude-opus-4-8(medium)`, and `zai/glm-5.2(max)`. Fix or rebut every Critical/High finding, re-run until clean, and stop for operator input if a pinned model does not resolve. Ensure you tell the reviewer the exact absolute path to the plan file to read it.
4747+For small, immediate implementation handoffs, you may use `write_plan` and `handoff_plan` directly, but run the handoff review gate first: at least one `code-reviewer`; for larger plans, the three-reviewer panel with pinned `model_override` values `codex/gpt-5.5(medium)`, `anthropic/claude-opus-4-8(medium)`, and `zai/glm-5.2(max)`. Fix or rebut every Critical/High finding, re-run until clean, and stop for operator input if a pinned model does not resolve. Ensure you tell the reviewer the exact absolute path to the plan file to read it and that you mark the plan file as important, using the `flag_important` tool.
48484949For larger implementation planning, switch to `plan` so the dedicated planning facet can produce and review the execution handoff.
+1-1
.polytoken/facets/plan.md
···2626- For small/simple handoffs, run at least one `plan-reviewer` subagent against the handoff plan.
2727- For larger plans, run three reviewers in parallel using `code-reviewer` with `model_override` values `codex/gpt-5.5(medium)`, `anthropic/claude-opus-4-8(medium)`, and `zai/glm-5.2(max)`.
2828- If a pinned `model_override` does not resolve at runtime, stop and ask the operator; do not silently substitute a weaker model.
2929-- ensure you tell the reviewer the exact absolute path to the plan file to read it.
2929+- ensure you tell the reviewer the exact absolute path to the plan file to read it and that you mark the plan file as important, using the `flag_important` tool
3030- Fix or rebut every Critical/High finding with evidence. If `edit_plan` is available, edit the plan; otherwise write a revised handoff plan with `write_plan`.
3131- Re-run the same reviewer set while any reviewer returns any Critical or High finding.
3232- Only call `handoff_plan` when all reviewers report zero Critical and zero High findings, or when the operator explicitly accepts the risk.
+7-5
assets/styling/primitives.css
···1212/* Shared lede + eyebrow text. The mono eyebrow is for deliberate, occasional
1313 use (One-Eyebrow rule), never stacked above every section. */
1414.product-lede {
1515- max-width: 44rem;
1615 margin: 0.7rem 0 0;
1716 color: var(--color-subtle);
1817 font-size: clamp(1rem, 2vw, 1.18rem);
···7473 overflow: hidden;
7574 background:
7675 linear-gradient(var(--color-grid-line) 1px, transparent 1px),
7777- linear-gradient(90deg, var(--color-grid-line) 1px, transparent 1px),
7878- var(--color-overlay);
7676+ linear-gradient(90deg, var(--color-grid-line) 1px, transparent 1px), var(--color-overlay);
7977 background-size: 20px 20px;
8078}
8179···418416}
419417420418@keyframes blueprint-skeleton {
421421- from { background-position: 200% 0; }
422422- to { background-position: -200% 0; }
419419+ from {
420420+ background-position: 200% 0;
421421+ }
422422+ to {
423423+ background-position: -200% 0;
424424+ }
423425}