You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
update(context-v, loops): visual pass on the spec-execution loop — mermaid cycle, status lifecycles, ASCII test ladder, artifact-trail tree
The loop doc now shows itself: a mermaid flowchart of the full per-phase
cycle with both hard-stop exits (red proof; wrong-not-drifted spec), a
stateDiagram of the spec/plan status lifecycles the loop drives, the
six-rung test ladder as an ASCII cost/risk column (humans-only rung
explicitly separated from the scripted ones), and a tree of the four
artifacts + one commit every pass leaves behind, drawn from the proving
run's Phase 2.
Also names the inversion for next time: this one was codified after the
run because no example existed — future loops get their doc BEFORE
execution, using this file as the template.
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_014zrFkWSVgTkoQyiobdBjrd
- "2026-07-22 — v0.0.0.2 — visual pass: mermaid loop cycle + status-lifecycle diagram, ASCII test ladder, per-iteration artifact-trail tree. Written retrospectively from the first run, so the diagrams show what happened, not what was hoped."
14
+
- "2026-07-22 — v0.0.0.1 — initial codification, same day as the proving run."
12
15
tags:
13
16
- Loop
14
17
- Augment-It
@@ -24,6 +27,11 @@ status: Proven-Once
24
27
> `context-v/loops/` is an **experimental** folder (per the context-vigilance
25
28
> skill) and this is its first occupant here. Expect the shape to drift as
26
29
> more loops get codified.
30
+
>
31
+
> This one was codified *retrospectively* — the run came first because there
32
+
> was no example to write against. **Next time, invert it:** author (or
33
+
> update) the loop doc before running, using this file as the template. The
34
+
> doc is the durable definition; the session is the execution.
27
35
28
36
## What this loop is
29
37
@@ -39,6 +47,26 @@ is service/data-layer work (surfaces come after their capabilities — this
39
47
ordering is what makes later phases UI-only and cheap); a proof-script
40
48
convention; the changelog and git-conventions skills.
41
49
50
+
## The loop at a glance
51
+
52
+
```mermaid
53
+
flowchart TD
54
+
SPEC["Spec: Signed-Off,<br/>phases 1..N"] --> PICK["Take next phase"]
55
+
PICK --> PLAN["1 · Author plan<br/>re-ground against LIVE code;<br/>correct spec drift explicitly"]
56
+
PLAN --> IMPL["2 · Implement<br/>from named in-repo templates"]
0 commit comments