devrites 4.2.0 → 4.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +1 -1
- package/docs/cli.md +15 -0
- package/docs/engine/commands.md +20 -2
- package/docs/orchestration.md +6 -3
- package/engine/commands.go +1 -1
- package/engine/internal/lib/cli_observe.go +66 -0
- package/engine/internal/lib/observe_summary.go +79 -0
- package/engine/internal/lib/open_visual.go +254 -0
- package/engine/internal/lib/open_visual_test.go +280 -0
- package/engine/internal/lib/skilltrust.go +196 -0
- package/engine/internal/lib/taskgraph.go +162 -0
- package/engine/internal/lib/taskgraph_test.go +150 -0
- package/engine/internal/lib/visual_outline.go +163 -0
- package/engine/internal/lib/visual_outline_test.go +161 -0
- package/engine/internal/lib/workspace_read.go +29 -0
- package/engine/internal/parallel/cli.go +467 -0
- package/engine/internal/parallel/git.go +181 -0
- package/engine/internal/parallel/lease.go +244 -0
- package/engine/internal/parallel/ops.go +416 -0
- package/engine/internal/parallel/parallel_test.go +242 -0
- package/engine/internal/parallel/pathdisjoint.go +129 -0
- package/engine/internal/parallel/pathdisjoint_test.go +97 -0
- package/engine/internal/state/status.go +41 -16
- package/engine/main.go +76 -3
- package/engine/root_routing_test.go +50 -15
- package/engine/testdata/visual/open-visual-smoke.html +675 -0
- package/engine/testdata/visual/open-visual-smoke.outline.md +54 -0
- package/pack/.claude/skills/devrites-lib/SKILL.md +2 -0
- package/pack/.claude/skills/devrites-lib/reference/standards/skill-authoring.md +22 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/code.md +46 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/comparison.md +44 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/diagram.md +53 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/index.md +57 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/input.md +47 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/outline-template.md +106 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/plan.md +49 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/slides.md +42 -0
- package/pack/.claude/skills/devrites-lib/reference/visual-playbooks/table.md +44 -0
- package/pack/.claude/skills/devrites-lib/reference/workspace-artifact-schema.md +24 -9
- package/pack/.claude/skills/rite-build/SKILL.md +29 -36
- package/pack/.claude/skills/rite-build/reference/afk-discipline.md +19 -25
- package/pack/.claude/skills/rite-build/reference/checkpoint-protocol.md +29 -59
- package/pack/.claude/skills/rite-build/reference/one-slice-cycle.md +8 -3
- package/pack/.claude/skills/rite-build/reference/output.md +2 -0
- package/pack/.claude/skills/rite-build/reference/parallel-batch.md +64 -0
- package/pack/.claude/skills/rite-build/reference/phase-contract.md +6 -5
- package/pack/.claude/skills/rite-build/reference/wright-dispatch.md +7 -3
- package/pack/.claude/skills/rite-clarify/reference/anti-patterns.md +24 -0
- package/pack/.claude/skills/rite-customize/SKILL.md +3 -2
- package/pack/.claude/skills/rite-define/SKILL.md +10 -1
- package/pack/.claude/skills/rite-doctor/SKILL.md +5 -1
- package/pack/.claude/skills/rite-explain/SKILL.md +23 -7
- package/pack/.claude/skills/rite-explain/reference/intake.md +11 -2
- package/pack/.claude/skills/rite-plan/reference/dependency-graph.md +3 -0
- package/pack/.claude/skills/rite-spec/reference/spec-template.md +5 -2
- package/pack/.claude/skills/rite-spec/reference/state-workspace.md +26 -3
- package/pack/generated/claude/skills/devrites-lib/SKILL.md +2 -0
- package/pack/generated/claude/skills/devrites-lib/reference/standards/skill-authoring.md +22 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/code.md +46 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/comparison.md +44 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/diagram.md +53 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/index.md +57 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/input.md +47 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/outline-template.md +106 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/plan.md +49 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/slides.md +42 -0
- package/pack/generated/claude/skills/devrites-lib/reference/visual-playbooks/table.md +44 -0
- package/pack/generated/claude/skills/devrites-lib/reference/workspace-artifact-schema.md +24 -9
- package/pack/generated/claude/skills/rite-build/SKILL.md +29 -36
- package/pack/generated/claude/skills/rite-build/reference/afk-discipline.md +19 -25
- package/pack/generated/claude/skills/rite-build/reference/checkpoint-protocol.md +29 -59
- package/pack/generated/claude/skills/rite-build/reference/one-slice-cycle.md +8 -3
- package/pack/generated/claude/skills/rite-build/reference/output.md +2 -0
- package/pack/generated/claude/skills/rite-build/reference/parallel-batch.md +64 -0
- package/pack/generated/claude/skills/rite-build/reference/phase-contract.md +6 -5
- package/pack/generated/claude/skills/rite-build/reference/wright-dispatch.md +7 -3
- package/pack/generated/claude/skills/rite-clarify/reference/anti-patterns.md +24 -0
- package/pack/generated/claude/skills/rite-customize/SKILL.md +3 -2
- package/pack/generated/claude/skills/rite-define/SKILL.md +10 -1
- package/pack/generated/claude/skills/rite-doctor/SKILL.md +5 -1
- package/pack/generated/claude/skills/rite-explain/SKILL.md +23 -7
- package/pack/generated/claude/skills/rite-explain/reference/intake.md +11 -2
- package/pack/generated/claude/skills/rite-plan/reference/dependency-graph.md +3 -0
- package/pack/generated/claude/skills/rite-spec/reference/spec-template.md +5 -2
- package/pack/generated/claude/skills/rite-spec/reference/state-workspace.md +26 -3
- package/pack/generated/codex/skills/devrites-lib/SKILL.md +2 -0
- package/pack/generated/codex/skills/devrites-lib/reference/standards/skill-authoring.md +22 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/code.md +46 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/comparison.md +44 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/diagram.md +53 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/index.md +57 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/input.md +47 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/outline-template.md +106 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/plan.md +49 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/slides.md +42 -0
- package/pack/generated/codex/skills/devrites-lib/reference/visual-playbooks/table.md +44 -0
- package/pack/generated/codex/skills/devrites-lib/reference/workspace-artifact-schema.md +24 -9
- package/pack/generated/codex/skills/rite-build/SKILL.md +29 -36
- package/pack/generated/codex/skills/rite-build/reference/afk-discipline.md +19 -25
- package/pack/generated/codex/skills/rite-build/reference/checkpoint-protocol.md +29 -59
- package/pack/generated/codex/skills/rite-build/reference/one-slice-cycle.md +8 -3
- package/pack/generated/codex/skills/rite-build/reference/output.md +2 -0
- package/pack/generated/codex/skills/rite-build/reference/parallel-batch.md +64 -0
- package/pack/generated/codex/skills/rite-build/reference/phase-contract.md +6 -5
- package/pack/generated/codex/skills/rite-build/reference/wright-dispatch.md +7 -3
- package/pack/generated/codex/skills/rite-clarify/reference/anti-patterns.md +24 -0
- package/pack/generated/codex/skills/rite-customize/SKILL.md +3 -2
- package/pack/generated/codex/skills/rite-define/SKILL.md +10 -1
- package/pack/generated/codex/skills/rite-doctor/SKILL.md +5 -1
- package/pack/generated/codex/skills/rite-explain/SKILL.md +23 -7
- package/pack/generated/codex/skills/rite-explain/reference/intake.md +11 -2
- package/pack/generated/codex/skills/rite-plan/reference/dependency-graph.md +3 -0
- package/pack/generated/codex/skills/rite-spec/reference/spec-template.md +5 -2
- package/pack/generated/codex/skills/rite-spec/reference/state-workspace.md +26 -3
- package/package.json +1 -1
- package/scripts/install-lib.sh +1 -1
|
@@ -1,29 +1,22 @@
|
|
|
1
1
|
# Checkpoint protocol: what `$rite-build` does when a slice is HITL
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
surfaces the checkpoint as a ranked **option set** and resolves it **before** any code lands:
|
|
3
|
+
HITL slices pause **pre-action** as a ranked **option set** before any code:
|
|
5
4
|
|
|
6
|
-
- **
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
`state.md` `Awaiting human`), fire the `notify:` hook, and **stop**. Resume later via
|
|
11
|
-
`$rite-resolve` (or `--batch`).
|
|
12
|
-
|
|
13
|
-
Either way the pause is **pre-action**, not post-action: code never lands before the gate.
|
|
5
|
+
- **Interactive:** `AskUserQuestion`; record to `questions.md`/`decisions.md`; clear gate;
|
|
6
|
+
continue in place (no `$rite-resolve` round-trip).
|
|
7
|
+
- **Absent / AFK / notify-only:** persist open question + `Awaiting human`, notify, **stop**.
|
|
8
|
+
Resume via `$rite-resolve` (or `--batch`).
|
|
14
9
|
|
|
15
10
|
## Render contract
|
|
16
11
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
the persisted form is for the next session or the AFK observer.
|
|
12
|
+
Render the checkpoint in user-facing output **and** persist it for the next session / AFK
|
|
13
|
+
observer.
|
|
20
14
|
|
|
21
15
|
### User-facing render: the option set
|
|
22
16
|
|
|
23
|
-
Present
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
plus the escape hatch. The header names the slice + gate:
|
|
17
|
+
Present as `AskUserQuestion` ranked **option set** (`afk-hitl.md`): 2–4 options,
|
|
18
|
+
recommended first + `(Recommended)`, dimension-tagged trade-offs, plus escape hatch.
|
|
19
|
+
Header names slice + gate:
|
|
27
20
|
|
|
28
21
|
```
|
|
29
22
|
Slice <N — name> — HITL (<gate>, SLA <SLA>). <Checkpoint text from tasks.md>
|
|
@@ -35,12 +28,9 @@ Slice <N — name> — HITL (<gate>, SLA <SLA>). <Checkpoint text from tasks.md>
|
|
|
35
28
|
4. Something else — I'll describe it
|
|
36
29
|
```
|
|
37
30
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
(its conventions, stack, scale), not a generic default. On an interactive pick, resolve in
|
|
42
|
-
place; when persisting a pause instead, the same set is written to `questions.md` `options:`
|
|
43
|
-
and the resume line is `$rite-resolve <qid> "<answer>"` (or `--drop <qid> "<reason>"`).
|
|
31
|
+
Option #1 (recommended) is **required** and must reflect *this* project. Interactive pick →
|
|
32
|
+
resolve in place; pause → persist the same set to `questions.md` `options:` with resume
|
|
33
|
+
`$rite-resolve <qid> "<answer>"` (or `--drop <qid> "<reason>"`).
|
|
44
34
|
|
|
45
35
|
### Workspace mutations
|
|
46
36
|
|
|
@@ -93,9 +83,7 @@ rewrite; do not claim cross-file atomicity):
|
|
|
93
83
|
sh -c "$notify_cmd"
|
|
94
84
|
```
|
|
95
85
|
|
|
96
|
-
|
|
97
|
-
that already records the pause. Failures in the hook **do not** roll back the pause:
|
|
98
|
-
the gate is authoritative; the notification is best-effort.
|
|
86
|
+
Fire after workspace write. Hook failure does **not** roll back the pause (best-effort).
|
|
99
87
|
|
|
100
88
|
## qid generation
|
|
101
89
|
|
|
@@ -109,42 +97,24 @@ reservation or engine command for qids.
|
|
|
109
97
|
|
|
110
98
|
## When AFK is active
|
|
111
99
|
|
|
112
|
-
If `.devrites/AFK` exists and the slice
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
`evidence.md`), not per slice. The `built (pending review)` slice is not done until the
|
|
122
|
-
open `validating` gate resolves via `$rite-resolve`; an open `validating` gate is a
|
|
123
|
-
NO-GO at seal.
|
|
124
|
-
|
|
125
|
-
For gates in `allow_gates`, AFK **auto-picks the recommended option** (option 1 of the set)
|
|
126
|
-
instead of pausing, recording it as above. For `blocking` and `escalating` (and every
|
|
127
|
-
irreversible-risk item), AFK **always** invokes the checkpoint protocol: the sentinel does
|
|
128
|
-
not unlock these gates and no AFK key can override them. See `afk-discipline.md`
|
|
129
|
-
for the irreversible-risk list.
|
|
100
|
+
If `.devrites/AFK` exists and the slice `Gate` is in `allow_gates`, skip this protocol and
|
|
101
|
+
auto-pick recommended option 1:
|
|
102
|
+
|
|
103
|
+
- `advisory`: log `gate: advisory` + `decisions.md`, then dispatch wright.
|
|
104
|
+
- `validating` (only if allowed): dispatch wright; on return log `gate: validating`, mark
|
|
105
|
+
`built (pending review)`, continue. Slice states remain `pending|built`; feature
|
|
106
|
+
acceptance is `$rite-prove`. Open `validating` is NO-GO at seal until `$rite-resolve`.
|
|
107
|
+
|
|
108
|
+
`blocking` / `escalating` / irreversible-risk always use this protocol (`afk-discipline.md`).
|
|
130
109
|
|
|
131
110
|
## Multi-question pauses
|
|
132
111
|
|
|
133
|
-
|
|
134
|
-
checkpoints, split it into sub-slices via `$rite-plan reslice` so each pause is
|
|
135
|
-
single-question. Multi-question pauses are reserved future shape; `Awaiting human` is
|
|
136
|
-
written as a single block.
|
|
112
|
+
**One question per pause.** Multiple HITL checkpoints → `$rite-plan reslice`.
|
|
137
113
|
|
|
138
114
|
## What NOT to do
|
|
139
115
|
|
|
140
|
-
-
|
|
141
|
-
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
explicit answer: the agent doesn't confirm its own `proposed:` on resume. This is distinct
|
|
146
|
-
from the two legitimate auto-resolutions: an interactive `AskUserQuestion` pick the human
|
|
147
|
-
just made, and an AFK auto-pick of the recommended option on a gate `allow_gates` permits.
|
|
148
|
-
- **Don't bundle the `notify:` hook output into chat.** Fire-and-forget; the chat already
|
|
149
|
-
has the user-facing render.
|
|
150
|
-
- **Don't fire `notify:` on `advisory`-downgraded entries.** It's reserved for true pauses.
|
|
116
|
+
- Don't write code then pause — pre-action only.
|
|
117
|
+
- Don't render without persisting `state.md` + `questions.md`.
|
|
118
|
+
- Don't self-answer a human pause via `proposed:` — `$rite-resolve` needs an explicit
|
|
119
|
+
answer (distinct from interactive pick / AFK auto-pick on `allow_gates`).
|
|
120
|
+
- Don't put `notify:` output in chat; don't fire `notify:` on advisory-only entries.
|
|
@@ -3,11 +3,14 @@
|
|
|
3
3
|
One wright dispatch builds one thin, proven slice. HITL stops; only explicit
|
|
4
4
|
`.devrites/AFK` lets the controlling root chain another pending slice under the
|
|
5
5
|
green-proof, cap, and pause rules. Each wright returns after exactly one slice.
|
|
6
|
+
Opt-in fan-out: [`parallel-batch.md`](parallel-batch.md) (`--parallel N`); this is default.
|
|
6
7
|
|
|
7
8
|
## The cycle
|
|
9
|
+
|
|
8
10
|
The orchestrator (`$rite-build`) gates and records; the **wright** writes. See
|
|
9
11
|
[`wright-dispatch.md`](wright-dispatch.md).
|
|
10
|
-
|
|
12
|
+
|
|
13
|
+
```text
|
|
11
14
|
SELECT → orchestrator: restate slice goal + acceptance + scope boundary; HITL gate (pause pre-code)
|
|
12
15
|
(SHAPE) → orchestrator: missing UI design-brief.md → shape it, then $rite-vet before dispatch
|
|
13
16
|
DISPATCH → hand the slice contract to devrites-slice-wright (fresh context). Inside the wright:
|
|
@@ -25,14 +28,16 @@ NEXT → HITL root reports and stops; AFK root may repeat only under afk-di
|
|
|
25
28
|
```
|
|
26
29
|
|
|
27
30
|
## Why the boundary matters
|
|
28
|
-
|
|
29
|
-
|
|
31
|
+
|
|
32
|
+
Reviewable diffs, early drift signal, HITL decision point, no unproven pile-ups.
|
|
30
33
|
|
|
31
34
|
## Restate the scope boundary
|
|
35
|
+
|
|
32
36
|
Before coding, write what this slice will and will **not** touch. This is the contract
|
|
33
37
|
you check yourself against: anything outside it is scope creep or a drift event.
|
|
34
38
|
|
|
35
39
|
## When the slice can't be completed cleanly
|
|
40
|
+
|
|
36
41
|
- Discovered the plan is wrong → **Spec Drift Guard** (stop, record, classify, maybe
|
|
37
42
|
ask, `$rite-plan` repair).
|
|
38
43
|
- Slice is bigger than one cycle → stop and `$rite-plan reslice`.
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
# rite-build output
|
|
2
2
|
|
|
3
3
|
**Slices remain:**
|
|
4
|
+
|
|
4
5
|
```text
|
|
5
6
|
Done: built slice <n> — <name>.
|
|
6
7
|
Changed: <files>; state.md, touched-files.md, evidence.md
|
|
@@ -12,6 +13,7 @@ Record: .devrites/work/<slug>/evidence.md
|
|
|
12
13
|
```
|
|
13
14
|
|
|
14
15
|
**All built:**
|
|
16
|
+
|
|
15
17
|
```text
|
|
16
18
|
Done: built slice <n> — <name>; all slices built.
|
|
17
19
|
Changed: <files>; state.md, touched-files.md, evidence.md
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Parallel batch (`--parallel N`)
|
|
2
|
+
|
|
3
|
+
Opt-in only. Default `$rite-build` stays [`one-slice-cycle.md`](one-slice-cycle.md).
|
|
4
|
+
|
|
5
|
+
## Entry
|
|
6
|
+
|
|
7
|
+
| Input | Behavior |
|
|
8
|
+
| --- | --- |
|
|
9
|
+
| omitted / `--parallel 1` | Serial one-slice |
|
|
10
|
+
| `--parallel N` (**2≤N≤3**) | Parallel when eligible + host pass |
|
|
11
|
+
| non-integer / `N≤0` / `N>3` | Hard refuse (no silent clamp) |
|
|
12
|
+
|
|
13
|
+
AFK caps `N` by remaining budget. Charge **only after successful integrate**
|
|
14
|
+
(once per integrated green sibling). Abort / integrate-failed → **0**. Running
|
|
15
|
+
lease blocks another `$rite-build`.
|
|
16
|
+
|
|
17
|
+
## Path-disjoint
|
|
18
|
+
|
|
19
|
+
Exact project-relative source/test paths only. Normalize `\`→`/`. Reject `..`,
|
|
20
|
+
duplicates, absolutes, `.devrites/**`. Empty pairwise intersection required.
|
|
21
|
+
|
|
22
|
+
**SSOT:** `devrites-engine check path-disjoint [--root <dir>] [<json-file>|-]`
|
|
23
|
+
(N≥2 only; pass `--root`). Exit `0` → fan-out; else force serial. Inspect-time
|
|
24
|
+
overlap → sibling **gap** → abort.
|
|
25
|
+
|
|
26
|
+
## Control vs workers
|
|
27
|
+
|
|
28
|
+
Control owns `.devrites/work/<slug>/` (`parallel-lease.md` + bookkeeping).
|
|
29
|
+
Workers: `.scratch/parallel-wt/<batch>/<slice>/` on
|
|
30
|
+
`devrites/parallel/<slug>/<batch>/<slice>` @ base `B`. Wrights never write
|
|
31
|
+
`.devrites/**`.
|
|
32
|
+
|
|
33
|
+
Lease: `batch_id`, `created_at`, `base_sha`, `n`,
|
|
34
|
+
`status` (`running|aborted|integrate-failed|complete`), `control_pid_or_session`,
|
|
35
|
+
`slices[]` (`id`, `paths`, `worktree_path`, `branch`, `wright_status`,
|
|
36
|
+
`transfer_commit`).
|
|
37
|
+
|
|
38
|
+
## Lifecycle
|
|
39
|
+
|
|
40
|
+
1. Orient/gate; parse N; select ≤N path-disjoint pending slices.
|
|
41
|
+
2. Write lease; freeze `B=HEAD`; `parallel create` worktrees.
|
|
42
|
+
3. Dispatch ≤3 wrights in parallel (cwd=worktree; allowlist; prove `HEAD==B`).
|
|
43
|
+
4. Inspect + fail-on-red → `green|red|gap`.
|
|
44
|
+
5. Any red/gap → **abort** (no partial integrate). All green → serial integrate.
|
|
45
|
+
6. Integrate: `transfer_commit` descends from `B`; `` `<base>..<transfer>` ``
|
|
46
|
+
path-exact; apply in plan order. Conflict → reset to `B`, `integrate-failed`.
|
|
47
|
+
7. Success: FF control; union `touched-files.md`; update state/evidence; AFK +1
|
|
48
|
+
per integrated sibling; optional `check candidate`.
|
|
49
|
+
8. Cleanup: success removes worktrees/branches; abort keeps until acknowledged.
|
|
50
|
+
|
|
51
|
+
## Engine verbs
|
|
52
|
+
|
|
53
|
+
```text
|
|
54
|
+
devrites-engine parallel create|record-green|abort|integrate|cleanup|status
|
|
55
|
+
devrites-engine parallel lease-write|lease-read|lease-clear
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
Go is SSOT. Skill calls the engine — never ad-hoc git/bash orchestration.
|
|
59
|
+
|
|
60
|
+
## Host
|
|
61
|
+
|
|
62
|
+
Claude: N concurrent spawn_agent wrights (`acceptEdits`, cwd=worktree). Codex: require
|
|
63
|
+
host-explicit concurrent worktree writers + native reconcile; else force serial.
|
|
64
|
+
Never two writers in one worktree; never root-emulated concurrency.
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
See [`one-slice-cycle.md`](one-slice-cycle.md); candidate lifecycle is
|
|
4
4
|
[`candidate-integrity.md`](../../devrites-lib/reference/candidate-integrity.md).
|
|
5
|
+
Opt-in `--parallel N` uses [`parallel-batch.md`](parallel-batch.md) instead of steps 2–8.
|
|
5
6
|
|
|
6
7
|
1. **Orient and gate.** Read core, `.devrites/ACTIVE`, `state.md`, and required
|
|
7
8
|
slice artifacts. Require `Implementation readiness: READY`, its current
|
|
@@ -24,14 +25,14 @@ See [`one-slice-cycle.md`](one-slice-cycle.md); candidate lifecycle is
|
|
|
24
25
|
dispatch the exact `devrites-slice-wright` fresh. Root never writes those product
|
|
25
26
|
paths, wright never widens, and a missing profile stops.
|
|
26
27
|
<!-- workflow-artifact-adapter: {"module":"devrites-lib/reference/standards/workflow-artifacts.md","entry":"Build gate enters or resumes transaction","action":"invoke canonical operation table; reconcile exact result","return":"same slice/checkpoint cursor or Plan/Vet route"} -->
|
|
27
|
-
|
|
28
|
+
1. **Inspect the return.** Wait; compare its file list and `git diff --name-only`
|
|
28
29
|
with the contract. Reject stale, partial, malformed, or out-of-scope work.
|
|
29
30
|
Preserve user work; source restoration uses the same bounded wright.
|
|
30
|
-
|
|
31
|
+
2. **Challenge stood decisions.** For each stood decision, run exact
|
|
31
32
|
`devrites-doubt-reviewer` fresh/read-only and record accepted or resolved-rejected
|
|
32
33
|
in `decisions.md`. A missing verdict, principle breach, scope change, or
|
|
33
34
|
irreversible risk blocks.
|
|
34
|
-
|
|
35
|
+
3. **Prove without guessing.** Against the frozen pre-slice candidate, inspect
|
|
35
36
|
test hunks for deletion, skipping/focus, tautology, or weaker expectations. Dispatch exact
|
|
36
37
|
`devrites-test-analyst` on that immutable diff; missing account or adverse criterion
|
|
37
38
|
verdict is Critical. Run only `test-plan.md` repository/CI commands, capture output,
|
|
@@ -47,14 +48,14 @@ See [`one-slice-cycle.md`](one-slice-cycle.md); candidate lifecycle is
|
|
|
47
48
|
is progress; a different Critical/Important invariant gets its own fingerprint.
|
|
48
49
|
Ask humans only for product decisions,
|
|
49
50
|
irreversible risk, or genuinely human-only access.
|
|
50
|
-
|
|
51
|
+
4. **Record.** After green proof, upsert `touched-files.md`'s authoritative candidate
|
|
51
52
|
manifest from the actual scoped diff with explicit `present`/`deleted` rows;
|
|
52
53
|
update `state.md`, `evidence.md`, and applicable UI/browser evidence. The manifest
|
|
53
54
|
stays mutable until Polish closes it.
|
|
54
55
|
Record stood decisions/dead ends in `decisions.md`; update checked assumptions'
|
|
55
56
|
status/evidence, never leaving a disproved row live. If code reveals a durable
|
|
56
57
|
project rule, propose a reviewed `AGENTS.md`/nearest-doc update, not a scored ledger.
|
|
57
|
-
|
|
58
|
+
5. **AFK and reply.** Under `afk-discipline.md`, root charges
|
|
58
59
|
exactly once after each green built slice, never below zero; stop before another dispatch at zero, and fail closed
|
|
59
60
|
on malformed budget. Use the reply contract; name the next pending slice or, only
|
|
60
61
|
when all slices are built, `$rite-prove`. Emit no decorative progress renderer or
|
|
@@ -26,8 +26,8 @@ supported. Regardless of host defaults, the wright's first command must prove ac
|
|
|
26
26
|
`worktree_base`. Mismatch returns a gap with no write before project reads or baseline proof.
|
|
27
27
|
|
|
28
28
|
The isolated wright returns one local unpushed `transfer_commit`, its `worktree_base`,
|
|
29
|
-
and exact files. Root proves descendant base, exact `git diff --name-only
|
|
30
|
-
|
|
29
|
+
and exact files. Root proves descendant base, exact `git diff --name-only`
|
|
30
|
+
`` `<base>..<transfer>` ``, no `.devrites/**`/submodule/symlink/unrelated delta, unchanged
|
|
31
31
|
source base, and no user-work overwrite. Use only host-native explicit reconciliation;
|
|
32
32
|
never ad hoc copy, cherry-pick, or merge from read-only root. Compare transferred bytes,
|
|
33
33
|
run approved proof, record evidence, then let host remove worktree.
|
|
@@ -35,7 +35,10 @@ run approved proof, record evidence, then let host remove worktree.
|
|
|
35
35
|
Conflict, extra/missing commit, moved base, or cleanup failure is `gap`/STOP:
|
|
36
36
|
preserve the worktree and commit. Without explicit reconciliation, use same-worktree serial.
|
|
37
37
|
Parallel writer work remains forbidden until this serial pilot measures transfer,
|
|
38
|
-
conflict, proof, and review outcomes on both hosts.
|
|
38
|
+
conflict, proof, and review outcomes on both hosts. Opt-in `$rite-build --parallel N`
|
|
39
|
+
(2≤N≤3) is the only exception: path-disjoint fan-out, abort-batch, and control
|
|
40
|
+
`parallel-lease.md` under [`parallel-batch.md`](parallel-batch.md). Same-worktree multi-writer / root-emulated
|
|
41
|
+
worktrees stay forbidden.
|
|
39
42
|
|
|
40
43
|
## Prepare
|
|
41
44
|
|
|
@@ -60,6 +63,7 @@ conflict, proof, and review outcomes on both hosts.
|
|
|
60
63
|
Ask the host for the exact writer in fresh context and wait. Use at most one writer
|
|
61
64
|
across all linked worktrees for this workspace. Never run two writers in one worktree,
|
|
62
65
|
run isolated and same-worktree writers concurrently, or substitute a generic agent.
|
|
66
|
+
Opt-in `$rite-build --parallel N` fans out only under [`parallel-batch.md`](parallel-batch.md).
|
|
63
67
|
|
|
64
68
|
## Inspect and prove
|
|
65
69
|
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# $rite-clarify anti-patterns
|
|
2
|
+
|
|
3
|
+
Load this when tempted to skip clarify, assume product choices, or write
|
|
4
|
+
`Decision coverage: CLEAR` before every material row has an owner.
|
|
5
|
+
|
|
6
|
+
Pack-wide rationalizations: see
|
|
7
|
+
[standards/anti-patterns.md](../../devrites-lib/reference/standards/anti-patterns.md).
|
|
8
|
+
|
|
9
|
+
## Phase-specific rationalizations
|
|
10
|
+
|
|
11
|
+
| Excuse | Rebuttal |
|
|
12
|
+
| --- | --- |
|
|
13
|
+
| "We already discussed this in chat." | Chat is not durable decision coverage. Scan topology and record owners in workspace artifacts. |
|
|
14
|
+
| "The answer is obvious — assume it." | Product, scope, policy, and irreversible-risk choices are human-owned unless already recorded in an accepted decision. |
|
|
15
|
+
| "Most rows are clear — good enough for AFK." | Partial/Missing material rows block CLEAR and block AFK arming. |
|
|
16
|
+
| "Skip clarify for this small change." | Clarify is mandatory and adaptive; it may ask no questions, but it still runs the scan. |
|
|
17
|
+
| "I'll clarify during build if needed." | Unowned decisions discovered in build are expensive drift. Close them before plan/vet. |
|
|
18
|
+
|
|
19
|
+
## Red flags in your own output
|
|
20
|
+
|
|
21
|
+
- `Decision coverage: CLEAR` with Partial/Missing material rows still open.
|
|
22
|
+
- Product/policy choices recorded without a human packet or cited prior decision.
|
|
23
|
+
- AFK armed or `$rite-define` started before CLEAR is durable.
|
|
24
|
+
- Clarify skipped because the user said they were "in a hurry".
|
|
@@ -16,8 +16,9 @@ standalone token occurs in current `$ARGUMENTS`; earlier context cannot activate
|
|
|
16
16
|
1. Map policy→instruction, reusable work→skill, specialist→agent, external capability→plugin/MCP.
|
|
17
17
|
2. Inspect target/host docs; reuse before copying.
|
|
18
18
|
3. Draft smallest nearest-scope change; do not restate safeguards.
|
|
19
|
-
4.
|
|
20
|
-
5.
|
|
19
|
+
4. For any new or edited skill/agent Markdown, run `devrites-engine check skill-trust <path>` before showing the diff. HIGH findings block; MEDIUM findings need explicit human acknowledgment in the proposal.
|
|
20
|
+
5. Show path/exact diff; wait.
|
|
21
|
+
6. Write approved artifacts, validate natively, keep no mirror.
|
|
21
22
|
|
|
22
23
|
Here, edit canonical source and generate; never edit derived artifacts.
|
|
23
24
|
|
|
@@ -11,7 +11,9 @@ Turn `spec.md` into architecture, vertical slices, traceability, and state. Spec
|
|
|
11
11
|
what/why; Define owns how. **Do not write code.**
|
|
12
12
|
|
|
13
13
|
## Rules consulted (read on demand from `.agents/skills/devrites-lib/reference/standards/`)
|
|
14
|
+
|
|
14
15
|
Pull these via `Read` when shaping the plan:
|
|
16
|
+
|
|
15
17
|
- `development-workflow.md`: small batches, trunk-always-green, definition of done.
|
|
16
18
|
- `principles.md`: the project invariants (`.devrites/principles.md`) the chosen approach must conform to.
|
|
17
19
|
- `documentation.md`: record plan-time decisions and rationale.
|
|
@@ -20,6 +22,7 @@ Pull these via `Read` when shaping the plan:
|
|
|
20
22
|
- `../workspace-artifact-schema.md`: artifact purposes, budgets, IDs, and read triggers.
|
|
21
23
|
|
|
22
24
|
## Operating rules
|
|
25
|
+
|
|
23
26
|
- **Requires a readied spec.** Missing workspace/spec/readiness or open CRITICAL checklist →
|
|
24
27
|
`$rite-spec`; missing/non-`CLEAR` decision coverage → `$rite-clarify`. Never plan it.
|
|
25
28
|
- Apply `afk-hitl.md` ownership. Prefer conventions; source-check new dependencies/design
|
|
@@ -40,6 +43,7 @@ Pull these via `Read` when shaping the plan:
|
|
|
40
43
|
([`agents.md`](../devrites-lib/reference/standards/agents.md)); root owns choices and canonical files.
|
|
41
44
|
|
|
42
45
|
## Workflow
|
|
46
|
+
|
|
43
47
|
0. **Read `.agents/skills/devrites-lib/reference/standards/core.md`:** the always-on operating rules and anti-rationalizations.
|
|
44
48
|
Resolve the active slug from `.devrites/ACTIVE`, require its `state.md`, and
|
|
45
49
|
re-open `spec.md` and apply `spec-grammar.md`'s Native grammar re-read
|
|
@@ -132,7 +136,12 @@ Pull these via `Read` when shaping the plan:
|
|
|
132
136
|
exception a human approves. Never ready a plan that silently violates an invariant. (Re-scored
|
|
133
137
|
as a blocking gate at `$rite-vet`; no file → none declared → nothing to check.)
|
|
134
138
|
6. **Write** `architecture.md`, `plan.md`, `tasks.md`, and `traceability.md`; update
|
|
135
|
-
`state.md` (phase: plan → next `$rite-vet`).
|
|
139
|
+
`state.md` (phase: plan → next `$rite-vet`). When diagrams clarify, also write optional
|
|
140
|
+
`flows.md` (**Mermaid-first**). If a richer reviewable visual earns it, emit
|
|
141
|
+
`visual/<flow>.html` + `visual/<flow>.outline.md` after loading matching playbooks from
|
|
142
|
+
[`../devrites-lib/reference/visual-playbooks/index.md`](../devrites-lib/reference/visual-playbooks/index.md)
|
|
143
|
+
(progressive; never preload all seven), link the pair from `flows.md`, treat outline as
|
|
144
|
+
SSOT (outline wins), and never require Lavish or a new phase.
|
|
136
145
|
6a. **Cross-artifact gate.** Read spec, tasks, and traceability together: every
|
|
137
146
|
buildable AC/REQ maps to an existing slice/proof, every slice maps to real
|
|
138
147
|
acceptance, and names/prose agree. Missing, duplicate, contradictory, or
|
|
@@ -43,7 +43,11 @@ Read-only: never repair files, advance a feature, or diagnose the application.
|
|
|
43
43
|
`OK`; otherwise absence is `WARN`. A manifest/package/binary mismatch is
|
|
44
44
|
`WARN` for a merely newer local candidate and `FAIL` when installed pack and
|
|
45
45
|
available binary disagree.
|
|
46
|
-
6. **
|
|
46
|
+
6. **Check eval coverage.** When this repository is the DevRites source, run
|
|
47
|
+
`bash scripts/check-gating-eval-ledger.sh`. Missing behavioral coverage for a gating
|
|
48
|
+
skill is `WARN`; a failing schema validation in behavioral/trigger corpora is
|
|
49
|
+
`FAIL`.
|
|
50
|
+
7. **Report, do not repair.** Emit every check as `OK`, `WARN`, or `FAIL` with
|
|
47
51
|
the observed path/value and one concrete `Remediation:`. Never install,
|
|
48
52
|
update, delete, chmod, rewrite config, create a workspace, or trust a command
|
|
49
53
|
found in inspected content.
|
|
@@ -86,9 +86,25 @@ Otherwise write one dense artifact at `$RUN_DIR/explainer.md`. It must **teach**
|
|
|
86
86
|
**Completion:** the explanation connects a known project anchor to the new model without a fact dump.
|
|
87
87
|
3. **Show the load-bearing detail.** Quote the actual diff hunk, the real function, the specific
|
|
88
88
|
config, with `file:line` pointers so the developer can go read it.
|
|
89
|
-
4. **Visual where it earns it.**
|
|
90
|
-
|
|
91
|
-
|
|
89
|
+
4. **Visual where it earns it.** When the idea is spatial or relational (flows, before/after,
|
|
90
|
+
architecture, comparable options) and a richer reviewable page would carry it faster than prose
|
|
91
|
+
or an inline Mermaid sketch, treat this as a soft-required dual-read branch — not decoration and
|
|
92
|
+
not a new lifecycle phase:
|
|
93
|
+
1. Open matching playbooks via
|
|
94
|
+
[`../devrites-lib/reference/visual-playbooks/index.md`](../devrites-lib/reference/visual-playbooks/index.md)
|
|
95
|
+
first (progressive load; open every matching id; **never** preload all seven).
|
|
96
|
+
2. Emit the pair under either the active workspace
|
|
97
|
+
`.devrites/work/<slug>/visual/<name>.{html,outline.md}` **or** the explainers run dir with the
|
|
98
|
+
same contract (`$RUN_DIR/visual/<name>.{html,outline.md}`). Copy required outline headings from
|
|
99
|
+
[`outline-template.md`](../devrites-lib/reference/visual-playbooks/outline-template.md).
|
|
100
|
+
3. Agents treat the outline as SSOT; if HTML and outline disagree, **outline wins** until both are
|
|
101
|
+
regenerated. No Lavish runtime (`window.lavish.*`, `data-lavish-*`, poll/queue/share/ht-ml.app).
|
|
102
|
+
4. In the reply, `Changed` / `Record` may cite the HTML+outline pair. Optionally tip the human to
|
|
103
|
+
run `devrites-engine open-visual <path-or-name>` (T4 opener; document the tip only).
|
|
104
|
+
Skip the branch when prose (or a tiny Mermaid/SVG sketch inside `explainer.md`) already carries
|
|
105
|
+
the named relationship.
|
|
106
|
+
**Completion:** matching playbooks loaded when taken; dual-read pair written with outline-wins /
|
|
107
|
+
no-Lavish / no-new-phase; or the branch is explicitly skipped because prose won.
|
|
92
108
|
5. **Human voice.** Follow [`prose-style.md`](../devrites-lib/reference/standards/prose-style.md):
|
|
93
109
|
no throat-clearing, no false-binary contrast, no marketing adjectives. One senior engineer
|
|
94
110
|
explaining to another.
|
|
@@ -123,10 +139,10 @@ not force it; offer once.
|
|
|
123
139
|
|
|
124
140
|
```
|
|
125
141
|
Done: explained <the one thing> as a <concept|diff|idea|recap> explainer OR walked through <change> for human review.
|
|
126
|
-
Changed: .devrites/explainers/<date>-<slug>/<explainer.md|walkthrough.md>
|
|
127
|
-
Evidence: grounded in <artifacts/files quoted>; check-in <offered+result | skipped>; walkthrough stops <count>
|
|
142
|
+
Changed: .devrites/explainers/<date>-<slug>/<explainer.md|walkthrough.md>[; visual/<name>.html + visual/<name>.outline.md]
|
|
143
|
+
Evidence: grounded in <artifacts/files quoted>; check-in <offered+result | skipped>; walkthrough stops <count>; visual <pair|skipped>
|
|
128
144
|
Open: <none | next-time topics deferred | check-in awaiting the user>
|
|
129
|
-
Next: <single command — usually back to the calling phase, or $rite-learn if a repo rule surfaced
|
|
130
|
-
Record: .devrites/explainers/<date>-<slug>/explainer.md
|
|
145
|
+
Next: <single command — usually back to the calling phase, or $rite-learn if a repo rule surfaced; optional tip: devrites-engine open-visual …>
|
|
146
|
+
Record: .devrites/explainers/<date>-<slug>/explainer.md | walkthrough.md | visual/<name>.outline.md
|
|
131
147
|
↻ Hygiene: /clear after reading; the explainer is on disk
|
|
132
148
|
```
|
|
@@ -7,7 +7,7 @@ source for classification; the SKILL improvises none of it.
|
|
|
7
7
|
## The four shapes
|
|
8
8
|
|
|
9
9
|
| Shape | The input is… | Grounds in | Composes as | Check-in |
|
|
10
|
-
|
|
10
|
+
| --- | --- | --- | --- | --- |
|
|
11
11
|
| **concept** | a named idea / pattern / technology ("explain optimistic locking", "how does our gate engine work") | this repo's footprint of the concept (codegraph first) + external sources only if they sharpen it | build the mental model from a known part of *this* codebase outward | **checked exercise** |
|
|
12
12
|
| **diff** | a specific change: a ref, a slice, a PR, "this diff" | `git diff` / the hunks + `decisions.md` + `seal.md` for the *why* + `touched-files.md` `Review trail` when present | explainer, or **walkthrough** when the user asks to review/approve/checkpoint the change | **predict-then-reveal** |
|
|
13
13
|
| **idea** | a hypothesis or "what if" with no code yet | the user's framing + prior art (external, date-weighted; year is 2026) | steelman the idea, name its hinge and its failure mode | **checked exercise** |
|
|
@@ -18,7 +18,7 @@ source for classification; the SKILL improvises none of it.
|
|
|
18
18
|
If the user's input carries any of these tokens, they **override** shape inference:
|
|
19
19
|
|
|
20
20
|
| Token | Meaning |
|
|
21
|
-
|
|
21
|
+
| --- | --- |
|
|
22
22
|
| `diff:<ref>` | force the **diff** shape against `<ref>` (a commit, range, or slug) |
|
|
23
23
|
| `walkthrough:<ref>` | force the **diff** shape and compose a human review walkthrough instead of a teaching explainer |
|
|
24
24
|
| `since:<when>` | force the **recap** shape over the window (`since:1w`, `since:last-ship`, an ISO date) |
|
|
@@ -60,6 +60,15 @@ A walkthrough is for human review, not retention. Write it under the normal run
|
|
|
60
60
|
|
|
61
61
|
Completion criterion: every concern has at least one clickable repo-relative `path:line` stop, or the walkthrough states why the change has no source stops.
|
|
62
62
|
|
|
63
|
+
## Visual dual-read (when composition earns it)
|
|
64
|
+
|
|
65
|
+
If the explainer or walkthrough needs a spatial/relational page, follow the SKILL's
|
|
66
|
+
"Visual where it earns it" branch: load matching playbooks from
|
|
67
|
+
[`../../devrites-lib/reference/visual-playbooks/index.md`](../../devrites-lib/reference/visual-playbooks/index.md),
|
|
68
|
+
emit `visual/<name>.html` + `visual/<name>.outline.md` (workspace or `$RUN_DIR`), treat
|
|
69
|
+
outline as SSOT, and never invent a new phase or Lavish dependency. Classification still
|
|
70
|
+
owns shape; the visual branch does not change which shape you are in.
|
|
71
|
+
|
|
63
72
|
### Predict-then-reveal (diff / recap)
|
|
64
73
|
|
|
65
74
|
1. Pick the single most load-bearing hunk or decision in the explainer.
|
|
@@ -36,6 +36,9 @@ Mark edges that cross a frontend/backend or service boundary. Those slices shoul
|
|
|
36
36
|
define the contract first (so both sides can proceed) and trigger `devrites-doubt`
|
|
37
37
|
before standing the interface.
|
|
38
38
|
|
|
39
|
+
After editing `tasks.md`, run `devrites-engine check task-graph <slug>` before Vet.
|
|
40
|
+
Cycles or unknown dependencies block readiness.
|
|
41
|
+
|
|
39
42
|
For monorepos/multiple repositories, annotate the proven root and deployable on each node.
|
|
40
43
|
For data/integration changes, include recovery ordering: expand before new writers,
|
|
41
44
|
backfill before contract, consumer compatibility before provider exposure, and monitoring
|
|
@@ -119,8 +119,11 @@ status routes Define/Vet/Build/Prove to the named standard without copying it he
|
|
|
119
119
|
|
|
120
120
|
## References
|
|
121
121
|
- `brief.md`: request/outcome/scope; `architecture.md`: placement/integration;
|
|
122
|
-
`flows.md`: diagrams
|
|
123
|
-
|
|
122
|
+
`flows.md`: Mermaid-first diagrams (optional `visual/<flow>.html`+`.outline.md` companion
|
|
123
|
+
+ link when richer presentation earns it — load playbooks via
|
|
124
|
+
`devrites-lib/reference/visual-playbooks/index.md`); `decisions.md`: decisions;
|
|
125
|
+
`decision-coverage.md`: Clarify topology/verdict; `traceability.md`: Define coverage;
|
|
126
|
+
`design-brief.md`: UI direction.
|
|
124
127
|
|
|
125
128
|
## Open questions
|
|
126
129
|
| Question ID | Gate | Question | Impact |
|
|
@@ -15,7 +15,8 @@ Load that schema before creating or updating workspace artifacts.
|
|
|
15
15
|
brief.md
|
|
16
16
|
spec.md
|
|
17
17
|
architecture.md # from $rite-define
|
|
18
|
-
flows.md # optional
|
|
18
|
+
flows.md # optional Mermaid-first; only when useful
|
|
19
|
+
visual/ # optional HTML+outline companions (never readiness)
|
|
19
20
|
decisions.md
|
|
20
21
|
assumptions.md
|
|
21
22
|
questions.md
|
|
@@ -38,6 +39,26 @@ Load that schema before creating or updating workspace artifacts.
|
|
|
38
39
|
<feature-slug>/
|
|
39
40
|
```
|
|
40
41
|
|
|
42
|
+
## `flows.md` (optional Mermaid-first)
|
|
43
|
+
|
|
44
|
+
Write `flows.md` only when sequence/state/data/lifecycle diagrams clarify the feature.
|
|
45
|
+
Keep **Mermaid in `flows.md`** when that is enough. When a richer reviewable presentation
|
|
46
|
+
is needed, **also** emit `.devrites/work/<slug>/visual/<flow>.html` +
|
|
47
|
+
`visual/<flow>.outline.md` and link the pair from `flows.md`.
|
|
48
|
+
|
|
49
|
+
Before any HTML:
|
|
50
|
+
|
|
51
|
+
1. Open matching playbooks via
|
|
52
|
+
[`../../devrites-lib/reference/visual-playbooks/index.md`](../../devrites-lib/reference/visual-playbooks/index.md)
|
|
53
|
+
(progressive; never preload all seven).
|
|
54
|
+
2. Copy required outline headings from
|
|
55
|
+
[`outline-template.md`](../../devrites-lib/reference/visual-playbooks/outline-template.md).
|
|
56
|
+
3. Dual-read: agents treat the outline as SSOT; **outline wins** on conflict. No Lavish
|
|
57
|
+
runtime; this is not a new lifecycle phase and never inflates readiness.
|
|
58
|
+
|
|
59
|
+
`$rite-spec` may seed a thin `flows.md` when investigation already needs a diagram;
|
|
60
|
+
`$rite-define` owns richer architecture/flow companions beside `architecture.md`.
|
|
61
|
+
|
|
41
62
|
## Creation rules
|
|
42
63
|
|
|
43
64
|
- Create or reuse the slug exactly under the canonical schema's
|
|
@@ -45,10 +66,12 @@ Load that schema before creating or updating workspace artifacts.
|
|
|
45
66
|
contract.
|
|
46
67
|
- `$rite-spec` creates the workspace map, `brief.md`, `spec.md`, `decisions.md`,
|
|
47
68
|
`assumptions.md`, `questions.md`, `state.md`, optional `references.md` /
|
|
48
|
-
`references/`,
|
|
69
|
+
`references/`, optional `flows.md` when a diagram already clarifies investigation,
|
|
70
|
+
and optional `design-brief.md` for UI.
|
|
49
71
|
- `$rite-clarify` adds `decision-coverage.md`.
|
|
50
72
|
- `$rite-define` adds `architecture.md`, `plan.md`, `tasks.md`, and
|
|
51
|
-
`traceability.md
|
|
73
|
+
`traceability.md`; may add or enrich `flows.md` and optional `visual/` HTML+outline
|
|
74
|
+
companions when Mermaid alone is not enough.
|
|
52
75
|
- `$rite-vet` adds `eng-review.md` and `test-plan.md`.
|
|
53
76
|
- Later phases add only the artifact they own. Do not create optional files as
|
|
54
77
|
empty placeholders; absence means the phase has not produced that artifact.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "devrites",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0",
|
|
4
4
|
"description": "DevRites: a disciplined senior-engineer workflow pack for Claude Code and Codex",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"homepage": "https://github.com/ViktorsBaikers/DevRites#readme",
|
package/scripts/install-lib.sh
CHANGED
|
@@ -134,7 +134,7 @@ dr_build_engine() {
|
|
|
134
134
|
[ -d "$_dr_source_dir/engine" ] && [ -n "$_dr_go_bin" ] || return 1
|
|
135
135
|
_dr_tag="$(dr_release_tag "$_dr_source_dir")"
|
|
136
136
|
[ -n "$_dr_tag" ] || _dr_tag="dev"
|
|
137
|
-
( cd "$_dr_source_dir/engine" && GOCACHE="$(dirname "$_dr_out")/go-cache" CGO_ENABLED=0 "$_dr_go_bin" build -trimpath -ldflags "-s -w -X github.com/devrites/devrites/internal/version.Version=$_dr_tag" -o "$_dr_out" . ) 2>/dev/null || return 1
|
|
137
|
+
( cd "$_dr_source_dir/engine" && GOCACHE="${GOCACHE:-$(dirname "$_dr_out")/go-cache}" CGO_ENABLED=0 "$_dr_go_bin" build -trimpath -ldflags "-s -w -X github.com/devrites/devrites/internal/version.Version=$_dr_tag" -o "$_dr_out" . ) 2>/dev/null || return 1
|
|
138
138
|
chmod +x "$_dr_out" 2>/dev/null || true
|
|
139
139
|
}
|
|
140
140
|
|