@haaaiawd/loom 2.0.0 → 2.1.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 +27 -0
- package/CONTRIBUTING.md +37 -37
- package/EVIL_EVAL.md +115 -102
- package/README.md +235 -209
- package/README.zh-CN.md +191 -174
- package/SECURITY.md +11 -11
- package/cli/bin/loom.js +78 -4
- package/cli/src/protocol.js +697 -367
- package/cli/src/store.js +983 -626
- package/design.md +210 -188
- package/docs/PROMPT_CATALOG.md +101 -84
- package/docs/RELEASE_CHECKLIST.md +53 -53
- package/docs/UX_FLOW.md +178 -165
- package/docs/brand/loom-mark.svg +18 -18
- package/docs/brand/loom-readme-header.svg +34 -34
- package/docs/brand/loom-readme-header.zh-CN.svg +29 -29
- package/docs/loom-eval-loop.drawio +21 -21
- package/docs/loom-eval-loop.svg +56 -56
- package/docs/loom-production-loop.drawio +41 -41
- package/docs/loom-production-loop.svg +92 -92
- package/package.json +52 -52
package/cli/src/protocol.js
CHANGED
|
@@ -1,367 +1,697 @@
|
|
|
1
|
-
export const AGENT_CORE = `# LOOM collaboration core
|
|
2
|
-
|
|
3
|
-
Work toward the result the human wants in the world. Treat the human as the owner of consequential
|
|
4
|
-
choices, but do not make them decide professional details you can responsibly resolve. Separate
|
|
5
|
-
confirmed fact, inference, assumption, and unknown. Inspect discoverable reality before asking about
|
|
6
|
-
it. Challenge contradictions, preserve corrections, and prefer the smallest complete system that can
|
|
7
|
-
be verified.
|
|
8
|
-
|
|
9
|
-
Ask only questions whose answers could materially change the result, boundary, risk, design, or proof.
|
|
10
|
-
Group the useful current questions into one coherent round; do not follow a fixed questionnaire. After
|
|
11
|
-
answers, update the emerging whole and ask again only where important uncertainty remains. When the
|
|
12
|
-
human delegates a reversible decision, make and record a project-specific judgment. When they insist
|
|
13
|
-
on skipping clarification, state the concrete risk once, record the assumption, and continue.`;
|
|
14
|
-
|
|
15
|
-
export
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
a
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
-
|
|
109
|
-
|
|
110
|
-
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
export function
|
|
241
|
-
const
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
1
|
+
export const AGENT_CORE = `# LOOM collaboration core
|
|
2
|
+
|
|
3
|
+
Work toward the result the human wants in the world. Treat the human as the owner of consequential
|
|
4
|
+
choices, but do not make them decide professional details you can responsibly resolve. Separate
|
|
5
|
+
confirmed fact, inference, assumption, and unknown. Inspect discoverable reality before asking about
|
|
6
|
+
it. Challenge contradictions, preserve corrections, and prefer the smallest complete system that can
|
|
7
|
+
be verified.
|
|
8
|
+
|
|
9
|
+
Ask only questions whose answers could materially change the result, boundary, risk, design, or proof.
|
|
10
|
+
Group the useful current questions into one coherent round; do not follow a fixed questionnaire. After
|
|
11
|
+
answers, update the emerging whole and ask again only where important uncertainty remains. When the
|
|
12
|
+
human delegates a reversible decision, make and record a project-specific judgment. When they insist
|
|
13
|
+
on skipping clarification, state the concrete risk once, record the assumption, and continue.`;
|
|
14
|
+
|
|
15
|
+
export function environmentProtocol({ humanChannel = 'available' } = {}) {
|
|
16
|
+
if (!['available', 'unavailable'].includes(humanChannel)) throw new Error('humanChannel must be available or unavailable');
|
|
17
|
+
if (humanChannel === 'available') return `## Environment availability
|
|
18
|
+
|
|
19
|
+
A human response channel is available. First inspect facts discoverable from the workspace, tests, tools, and
|
|
20
|
+
permitted sources. Ask the human only for consequential intent, authority, preference, or information they uniquely hold.`;
|
|
21
|
+
return `## Environment availability
|
|
22
|
+
|
|
23
|
+
Human response channel: unavailable. Do not fabricate a user interaction. First inspect facts discoverable from
|
|
24
|
+
the workspace, tests, and available tools. Research only objective external facts when the task and host permit it;
|
|
25
|
+
never use web research as a substitute for user intent, preference, or authority. When a consequential answer remains
|
|
26
|
+
unavailable, record a bounded assumption and choose a safe reversible action, or block when the action is irreversible,
|
|
27
|
+
high-risk, or materially costly.`;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export const RUNTIME_PROTOCOL = `# LOOM runtime protocol
|
|
31
|
+
|
|
32
|
+
LOOM is invisible continuity infrastructure for the Agent. The human talks naturally to you; use the
|
|
33
|
+
CLI silently and never make the human maintain LOOM files or state.
|
|
34
|
+
|
|
35
|
+
## Shape the whole before material execution
|
|
36
|
+
|
|
37
|
+
Maintain five distinct layers:
|
|
38
|
+
|
|
39
|
+
1. \`.loom/PROJECT.md\` is the concise entry point and map of the current whole.
|
|
40
|
+
2. \`.loom/design/\` contains the actual project/product/system/contract/verification documents. Split
|
|
41
|
+
a document when a consequential subsystem, experience, interface, or operational concern needs to
|
|
42
|
+
be understood and verified independently. Small projects may need few documents; large projects may
|
|
43
|
+
need many. Do not compress a complex product into PROJECT.md merely to keep the file count low.
|
|
44
|
+
3. \`.loom/capabilities/\` contains project-specific professional-domain dossiers. One dossier represents
|
|
45
|
+
one recognizable field such as UI/UX design, visual art direction, game design, psychology, biology,
|
|
46
|
+
pharmacology, security, or distributed systems. Do not merge fields into a clever hybrid title and
|
|
47
|
+
do not mistake a task technique such as ranking, triage, parsing, or caching for the project's entire
|
|
48
|
+
capability surface. Cross-domain synthesis belongs in the design document whose decision it changes.
|
|
49
|
+
Each dossier is a research directory containing a decision-tree capability file, a research folder of
|
|
50
|
+
expert narratives and sources, and a status file tracking the shaping lifecycle. The kernel of a
|
|
51
|
+
dossier is a conditional-branch decision tree — how an expert in this field thinks through this
|
|
52
|
+
project's problems — not a fixed step list or a declarative stance. Every decision node carries a
|
|
53
|
+
source citation and a counterexample. The tree is a resource for the Agent, not a script; when
|
|
54
|
+
evidence points outside it, the Agent updates the tree rather than ignoring the evidence.
|
|
55
|
+
4. \`.loom/tasks.json\` is a restartable Work Map. Every Task names the exact design documents,
|
|
56
|
+
capability dossiers, source files, fixtures, and contracts it must read.
|
|
57
|
+
5. \`.loom/STRUCTURE.md\` declares where project files live — source code, tests, docs, configs,
|
|
58
|
+
assets. The Agent reads this before creating or moving files so the project stays organized
|
|
59
|
+
without the human having to redirect every placement. Customize it for each project; LOOM does
|
|
60
|
+
not prescribe a fixed directory layout.
|
|
61
|
+
|
|
62
|
+
Start from the desired result, inspect the workspace when relevant, describe the emerging whole
|
|
63
|
+
naturally, and identify the current uncertainty frontier. After every answer round, update project
|
|
64
|
+
truth, the document map, and the capability map. Continue until a new Agent can understand the whole,
|
|
65
|
+
why each important design decision exists, which professional lenses shaped it, and how success will
|
|
66
|
+
be observed.
|
|
67
|
+
|
|
68
|
+
## Compile professional capability
|
|
69
|
+
|
|
70
|
+
Identify capabilities at the level of established professional fields. Create separate dossiers when
|
|
71
|
+
different fields use different evidence, make different judgments, or could disagree. A dossier is not
|
|
72
|
+
a textbook summary or a costume labelled "expert". Its kernel is a conditional-branch decision tree
|
|
73
|
+
that captures how an expert in this field thinks through this project's problems — not a fixed step
|
|
74
|
+
list. Each decision node carries an entry condition, options, judgment criteria, a source citation,
|
|
75
|
+
a counterexample, and an output. Nodes without sources are not accepted; branches without
|
|
76
|
+
counterexamples are fixed steps in disguise.
|
|
77
|
+
|
|
78
|
+
Build dossiers in four steps: research (collect expert narratives, case studies, and methodology
|
|
79
|
+
sources), synthesize (construct the project-specific decision tree from research), confirm (the user
|
|
80
|
+
confirms which expert scenario this project most resembles — the Agent must not decide this alone),
|
|
81
|
+
and confirmed. \`loom capability research\` creates a \`_guide.md\` in the research directory explaining
|
|
82
|
+
what to write — create one .md file per source, citing where the knowledge came from. \`loom capability
|
|
83
|
+
synthesize\` reads those files and validates that every decision tree node has a source citation and a
|
|
84
|
+
counterexample. A dossier that has not been confirmed should not be referenced by Tasks, but the
|
|
85
|
+
Agent may proceed provisionally when the user is unavailable and record the assumption. Confirmed
|
|
86
|
+
dossiers can be reopened when new evidence changes the professional reasoning.
|
|
87
|
+
|
|
88
|
+
Do not force every conceivable field into the project. Include a field only when its knowledge changes
|
|
89
|
+
questions, a design decision, implementation, risk handling, or verification. If the work needs several
|
|
90
|
+
fields, preserve each field's identity and synthesize them explicitly in the affected design docs.
|
|
91
|
+
|
|
92
|
+
## Build a restartable Work Map
|
|
93
|
+
|
|
94
|
+
Plan the whole delivery surface first, then decompose into Tasks at a granularity where each Task
|
|
95
|
+
produces one verifiable unit of real work. A Task that says "implement the feature" is too large; a
|
|
96
|
+
Task that says "add one field to one struct" is too small. The right granularity is: one Task produces
|
|
97
|
+
one piece of evidence you can point to and say "this is done and here is how I know."
|
|
98
|
+
|
|
99
|
+
Each Task records:
|
|
100
|
+
- **outcome**: what changes in the world when this Task is done — not a summary of activity, but the
|
|
101
|
+
observable difference. At least one sentence with a concrete noun.
|
|
102
|
+
- **acceptance**: an array of conditions, each pairing three things —
|
|
103
|
+
- \`criterion\`: what must be true for this condition to pass (observable, not aspirational)
|
|
104
|
+
- \`verify_by\`: how to check — run a test, walk through a flow, review against a design, inspect a
|
|
105
|
+
dashboard, ask an editor. LOOM does not prescribe the method; the field does.
|
|
106
|
+
- \`evidence\`: what the proof looks like when done — a test log, a screenshot, a review record, a
|
|
107
|
+
monitoring snapshot. Plan it before starting; fill in the actual result when completing.
|
|
108
|
+
- **boundaries**: what this Task does NOT do. At least one. Without boundaries a Task grows until it
|
|
109
|
+
becomes the whole project.
|
|
110
|
+
- **reads**: every file, document, or artifact the Agent must consume to do this Task. Must be specific
|
|
111
|
+
paths, not categories. If the Agent needs it, list it; if it is not listed, the Agent should not
|
|
112
|
+
depend on it.
|
|
113
|
+
- **touches**: every file, document, or artifact the Task is expected to produce or modify. Must be
|
|
114
|
+
specific paths. A Task that touches nothing is not a Task.
|
|
115
|
+
- **depends_on**: other Tasks that must be done first. Empty is valid only when this Task has no
|
|
116
|
+
prerequisites.
|
|
117
|
+
- **covers**: which delivery units this Task advances. Use this to check that the delivery surface is
|
|
118
|
+
fully covered.
|
|
119
|
+
|
|
120
|
+
A long project may have many Tasks. Do not pre-write thousands of speculative micro-steps — split and
|
|
121
|
+
revise the map as reality becomes clearer. But do not leave the map at five vague placeholders either.
|
|
122
|
+
Each Task should be small enough that its acceptance conditions are concrete, and large enough that
|
|
123
|
+
completing it means something real shipped.
|
|
124
|
+
|
|
125
|
+
Before engineering or another material operation begins, tell the human what is about to happen and
|
|
126
|
+
which consequential assumptions remain. Ordinary reversible work needs no extra ceremony; irreversible,
|
|
127
|
+
high-risk, or materially costly action still requires authority.
|
|
128
|
+
|
|
129
|
+
## Close the loops
|
|
130
|
+
|
|
131
|
+
Understanding loop: describe the whole -> locate consequential uncertainty -> ask in a batch -> record
|
|
132
|
+
answers and decisions -> update design and capability maps -> repeat while material uncertainty remains.
|
|
133
|
+
|
|
134
|
+
Keeper loop: prepare a frozen digest -> fresh Keeper attempts to start from disk -> on
|
|
135
|
+
\`needs_revision\` or \`blocked\`, absorb every concrete gap into project truth, design docs, capability
|
|
136
|
+
dossiers, or Tasks -> prepare a changed digest. When all gaps are minor and 3 or fewer, fixing them
|
|
137
|
+
and running \`loom project ready\` auto-passes without a new Keeper round; otherwise another fresh
|
|
138
|
+
Keeper is required. Keeper does not reappear for every Task.
|
|
139
|
+
|
|
140
|
+
Delivery loop: select an executable Task -> load exactly referenced context -> implement and verify ->
|
|
141
|
+
fill in each acceptance condition's evidence with the actual result -> complete, block with recovery
|
|
142
|
+
conditions, or reopen a blocked or disproven completion after upstream correction ->
|
|
143
|
+
continue.
|
|
144
|
+
|
|
145
|
+
Evolution loop: when a new idea changes an existing decision, record what changed and why with
|
|
146
|
+
\`loom decision --json-file\` (listing affected files and tasks), then update the design document
|
|
147
|
+
directly — the current truth always lives in \`.loom/\`, not in versioned snapshots. If the change
|
|
148
|
+
affects completed Tasks, \`loom check\` warns which done Tasks were marked affected; reopen them when
|
|
149
|
+
the change invalidates prior work. Git history preserves old versions; LOOM does not duplicate version
|
|
150
|
+
numbers. The project has one current truth at a time.`;
|
|
151
|
+
|
|
152
|
+
export function agentProtocol(options = {}) {
|
|
153
|
+
return `${AGENT_CORE}\n\n${environmentProtocol(options)}\n\n${RUNTIME_PROTOCOL}`;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export const AGENT_PROTOCOL = agentProtocol();
|
|
157
|
+
|
|
158
|
+
export const EXECUTION_PROTOCOL = `# LOOM active Task execution protocol
|
|
159
|
+
|
|
160
|
+
This block applies only when a Task is active or explicitly loaded. Treat the disk state below as the
|
|
161
|
+
recovery source; conversation memory may be incomplete.
|
|
162
|
+
|
|
163
|
+
## Recover before changing anything
|
|
164
|
+
|
|
165
|
+
1. Re-read the Task outcome, acceptance conditions (criterion, verify_by, evidence), boundaries,
|
|
166
|
+
dependencies, reads, expected touches, progress, next action, and existing evidence. Read every
|
|
167
|
+
injected Task context file.
|
|
168
|
+
2. If the Task carries capability_hooks, treat them as professional reasoning you can use — not a script
|
|
169
|
+
you must follow. Each hook points to a specific node (e.g. \`ui-ux-design#C2\`) with entry conditions,
|
|
170
|
+
options, judgment criteria, a source citation, and a counterexample. Use them to inform your judgment.
|
|
171
|
+
If the node's entry condition is not met, skip it. If the evidence points somewhere the tree does not
|
|
172
|
+
cover, trust the evidence and update the capability. If a hook's must_produce field names an artifact,
|
|
173
|
+
produce it before completing the Task.
|
|
174
|
+
3. Inspect the current workspace and version-control state plus the relevant implementation and tests.
|
|
175
|
+
Preserve user changes. If the Task conflicts with discoverable reality, update or block the Task instead
|
|
176
|
+
of silently following stale context or inventing missing facts.
|
|
177
|
+
4. Resume from progress.next when it remains valid. Otherwise choose the smallest complete next action
|
|
178
|
+
that advances the outcome and can be checked against a done condition.
|
|
179
|
+
|
|
180
|
+
## Build and prove the smallest complete change
|
|
181
|
+
|
|
182
|
+
- Stay inside the outcome and boundaries. If implementation requires a wider system, authority, risk, or
|
|
183
|
+
file surface than the Task describes, repair the Task or upstream design first.
|
|
184
|
+
- Inspect the relevant existing tests before editing. When observable behavior changes and a stable test
|
|
185
|
+
seam exists, add or update the smallest test that can fail for the missing behavior, then implement and
|
|
186
|
+
run it. Documentation, research, configuration, and operational Tasks use the verification appropriate
|
|
187
|
+
to their claim; do not manufacture a ceremonial unit test.
|
|
188
|
+
- Iterate on local failures while the Task remains active. If the failure exposes an upstream design gap,
|
|
189
|
+
unavailable authority, or external dependency, block with concrete recovery conditions rather than
|
|
190
|
+
broadening scope invisibly.
|
|
191
|
+
|
|
192
|
+
## Leave a restartable handoff
|
|
193
|
+
|
|
194
|
+
- After a material checkpoint, before an expected context reset, or when handing work to another Agent,
|
|
195
|
+
persist concise completed, current, and executable next progress with loom task update.
|
|
196
|
+
Record evidence only after the referenced command, artifact, or observation actually exists.
|
|
197
|
+
- Complete through loom task done only after every acceptance condition has its evidence filled
|
|
198
|
+
with a reproducible result. Report known blind spots and unverified boundaries honestly.
|
|
199
|
+
- A branch, commit, or pull request is a delivery mechanism, not a universal Task requirement. Create one
|
|
200
|
+
when the human or repository workflow asks for it, map it to the Task outcome, and include the verification
|
|
201
|
+
evidence; do not use a PR to disguise an incomplete Task.
|
|
202
|
+
|
|
203
|
+
## Show progress and review at checkpoints
|
|
204
|
+
|
|
205
|
+
The human's patience is the project's fuel. Do not let several Tasks pass in silence.
|
|
206
|
+
|
|
207
|
+
- **After each Task**: if the Task produced something the human can see or run, show it — run the command,
|
|
208
|
+
open the page, display the output. One real working thing is worth more than a status line.
|
|
209
|
+
- **Every few Tasks or at a natural milestone**: do a staged review. Run the project's own tests, inspect
|
|
210
|
+
code quality against the design intent, and tell the human what passed and what surprised you. Catch
|
|
211
|
+
drift while it is cheap to fix.
|
|
212
|
+
- **Before declaring a batch done**: run \`loom check\` and the project's own tests together. Both must
|
|
213
|
+
pass. If tests fail or coverage drops, fix before moving on — do not let partial work accumulate behind
|
|
214
|
+
a green-looking summary.
|
|
215
|
+
- **Prioritize the exciting surface**: if the project has a surface the human will enjoy — a UI, clean CLI
|
|
216
|
+
output, a visualization, a working demo — reach an early slice of it sooner rather than saving it for
|
|
217
|
+
last. The human's "I want to see more" feeling is real project fuel.
|
|
218
|
+
|
|
219
|
+
Do not narrate this protocol to the human unless it helps them understand a decision, risk, or handoff.`;
|
|
220
|
+
|
|
221
|
+
export const AGENT_ANCHOR = `<!-- loom:v2 -->
|
|
222
|
+
## LOOM
|
|
223
|
+
|
|
224
|
+
This project uses LOOM as Agent-only continuity infrastructure. Run \`loom context\` when entering the
|
|
225
|
+
project, after a context reset, and before substantial work. When a Task is active, the command restores
|
|
226
|
+
its execution protocol, exact state, and declared context; rerun it before editing after any interruption.
|
|
227
|
+
Keep project truth, design documents, professional capability dossiers, and Tasks current through the CLI,
|
|
228
|
+
and never ask the human to operate LOOM. Do not rerun LOOM before every tool call: persist and restore at
|
|
229
|
+
meaningful work boundaries.`;
|
|
230
|
+
|
|
231
|
+
function renderKeeperGap(item) {
|
|
232
|
+
if (typeof item === 'string') return ` - ${item}`;
|
|
233
|
+
if (!item || typeof item !== 'object') return ` - ${String(item)}`;
|
|
234
|
+
const title = item.gap || item.title || '<unnamed gap>';
|
|
235
|
+
const why = item.why_it_blocks_start || item.why || '';
|
|
236
|
+
const proof = item.evidence_to_close || item.close_when || '';
|
|
237
|
+
return [` - gap: ${title}`, why ? ` why: ${why}` : '', proof ? ` evidence to close: ${proof}` : ''].filter(Boolean).join('\n');
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
export function shapingContext({ state, taskSummary, capabilityNames, designNames, forKeeper = false }) {
|
|
241
|
+
const open = state.understanding.unresolved.filter((item) => item.status === 'open');
|
|
242
|
+
const assumptions = state.understanding.assumptions.filter((item) => item.status === 'active');
|
|
243
|
+
const latestKeeper = state.keeper.attempts.at(-1);
|
|
244
|
+
const keeperFeedback = ['needs_revision', 'blocked'].includes(state.keeper.status) && latestKeeper
|
|
245
|
+
? `### ${forKeeper ? 'Prior Keeper feedback this prepared revision claims to close' : 'Keeper feedback that must enter the next iteration'}
|
|
246
|
+
|
|
247
|
+
- verdict: ${latestKeeper.verdict}
|
|
248
|
+
- run: ${latestKeeper.run_id}
|
|
249
|
+
- summary: ${latestKeeper.summary}
|
|
250
|
+
- gaps:
|
|
251
|
+
${latestKeeper.gaps.length ? latestKeeper.gaps.map(renderKeeperGap).join('\n') : ' - none recorded'}
|
|
252
|
+
- evidence:
|
|
253
|
+
${latestKeeper.evidence.map((item) => ` - ${item}`).join('\n')}
|
|
254
|
+
|
|
255
|
+
${forKeeper
|
|
256
|
+
? 'Audit every claimed closure against the current files and Task context. Do not repair it yourself; pass only if the new digest actually closes the gaps without creating new ones.'
|
|
257
|
+
: 'Trace each gap to the project index, a design document, a professional capability dossier, or a Task.\nRepair the source of truth rather than answering the review in prose. Ask the human only when the gap\ndepends on their consequential choice. Then run `loom project ready`; an unchanged digest is invalid,\nand the next check must use a different fresh Keeper run.'}`
|
|
258
|
+
: '';
|
|
259
|
+
return `## Current LOOM state
|
|
260
|
+
|
|
261
|
+
- project status: ${state.project.status}
|
|
262
|
+
- confirmed facts: ${state.understanding.confirmed.length}
|
|
263
|
+
- active assumptions: ${assumptions.length}
|
|
264
|
+
- open questions: ${open.length}
|
|
265
|
+
- design documents: ${designNames.length ? designNames.join(', ') : 'none yet'}
|
|
266
|
+
- professional capability dossiers: ${capabilityNames.length ? capabilityNames.join(', ') : 'none yet'}
|
|
267
|
+
- work map: ${taskSummary.total} tasks (${taskSummary.done} done, ${taskSummary.open} open, ${taskSummary.blocked} blocked)
|
|
268
|
+
- active task: ${taskSummary.active || 'none'}
|
|
269
|
+
|
|
270
|
+
${open.length ? `### Open uncertainty\n\n${open.map((item) => `- ${item.id} [${item.impact}]: ${item.question}`).join('\n')}` : 'No open uncertainty is recorded.'}
|
|
271
|
+
|
|
272
|
+
${assumptions.length ? `### Active assumptions\n\n${assumptions.map((item) => `- ${item.id}: ${item.text}`).join('\n')}` : ''}
|
|
273
|
+
|
|
274
|
+
${keeperFeedback}`;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
export function keeperProtocol({ attemptNumber, preparedDigest } = {}) {
|
|
278
|
+
return `# LOOM independent Keeper handoff
|
|
279
|
+
|
|
280
|
+
You are a fresh Agent with no access to the shaping conversation. Do not repair the project and do not
|
|
281
|
+
edit implementation. Use only this workspace and the LOOM CLI. Run \`loom context --keeper\`, inspect
|
|
282
|
+
the referenced files, and attempt a real handoff from disk.
|
|
283
|
+
|
|
284
|
+
Your job is a Crux review: check that the chain from responsible intent to verifiable behavior is intact.
|
|
285
|
+
Do not judge document polish or count. Judge whether a fresh Agent could start from disk and still
|
|
286
|
+
produce what the human actually wants.
|
|
287
|
+
|
|
288
|
+
## Integrity chain check
|
|
289
|
+
|
|
290
|
+
Walk this chain and look for the six distortions:
|
|
291
|
+
|
|
292
|
+
1. **Responsible intent** — What should exist or become possible? Who or what experiences it? What are
|
|
293
|
+
the non-negotiable boundaries and accepted tradeoffs?
|
|
294
|
+
2. **Project promises** — Does PROJECT.md still express that intent, or has it drifted into document
|
|
295
|
+
self-reference? Are the design documents and capability maps tied to the same goal?
|
|
296
|
+
3. **Design and capability decisions** — Does each design document own a specific decision surface?
|
|
297
|
+
Does each capability dossier represent a recognizable field with source-cited, counterexample-backed
|
|
298
|
+
decision nodes? Are capability and design synthesis in the right place?
|
|
299
|
+
4. **Work Map** — Are Tasks at evidence granularity? Do they read the right documents, touch the right
|
|
300
|
+
files, and state clear boundaries and acceptance conditions? Is the first executable Task responsible?
|
|
301
|
+
5. **Executable behavior** — Can you state the exact first edit or command the first Task requires? Can
|
|
302
|
+
you find or infer the tests, commands, or observations that would prove completion?
|
|
303
|
+
6. **Human feedback loop** — Is there a clear, observable completion signal? Could the human recognize
|
|
304
|
+
whether the result matched their intent without being a LOOM operator?
|
|
305
|
+
|
|
306
|
+
Look for these specific distortions:
|
|
307
|
+
|
|
308
|
+
- **Omission**: intent, boundary, or decision that exists in conversation but not in the documents.
|
|
309
|
+
- **Substitution**: a document, metric, or local optimization presented as the real result.
|
|
310
|
+
- **Drift**: a later design or Task that silently changed the intent, boundary, or accepted tradeoff.
|
|
311
|
+
- **Leap**: a claim that jumps from design to implementation without a verifiable bridge.
|
|
312
|
+
- **Blindness**: a key state the project cannot observe, such as whether a fresh Agent can start, whether
|
|
313
|
+
a done Task has real evidence, or whether a design document is stale.
|
|
314
|
+
- **Ownerless**: an exception, contradiction, or long-term maintenance item with no responsible party.
|
|
315
|
+
|
|
316
|
+
## Buildability check
|
|
317
|
+
|
|
318
|
+
After the integrity chain, also demonstrate whether you can:
|
|
319
|
+
|
|
320
|
+
1. Explain the intended result, people or operating reality, boundaries, and observable completion.
|
|
321
|
+
2. Navigate PROJECT.md into the necessary product, experience, system, contract, operations, and
|
|
322
|
+
verification documents without prior chat memory.
|
|
323
|
+
3. Identify every professional field that materially shapes the project, keep those fields distinct,
|
|
324
|
+
and explain the project-specific stance each contributes.
|
|
325
|
+
4. Select the first executable Task, justify its dependencies, load every file it names, and state the
|
|
326
|
+
concrete first edit or command.
|
|
327
|
+
5. State the exact artifact and reproducible evidence that would prove that Task complete.
|
|
328
|
+
6. Expose contradictions, missing systems, absent capability domains, generic expertise, inaccessible
|
|
329
|
+
context, invented certainty, or any point where a new Agent would have to guess.
|
|
330
|
+
|
|
331
|
+
This is Keeper attempt ${attemptNumber || '<unknown>'}. The frozen prepared digest is
|
|
332
|
+
\`${preparedDigest || '<run loom project ready>'}\`. Generate a unique run_id for this fresh Agent and
|
|
333
|
+
include both run_id and prepared_digest in the result.
|
|
334
|
+
|
|
335
|
+
Use this result shape. Keep \`gaps\` empty on pass; otherwise prefer structured gaps so the next Agent
|
|
336
|
+
receives the reason and closure evidence without interpretation loss. Mark each gap with severity
|
|
337
|
+
\`blocking\` (a fresh Agent cannot start without this being fixed) or \`minor\` (an improvement that
|
|
338
|
+
does not block the first Task). When all gaps are minor and there are 3 or fewer, LOOM will auto-pass
|
|
339
|
+
after the gaps are fixed without requiring another Keeper round:
|
|
340
|
+
|
|
341
|
+
\`\`\`json
|
|
342
|
+
{
|
|
343
|
+
"run_id": "<unique-id>",
|
|
344
|
+
"prepared_digest": "<digest-above>",
|
|
345
|
+
"verdict": "passed | needs_revision | blocked",
|
|
346
|
+
"summary": "<concise handoff judgment>",
|
|
347
|
+
"gaps": [
|
|
348
|
+
{
|
|
349
|
+
"gap": "<missing or contradictory truth>",
|
|
350
|
+
"severity": "blocking | minor",
|
|
351
|
+
"why_it_blocks_start": "<concrete consequence for a fresh Agent>",
|
|
352
|
+
"evidence_to_close": "<observable condition that would close it>"
|
|
353
|
+
}
|
|
354
|
+
],
|
|
355
|
+
"evidence": ["<file, command, or observation supporting the verdict>"]
|
|
356
|
+
}
|
|
357
|
+
\`\`\`
|
|
358
|
+
|
|
359
|
+
Record the result with \`loom keeper record --json-file <result.json>\`. Use \`passed\` only when you
|
|
360
|
+
could responsibly begin the first Task. Otherwise use \`needs_revision\` with concrete gaps and the
|
|
361
|
+
observable evidence that would close each one, or \`blocked\` when progress requires unavailable
|
|
362
|
+
authority or external state. A failed attempt returns the project to shaping; revision requires a
|
|
363
|
+
changed digest. When all gaps are minor and 3 or fewer, fixing them and running \`loom project ready\`
|
|
364
|
+
will auto-pass without a new Keeper round; otherwise another fresh Keeper is required.`;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
export const PROJECT_TEMPLATE = `# Project Whole and Document Map
|
|
368
|
+
|
|
369
|
+
> This is the concise entry point, not the container for every design decision. Describe the whole and
|
|
370
|
+
> link the documents that make it buildable. Add or remove documents according to project complexity.
|
|
371
|
+
> The Agent uses \`loom context\` to compile this with the active Task and referenced files.
|
|
372
|
+
|
|
373
|
+
## Intended result
|
|
374
|
+
|
|
375
|
+
What should exist or become possible when this project succeeds?
|
|
376
|
+
|
|
377
|
+
## People and operating reality
|
|
378
|
+
|
|
379
|
+
Who or what experiences the result, and in what real situation?
|
|
380
|
+
|
|
381
|
+
## Whole experience or behavior
|
|
382
|
+
|
|
383
|
+
Describe the coherent end-to-end result rather than a feature inventory.
|
|
384
|
+
|
|
385
|
+
## Boundaries and consequential assumptions
|
|
386
|
+
|
|
387
|
+
What must not be changed, lost, invented, or expanded without authority?
|
|
388
|
+
|
|
389
|
+
## Design document map
|
|
390
|
+
|
|
391
|
+
Link every product, experience, system, contract, verification, or operations document and state the
|
|
392
|
+
decision surface it owns. Complex subsystems should have their own files under \`.loom/design/\`.
|
|
393
|
+
|
|
394
|
+
## Professional capability map
|
|
395
|
+
|
|
396
|
+
Link each separate field dossier under \`.loom/capabilities/<field>/capability.md\` and state which
|
|
397
|
+
design decisions it changes. Do not merge distinct fields into one dossier. Capabilities are shaped in
|
|
398
|
+
four steps: \`loom capability research\` → \`synthesize\` → \`confirm\` (user confirms the scenario).
|
|
399
|
+
|
|
400
|
+
## Project structure
|
|
401
|
+
|
|
402
|
+
Point to \`.loom/STRUCTURE.md\` — where source code, tests, docs, assets, and configuration files live.
|
|
403
|
+
The Agent reads this before creating or moving files.
|
|
404
|
+
|
|
405
|
+
## Work map
|
|
406
|
+
|
|
407
|
+
Point to \`.loom/tasks.json\`; do not duplicate volatile Task state here. Each Task uses
|
|
408
|
+
\`acceptance[]\` with \`criterion\`, \`verify_by\`, and \`evidence\` fields. Completion requires one
|
|
409
|
+
\`acceptance_results\` entry per criterion with concrete evidence. Use \`done_when[]\` only for legacy
|
|
410
|
+
Tasks.
|
|
411
|
+
|
|
412
|
+
## Decision history
|
|
413
|
+
|
|
414
|
+
Consequential changes to existing decisions go in \`.loom/DECISIONS.md\`. Use \`loom decision --json-file\`
|
|
415
|
+
to record what changed, why, and which tasks were affected. \`loom check\` warns when a done Task is
|
|
416
|
+
marked affected by a later decision.
|
|
417
|
+
|
|
418
|
+
## Completion and failure
|
|
419
|
+
|
|
420
|
+
What observable evidence means the project worked? What could look complete while actually failing?
|
|
421
|
+
|
|
422
|
+
## Staged visibility and review
|
|
423
|
+
|
|
424
|
+
The human funds this project with attention and patience. Long stretches without visible progress
|
|
425
|
+
erode that patience, even when the work is sound. Design the Work Map so the human sees the project
|
|
426
|
+
growing, not just LOOM state changing.
|
|
427
|
+
|
|
428
|
+
- **Human-visible acceptance**: when designing Tasks, prefer acceptance criteria whose evidence is
|
|
429
|
+
something the human can see or feel — a command running, a page rendering, a file with real content,
|
|
430
|
+
a test passing in front of them. Machine-only verification is valid but should not be the only thing
|
|
431
|
+
the human sees for long stretches.
|
|
432
|
+
- **Staged showcase**: every few Tasks, or at each natural project milestone, show the human something
|
|
433
|
+
real that now works. Run the CLI, open the page, display the data, walk through the flow. A working
|
|
434
|
+
thing creates momentum; a status update does not.
|
|
435
|
+
- **Staged review**: at material checkpoints, review what was built — run tests, inspect code quality,
|
|
436
|
+
check against design intent. Catch drift early while it is cheap to fix. Tell the human what passed
|
|
437
|
+
and what surprised you.
|
|
438
|
+
- **Verification gate**: after a batch of Tasks, run \`loom check\` and the project's own tests together.
|
|
439
|
+
Both should pass before telling the human the batch is done. If tests fail or coverage drops, fix
|
|
440
|
+
before moving on — do not let partial work accumulate behind a green-looking summary.
|
|
441
|
+
- **Excitement is a feature**: if the project has a surface the human will enjoy seeing — a UI, a CLI
|
|
442
|
+
with clean output, a visualization, a working demo — prioritize reaching that surface early. The
|
|
443
|
+
human's "I want to see more of this" feeling is real project fuel. Do not save the satisfying part
|
|
444
|
+
for last if an early slice can deliver it.
|
|
445
|
+
|
|
446
|
+
## Keeper handoff
|
|
447
|
+
|
|
448
|
+
Before material execution, run \`loom project ready\` to freeze a digest, then ask a fresh Agent to
|
|
449
|
+
run \`loom keeper prompt\` and \`loom keeper record\`. If the Keeper returns only minor gaps (3 or fewer),
|
|
450
|
+
fixing them and running \`loom project ready\` again auto-passes without another Keeper round.
|
|
451
|
+
`;
|
|
452
|
+
|
|
453
|
+
export const STRUCTURE_TEMPLATE = `# Project structure
|
|
454
|
+
|
|
455
|
+
> Where things live in this project. The Agent reads this before creating or moving files.
|
|
456
|
+
> Update this when the structure changes. Delete sections that do not apply. Add sections
|
|
457
|
+
> that do. This is a map, not a prescription — each project declares its own conventions.
|
|
458
|
+
|
|
459
|
+
## Source code
|
|
460
|
+
|
|
461
|
+
Where implementation files go. Example: \`src/\` for application logic, \`src/core/\` for
|
|
462
|
+
domain logic, \`src/cli/\` for command-line interface.
|
|
463
|
+
|
|
464
|
+
## Tests
|
|
465
|
+
|
|
466
|
+
Where test files go and how they mirror source structure. Example: \`tests/\` mirroring
|
|
467
|
+
\`src/\` layout, or \`__tests__/\` co-located with source.
|
|
468
|
+
|
|
469
|
+
## Documents
|
|
470
|
+
|
|
471
|
+
Where project documentation goes (excluding \`.loom/\` which is LOOM state). Example:
|
|
472
|
+
\`docs/\` for user-facing docs, \`README.md\` at root for entry.
|
|
473
|
+
|
|
474
|
+
## Configuration and build
|
|
475
|
+
|
|
476
|
+
Where build configs, CI definitions, and dependency manifests go. Example:
|
|
477
|
+
\`package.json\`, \`.github/workflows/\`, \`tsconfig.json\`.
|
|
478
|
+
|
|
479
|
+
## Assets and fixtures
|
|
480
|
+
|
|
481
|
+
Where static assets, test fixtures, and data files go. Example: \`assets/\`, \`fixtures/\`,
|
|
482
|
+
\`data/\`.
|
|
483
|
+
|
|
484
|
+
## Conventions
|
|
485
|
+
|
|
486
|
+
Any naming or placement conventions the Agent should follow. Example: "one module per
|
|
487
|
+
file", "test files end with \`.test.\`", "config files are JSON not YAML".
|
|
488
|
+
`;
|
|
489
|
+
|
|
490
|
+
const DESIGN_SECTIONS = {
|
|
491
|
+
product: ['Outcome and users', 'Problem and operating reality', 'Product principles', 'Scope and non-goals', 'End-to-end behavior', 'Success and failure signals', 'Decisions and open questions', 'Related documents and capabilities'],
|
|
492
|
+
experience: ['Experience intent', 'Users and contexts', 'Journey and information architecture', 'Interaction states and transitions', 'Content, visual, and accessibility direction', 'Errors, empty states, and recovery', 'Usability verification', 'Related documents and capabilities'],
|
|
493
|
+
system: ['Responsibility in the whole', 'Inputs, outputs, and boundaries', 'Components and control flow', 'Data and state', 'Interfaces and dependencies', 'Failure, safety, and recovery', 'Implementation constraints', 'Verification strategy', 'Related documents and capabilities'],
|
|
494
|
+
contract: ['Consumers and purpose', 'Schema or command surface', 'Invariants and permissions', 'Errors and compatibility', 'Examples and fixtures', 'Contract tests', 'Related documents and capabilities'],
|
|
495
|
+
verification: ['Claims under test', 'Environments and fixtures', 'Acceptance matrix', 'Commands and evidence', 'Negative and failure tests', 'Known blind spots', 'Related documents and capabilities'],
|
|
496
|
+
operations: ['Operational outcome', 'Preconditions and authority', 'Procedure and commands', 'Safety boundaries', 'Failure detection and recovery', 'Evidence and audit trail', 'Related documents and capabilities'],
|
|
497
|
+
research: ['Decision to inform', 'Current evidence and unknowns', 'Method and sources', 'Findings', 'Conflicts and limitations', 'Project consequences', 'Follow-up verification', 'Related documents and capabilities'],
|
|
498
|
+
};
|
|
499
|
+
|
|
500
|
+
export const DESIGN_KINDS = Object.freeze(Object.keys(DESIGN_SECTIONS));
|
|
501
|
+
|
|
502
|
+
export function designTemplate({ title, kind }) {
|
|
503
|
+
const sections = DESIGN_SECTIONS[kind];
|
|
504
|
+
if (!sections) throw new Error(`Unknown design kind: ${kind}`);
|
|
505
|
+
return `# ${title}\n\n- Kind: ${kind}\n- Status: shaping\n\n${sections.map((section) => `## ${section}\n\nDescribe the project-specific decision, mechanism, boundary, or evidence owned by this section.`).join('\n\n')}\n`;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
export const CAPABILITY_TEMPLATE = ({ title }) => `# ${title}
|
|
509
|
+
|
|
510
|
+
> One dossier covers one recognizable professional field. Keep UI/UX, visual art direction, game
|
|
511
|
+
> design, psychology, biology, security, and other fields separate when their evidence and judgments
|
|
512
|
+
> differ. Put cross-field synthesis in the affected design document, not in a hybrid capability title.
|
|
513
|
+
> The kernel of a capability is a decision tree with conditional branches that captures how an expert
|
|
514
|
+
> in this field thinks — not a fixed step list or a declarative stance document. It is a resource for
|
|
515
|
+
> the Agent to use, not a script it must follow. When evidence points outside the tree, trust the
|
|
516
|
+
> evidence and update the tree.
|
|
517
|
+
|
|
518
|
+
## Field identity and boundary
|
|
519
|
+
|
|
520
|
+
Name the established field, what expertise it contributes, and what belongs to another dossier.
|
|
521
|
+
|
|
522
|
+
## Project scenario
|
|
523
|
+
|
|
524
|
+
> This section records the user-confirmed project scenario: which expert situation this project most
|
|
525
|
+
> closely resembles. The Agent must not fill this alone; it requires user confirmation via
|
|
526
|
+
> \`loom capability confirm <slug> --scenario <text>\`.
|
|
527
|
+
|
|
528
|
+
State the project scenario that determines which branches of the decision tree are active.
|
|
529
|
+
|
|
530
|
+
## Decision tree
|
|
531
|
+
|
|
532
|
+
> Each node is a named decision point an expert reaches in this field. Nodes have entry conditions,
|
|
533
|
+
> conditional options, judgment criteria, source citations, counterexamples, and outputs. A node
|
|
534
|
+
> without a source citation is not accepted. A branch without a counterexample is a fixed step in
|
|
535
|
+
> disguise.
|
|
536
|
+
|
|
537
|
+
### C1: <node name>
|
|
538
|
+
|
|
539
|
+
- entry_when: <condition under which an expert arrives at this node>
|
|
540
|
+
- options:
|
|
541
|
+
- A: <option A> → leads_to: <next node or output>
|
|
542
|
+
- B: <option B> → leads_to: <next node or output>
|
|
543
|
+
- decide_by: <evidence that determines which option to take>
|
|
544
|
+
- source: <which research material or expert narrative supports this node>
|
|
545
|
+
- counterexample: <a situation where an expert would NOT walk this path>
|
|
546
|
+
- output: <what this node produces — typically a design decision>
|
|
547
|
+
|
|
548
|
+
### C2: <node name>
|
|
549
|
+
|
|
550
|
+
<repeat the structure above for each decision node>
|
|
551
|
+
|
|
552
|
+
## Stance and rejected defaults
|
|
553
|
+
|
|
554
|
+
> The stance is subordinate to the decision tree. It records what this project refuses and why, but
|
|
555
|
+
> the decision tree carries the thinking process.
|
|
556
|
+
|
|
557
|
+
State what this project will do, why, the important tradeoffs, and which common or generic approaches it
|
|
558
|
+
will deliberately refuse.
|
|
559
|
+
|
|
560
|
+
## Failure signals
|
|
561
|
+
|
|
562
|
+
Describe characteristic weak, generic, or harmful outcomes and the observable evidence that distinguishes
|
|
563
|
+
a strong result. Experts know when they have gone wrong — record those signals here.
|
|
564
|
+
|
|
565
|
+
## Relationships without merger
|
|
566
|
+
|
|
567
|
+
Link adjacent capability dossiers and explain the tension or handoff. Do not absorb their expertise here.
|
|
568
|
+
`;
|
|
569
|
+
|
|
570
|
+
export const RESEARCH_GUIDE = `# Research guide for this capability
|
|
571
|
+
|
|
572
|
+
> This file guides what to write in the research/ directory. Delete it when you have added your own
|
|
573
|
+
> research materials. \`loom capability synthesize\` reads all .md files in this directory (except this
|
|
574
|
+
> guide) and expects them to contain expert narratives, case studies, or methodology sources that
|
|
575
|
+
> inform the decision tree.
|
|
576
|
+
|
|
577
|
+
## What to write
|
|
578
|
+
|
|
579
|
+
Create one .md file per research source. Each file should answer: **how does an expert in this field
|
|
580
|
+
think through the problems this project faces?**
|
|
581
|
+
|
|
582
|
+
Good research materials include:
|
|
583
|
+
- Expert narratives: how a practitioner describes their own decision process
|
|
584
|
+
- Case studies: real projects where this field's decisions mattered, and what happened
|
|
585
|
+
- Methodology sources: established frameworks, heuristics, or principles from the field
|
|
586
|
+
- Failure accounts: what went wrong when the field's judgment was absent or ignored
|
|
587
|
+
|
|
588
|
+
Bad research materials (will produce weak decision trees):
|
|
589
|
+
- Generic textbook summaries with no project-specific relevance
|
|
590
|
+
- Tool documentation or API references (those are not professional judgment)
|
|
591
|
+
- Marketing copy or opinion pieces without evidence
|
|
592
|
+
|
|
593
|
+
## File format
|
|
594
|
+
|
|
595
|
+
Name files descriptively: \`expert-decision-process.md\`, \`case-study-X.md\`, \`failure-account-Y.md\`.
|
|
596
|
+
Each file should be 1-3 paragraphs of substantive content. Include the source at the top:
|
|
597
|
+
|
|
598
|
+
\`\`\`markdown
|
|
599
|
+
# <descriptive title>
|
|
600
|
+
|
|
601
|
+
Source: <book, article, interview, observation, or personal experience>
|
|
602
|
+
|
|
603
|
+
<content: how the expert thinks, what they decided, what evidence they used, what happened>
|
|
604
|
+
\`\`\`
|
|
605
|
+
|
|
606
|
+
## How this feeds synthesize
|
|
607
|
+
|
|
608
|
+
\`loom capability synthesize\` checks that:
|
|
609
|
+
1. At least one .md file exists in research/ (besides this guide)
|
|
610
|
+
2. Every decision tree node (### C1, C2, ...) in capability.md has a \`source:\` field
|
|
611
|
+
3. Every node has a \`counterexample:\` field
|
|
612
|
+
|
|
613
|
+
The source field in each node should reference which research file supports it. Write research that
|
|
614
|
+
you can cite by name when you build the decision tree.
|
|
615
|
+
`;
|
|
616
|
+
|
|
617
|
+
export function evalConditionPrompt({ brief, loom, humanChannel = 'available' }) {
|
|
618
|
+
const environment = environmentProtocol({ humanChannel }).replace('## Environment availability\n\n', '');
|
|
619
|
+
return loom
|
|
620
|
+
? `# Evaluation condition\n\n${brief}\n\n${environment}\n\nWork with all ordinary Agent capabilities and tools. Use LOOM as invisible continuity infrastructure: run \`loom context --human-channel ${humanChannel}\`, maintain its disk state, and never ask the human to operate it. This condition has no extra authority or information.`
|
|
621
|
+
: `# Evaluation condition\n\n${brief}\n\n${environment}\n\nWork as a normal capable Agent with all ordinary capabilities and tools. LOOM and its files are unavailable in this condition. Use any normal planning or documentation you judge useful.`;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
export function evalJudgePrompt() {
|
|
625
|
+
return `# Blind Evil Eval judge
|
|
626
|
+
|
|
627
|
+
You receive two anonymized runs in randomized order. Do not infer framework identity. Judge observable
|
|
628
|
+
work, not framework-shaped filenames or document volume. Cite evidence for every score. Compare intent
|
|
629
|
+
fidelity, question value, whole-project coverage, professional capability depth, buildability, continuity
|
|
630
|
+
after forced resets, implementation evidence, user burden, and cost/time. Penalize unnecessary ceremony,
|
|
631
|
+
questions that do not change decisions, and documentation that a fresh Agent cannot use. Swap order and
|
|
632
|
+
judge again; mark order-sensitive conclusions unstable. Attribute missing files or path failures to a run
|
|
633
|
+
only after the anonymized packet passed its relative-layout and declared-test preflight. A system wins only if its benefit survives equal
|
|
634
|
+
model, tools, workspace, user facts, reset points, and budget.`;
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
export function promptCatalog() {
|
|
638
|
+
const placeholderState = {
|
|
639
|
+
project: { status: '<project-status>' },
|
|
640
|
+
understanding: {
|
|
641
|
+
confirmed: [],
|
|
642
|
+
assumptions: [{ id: '<assumption-id>', text: '<assumption>', status: 'active' }],
|
|
643
|
+
unresolved: [{ id: '<question-id>', question: '<material uncertainty>', impact: 'high', status: 'open' }],
|
|
644
|
+
},
|
|
645
|
+
keeper: { status: 'not_run', attempts: [] },
|
|
646
|
+
};
|
|
647
|
+
const revisionState = {
|
|
648
|
+
...placeholderState,
|
|
649
|
+
keeper: {
|
|
650
|
+
status: 'needs_revision',
|
|
651
|
+
attempts: [{
|
|
652
|
+
verdict: 'needs_revision',
|
|
653
|
+
run_id: '<fresh-run-id>',
|
|
654
|
+
summary: '<why the handoff cannot start>',
|
|
655
|
+
gaps: ['<concrete gap>'],
|
|
656
|
+
evidence: ['<observable evidence>'],
|
|
657
|
+
}],
|
|
658
|
+
},
|
|
659
|
+
};
|
|
660
|
+
return {
|
|
661
|
+
purpose: 'Complete inventory of LOOM cognitive messages. Validation errors and JSON status payloads enforce state but are not Agent prompts.',
|
|
662
|
+
layers: {
|
|
663
|
+
stable_core: AGENT_CORE,
|
|
664
|
+
environment_adaptation_available: environmentProtocol({ humanChannel: 'available' }),
|
|
665
|
+
environment_adaptation_unavailable: environmentProtocol({ humanChannel: 'unavailable' }),
|
|
666
|
+
runtime_protocol: RUNTIME_PROTOCOL,
|
|
667
|
+
execution_protocol: EXECUTION_PROTOCOL,
|
|
668
|
+
project_state: shapingContext({ state: placeholderState, taskSummary: { total: 0, done: 0, open: 0, blocked: 0, active: null }, capabilityNames: [], designNames: [] }),
|
|
669
|
+
project_state_after_keeper_failure: shapingContext({ state: revisionState, taskSummary: { total: 1, done: 0, open: 1, blocked: 0, active: null }, capabilityNames: ['<field>'], designNames: ['<system>.md'] }),
|
|
670
|
+
keeper_review_of_prior_failure: shapingContext({ state: revisionState, taskSummary: { total: 1, done: 0, open: 1, blocked: 0, active: null }, capabilityNames: ['<field>'], designNames: ['<system>.md'], forKeeper: true }),
|
|
671
|
+
current_task: '## Active Task\n\n<exact Task JSON including acceptance, implements, capability_hooks, and covers if present>\n\n---\n\n## Task context: <path from Task.reads>\n\n<exact file content>\n\n(repeated for every read path)\n\n---\n\n## Capability decision points\n\n<extracted decision-tree nodes referenced by capability_hooks, with options, criteria, sources, and counterexamples>',
|
|
672
|
+
on_demand_map: '## On-demand project context\n\n- Decision history: .loom/DECISIONS.md (read when correction or lineage matters; records what changed and why)\n- Design: .loom/design/<document>.md\n- Professional capability: .loom/capabilities/<field>/capability.md\n- Project structure: .loom/STRUCTURE.md (read before creating or moving files)',
|
|
673
|
+
keeper_context: '## Decision history (...)\n\n<exact DECISIONS.md>\n\n---\n\n## Work map summary\n\n<summary and first executable Task>\n\n---\n\n## Design document: <name>\n\n<exact content>\n\n---\n\n## Capability dossier: <name>\n\n<exact content>',
|
|
674
|
+
},
|
|
675
|
+
workspace_anchor: AGENT_ANCHOR,
|
|
676
|
+
templates: {
|
|
677
|
+
project_index: PROJECT_TEMPLATE,
|
|
678
|
+
project_structure: STRUCTURE_TEMPLATE,
|
|
679
|
+
design_documents: Object.fromEntries(DESIGN_KINDS.map((kind) => [kind, designTemplate({ title: `<${kind}-title>`, kind })])),
|
|
680
|
+
professional_capability: CAPABILITY_TEMPLATE({ title: '<recognizable-professional-field>' }),
|
|
681
|
+
decision_history: '# Decision History\n\nCurrent truth belongs in PROJECT.md and linked design documents. This file preserves consequential superseding decisions.',
|
|
682
|
+
},
|
|
683
|
+
keeper: keeperProtocol({ attemptNumber: '<attempt-number>', preparedDigest: '<prepared-digest>' }),
|
|
684
|
+
evaluation: {
|
|
685
|
+
baseline_condition: evalConditionPrompt({ brief: '<identical-raw-brief>', loom: false }),
|
|
686
|
+
loom_condition: evalConditionPrompt({ brief: '<identical-raw-brief>', loom: true }),
|
|
687
|
+
unattended_baseline_condition: evalConditionPrompt({ brief: '<identical-raw-brief>', loom: false, humanChannel: 'unavailable' }),
|
|
688
|
+
unattended_loom_condition: evalConditionPrompt({ brief: '<identical-raw-brief>', loom: true, humanChannel: 'unavailable' }),
|
|
689
|
+
blind_judge: evalJudgePrompt(),
|
|
690
|
+
},
|
|
691
|
+
composition: {
|
|
692
|
+
normal_resume: ['stable_core', 'environment_adaptation', 'runtime_protocol', 'project_state', 'PROJECT.md', 'on-demand document and capability map'],
|
|
693
|
+
active_task: ['normal_resume', 'execution_protocol', 'active Task JSON', 'exact files in Task.reads'],
|
|
694
|
+
keeper_handoff: ['keeper', 'normal_resume', 'DECISIONS.md', 'Work Map summary and first executable Task', 'all design documents', 'all professional capability dossiers'],
|
|
695
|
+
},
|
|
696
|
+
};
|
|
697
|
+
}
|