@bendyline/gilde 0.1.54 → 0.1.55

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.
Files changed (33) hide show
  1. package/authoring/chat-models/qwen3.5-27b-q4.json +147 -0
  2. package/authoring/gstack/evals/cso.json +21 -18
  3. package/authoring/gstack/evals/investigate.json +25 -22
  4. package/authoring/gstack/evals/plan-ceo-review.json +19 -16
  5. package/authoring/gstack/overlays/retro.json +2 -2
  6. package/authoring/gstack/wave.json +2 -2
  7. package/data/chat-models/index.json +1 -1
  8. package/data/chat-models/qw/qwen3.5-27b-q4/manifest.json +217 -0
  9. package/data/chat-models/qw/qwen3.5-27b-q4/versions/1.0.0/manifest.json +90 -0
  10. package/data/craftbook-templates/br/browser-qa-audit/versions/2.0.7/craftbook.json +620 -0
  11. package/data/craftbook-templates/br/browser-qa-audit/versions/2.0.7/test.json +376 -0
  12. package/data/craftbook-templates/de/design-system-consultation/versions/2.0.7/craftbook.json +616 -0
  13. package/data/craftbook-templates/de/design-system-consultation/versions/2.0.7/test.json +201 -0
  14. package/data/craftbook-templates/en/engineering-retrospective/versions/2.0.7/craftbook.json +566 -0
  15. package/data/craftbook-templates/en/engineering-retrospective/versions/2.0.7/test.json +191 -0
  16. package/data/craftbook-templates/ex/executive-level-review/versions/2.0.7/craftbook.json +595 -0
  17. package/data/craftbook-templates/ex/executive-level-review/versions/2.0.7/test.json +139 -0
  18. package/data/craftbook-templates/id/idea-office-hours/versions/2.0.7/craftbook.json +566 -0
  19. package/data/craftbook-templates/id/idea-office-hours/versions/2.0.7/test.json +141 -0
  20. package/data/craftbook-templates/index.json +1 -1
  21. package/data/craftbook-templates/pl/plan/versions/1.0.2/craftbook.json +222 -0
  22. package/data/craftbook-templates/pl/plan/versions/1.0.2/test.json +91 -0
  23. package/data/craftbook-templates/ro/root-cause-investigation/versions/2.0.7/craftbook.json +595 -0
  24. package/data/craftbook-templates/ro/root-cause-investigation/versions/2.0.7/test.json +157 -0
  25. package/data/craftbook-templates/se/security-architecture-review/versions/2.0.7/craftbook.json +597 -0
  26. package/data/craftbook-templates/se/security-architecture-review/versions/2.0.7/test.json +157 -0
  27. package/data/craftbook-templates/sh/ship/versions/1.1.2/craftbook.json +346 -0
  28. package/data/craftbook-templates/sh/ship/versions/1.1.2/test.json +228 -0
  29. package/data/craftbook-templates/sp/spec-authoring/versions/2.0.7/craftbook.json +599 -0
  30. package/data/craftbook-templates/sp/spec-authoring/versions/2.0.7/test.json +162 -0
  31. package/data/craftbook-templates/te/technical-documentation/versions/2.0.7/craftbook.json +577 -0
  32. package/data/craftbook-templates/te/technical-documentation/versions/2.0.7/test.json +174 -0
  33. package/package.json +1 -1
@@ -0,0 +1,616 @@
1
+ {
2
+ "id": "design-system-consultation",
3
+ "name": "Design System Consultation",
4
+ "description": "Interview for product context and taste, then propose a full design system — type, color, layout, motion — and capture it as a DESIGN.md with live preview pages.",
5
+ "basedOn": {
6
+ "name": "gstack",
7
+ "url": "https://github.com/garrytan/gstack"
8
+ },
9
+ "plan": "Build one coherent visual system from product purpose, user needs, existing interface evidence, and a memorable design intent. Make opinionated recommendations with reasons instead of presenting an arbitrary menu. Preserve useful existing conventions, state accessibility constraints, and distinguish observed patterns from outside inspiration. Deliver both a durable DESIGN.md and a self-contained HTML preview that makes the system inspectable before implementation.",
10
+ "entryStepId": "audit-interface",
11
+ "triggers": [
12
+ "design system",
13
+ "create a brand",
14
+ "design from scratch"
15
+ ],
16
+ "command": "design-system-consultation",
17
+ "toolsets": [
18
+ {
19
+ "toolsetId": "@playwright/mcp",
20
+ "optional": true,
21
+ "reason": "render and inspect the generated design-system preview when browser tools are available"
22
+ }
23
+ ],
24
+ "steps": [
25
+ {
26
+ "id": "audit-interface",
27
+ "name": "Audit the current interface",
28
+ "description": "Map the product, users, existing visual language, implementation constraints, and inconsistencies.",
29
+ "prompt": "Inspect the project description, interface entry points, components, styles, assets, screenshots, and accessibility conventions with workspace tools. Identify the product type, primary users and jobs, current design tokens and patterns worth preserving, inconsistencies, technical constraints, and missing states. If no interface exists, document that and work from the product brief rather than inventing current-state claims.\n\nObservable handoff: write the completed result to `design/current-state-audit.md` in the workspace with `write_file`. Do not merely describe what the file would contain. Re-read it with `read_file` before finishing this phase and repair any incomplete sections.",
30
+ "suggestedRole": "product designer",
31
+ "advanceWhen": {
32
+ "file": "design/current-state-audit.md",
33
+ "minBytes": 900,
34
+ "sniff": "nonempty",
35
+ "requireChange": true,
36
+ "goto": "design-brief"
37
+ },
38
+ "gate": {
39
+ "at": "completion",
40
+ "checks": [
41
+ {
42
+ "kind": "minBytes",
43
+ "file": "design/current-state-audit.md",
44
+ "bytes": 900
45
+ },
46
+ {
47
+ "kind": "sniff",
48
+ "file": "design/current-state-audit.md",
49
+ "sniff": "nonempty"
50
+ },
51
+ {
52
+ "kind": "contains",
53
+ "file": "design/current-state-audit.md",
54
+ "pattern": "^##\\s+Product and users",
55
+ "flags": "im",
56
+ "label": "Product and users section"
57
+ },
58
+ {
59
+ "kind": "contains",
60
+ "file": "design/current-state-audit.md",
61
+ "pattern": "^##\\s+Existing language",
62
+ "flags": "im",
63
+ "label": "Existing language section"
64
+ },
65
+ {
66
+ "kind": "contains",
67
+ "file": "design/current-state-audit.md",
68
+ "pattern": "^##\\s+Inconsistencies",
69
+ "flags": "im",
70
+ "label": "Inconsistencies section"
71
+ },
72
+ {
73
+ "kind": "contains",
74
+ "file": "design/current-state-audit.md",
75
+ "pattern": "^##\\s+Constraints",
76
+ "flags": "im",
77
+ "label": "Constraints section"
78
+ },
79
+ {
80
+ "kind": "contains",
81
+ "file": "design/current-state-audit.md",
82
+ "pattern": "^##\\s+Accessibility",
83
+ "flags": "im",
84
+ "label": "Accessibility section"
85
+ }
86
+ ],
87
+ "onReject": "audit-interface",
88
+ "maxAttempts": 3
89
+ },
90
+ "next": "design-brief",
91
+ "toolPolicy": {
92
+ "disallowToolsets": [
93
+ "@playwright/mcp"
94
+ ],
95
+ "disallowBuiltinToolsets": [
96
+ "ai-apps",
97
+ "archives",
98
+ "artifacts",
99
+ "audio",
100
+ "browser-automation",
101
+ "code-execution",
102
+ "craftbooks",
103
+ "data-tables",
104
+ "entity-intel",
105
+ "git",
106
+ "image-intel",
107
+ "images",
108
+ "role-delegation",
109
+ "role-delegation-escalation",
110
+ "security-intel",
111
+ "team-management",
112
+ "videos",
113
+ "web"
114
+ ],
115
+ "outputMedium": "workspace"
116
+ }
117
+ },
118
+ {
119
+ "id": "design-brief",
120
+ "name": "Lock the design brief",
121
+ "description": "Define the memorable intent, principles, references, exclusions, and success tests.",
122
+ "prompt": "Use the audit to pre-fill a concise design brief. Ask the user one high-leverage question at a time with `ask_user_question`: confirm audience and product posture, the one thing the experience should be remembered for, useful references, strong dislikes, brand or accessibility constraints, and the most important workflows. When research tools are available and the user wants it, collect relevant outside patterns with sources; otherwise label proposals as design judgment. Recommend a direction and explain why it fits.\n\nObservable handoff: write the completed result to `design/design-brief.md` in the workspace with `write_file`. Do not merely describe what the file would contain. Re-read it with `read_file` before finishing this phase and repair any incomplete sections.",
123
+ "suggestedRole": "design strategist",
124
+ "advanceWhen": {
125
+ "file": "design/design-brief.md",
126
+ "minBytes": 800,
127
+ "sniff": "nonempty",
128
+ "requireChange": true,
129
+ "goto": "propose-system"
130
+ },
131
+ "gate": {
132
+ "at": "completion",
133
+ "checks": [
134
+ {
135
+ "kind": "minBytes",
136
+ "file": "design/design-brief.md",
137
+ "bytes": 800
138
+ },
139
+ {
140
+ "kind": "sniff",
141
+ "file": "design/design-brief.md",
142
+ "sniff": "nonempty"
143
+ },
144
+ {
145
+ "kind": "contains",
146
+ "file": "design/design-brief.md",
147
+ "pattern": "^##\\s+Memorable intent",
148
+ "flags": "im",
149
+ "label": "Memorable intent section"
150
+ },
151
+ {
152
+ "kind": "contains",
153
+ "file": "design/design-brief.md",
154
+ "pattern": "^##\\s+Design principles",
155
+ "flags": "im",
156
+ "label": "Design principles section"
157
+ },
158
+ {
159
+ "kind": "contains",
160
+ "file": "design/design-brief.md",
161
+ "pattern": "^##\\s+References",
162
+ "flags": "im",
163
+ "label": "References section"
164
+ },
165
+ {
166
+ "kind": "contains",
167
+ "file": "design/design-brief.md",
168
+ "pattern": "^##\\s+Avoid",
169
+ "flags": "im",
170
+ "label": "Avoid section"
171
+ },
172
+ {
173
+ "kind": "contains",
174
+ "file": "design/design-brief.md",
175
+ "pattern": "^##\\s+Success tests",
176
+ "flags": "im",
177
+ "label": "Success tests section"
178
+ }
179
+ ],
180
+ "onReject": "design-brief",
181
+ "maxAttempts": 3
182
+ },
183
+ "next": "propose-system",
184
+ "toolPolicy": {
185
+ "disallowToolsets": [
186
+ "@playwright/mcp"
187
+ ],
188
+ "disallowBuiltinToolsets": [
189
+ "ai-apps",
190
+ "archives",
191
+ "artifacts",
192
+ "audio",
193
+ "browser-automation",
194
+ "code-execution",
195
+ "craftbooks",
196
+ "data-tables",
197
+ "entity-intel",
198
+ "git",
199
+ "image-intel",
200
+ "images",
201
+ "role-delegation",
202
+ "role-delegation-escalation",
203
+ "security-intel",
204
+ "team-management",
205
+ "videos",
206
+ "web"
207
+ ],
208
+ "outputMedium": "workspace"
209
+ }
210
+ },
211
+ {
212
+ "id": "propose-system",
213
+ "name": "Propose and render the design system",
214
+ "description": "Specify the system and render a realistic, accessible preview of its important states.",
215
+ "prompt": "Create `DESIGN.md` from the audit and brief, covering foundations, type scale, color roles and contrast, spacing, grid, shape, elevation, iconography, motion, components, states, responsive behavior, content voice, accessibility, and adoption sequence. Use exact reusable tokens and explain how every choice serves the memorable intent. Also create `previews/design-system.html`: a self-contained, responsive page that applies the proposed tokens to representative navigation, type, controls, cards, data or content, empty, loading, error, focus, hover, and disabled states. Inspect it with browser tools when available and record what was actually checked.\n\nObservable handoff: write the completed result to `DESIGN.md` in the workspace with `write_file`. Do not merely describe what the file would contain. Re-read it with `read_file` before finishing this phase and repair any incomplete sections.",
216
+ "suggestedRole": "design systems lead",
217
+ "advanceWhen": {
218
+ "file": "DESIGN.md",
219
+ "minBytes": 1800,
220
+ "sniff": "nonempty",
221
+ "requireChange": true,
222
+ "goto": "evaluate"
223
+ },
224
+ "gate": {
225
+ "at": "completion",
226
+ "checks": [
227
+ {
228
+ "kind": "minBytes",
229
+ "file": "DESIGN.md",
230
+ "bytes": 1800
231
+ },
232
+ {
233
+ "kind": "sniff",
234
+ "file": "DESIGN.md",
235
+ "sniff": "nonempty"
236
+ },
237
+ {
238
+ "kind": "contains",
239
+ "file": "DESIGN.md",
240
+ "pattern": "^##\\s+Design intent",
241
+ "flags": "im",
242
+ "label": "Design intent section"
243
+ },
244
+ {
245
+ "kind": "contains",
246
+ "file": "DESIGN.md",
247
+ "pattern": "^##\\s+Tokens",
248
+ "flags": "im",
249
+ "label": "Tokens section"
250
+ },
251
+ {
252
+ "kind": "contains",
253
+ "file": "DESIGN.md",
254
+ "pattern": "^##\\s+Typography",
255
+ "flags": "im",
256
+ "label": "Typography section"
257
+ },
258
+ {
259
+ "kind": "contains",
260
+ "file": "DESIGN.md",
261
+ "pattern": "^##\\s+Color",
262
+ "flags": "im",
263
+ "label": "Color section"
264
+ },
265
+ {
266
+ "kind": "contains",
267
+ "file": "DESIGN.md",
268
+ "pattern": "^##\\s+Components and states",
269
+ "flags": "im",
270
+ "label": "Components and states section"
271
+ },
272
+ {
273
+ "kind": "contains",
274
+ "file": "DESIGN.md",
275
+ "pattern": "^##\\s+Accessibility",
276
+ "flags": "im",
277
+ "label": "Accessibility section"
278
+ },
279
+ {
280
+ "kind": "contains",
281
+ "file": "DESIGN.md",
282
+ "pattern": "^##\\s+Adoption",
283
+ "flags": "im",
284
+ "label": "Adoption section"
285
+ },
286
+ {
287
+ "kind": "minBytes",
288
+ "file": "previews/design-system.html",
289
+ "bytes": 1800
290
+ },
291
+ {
292
+ "kind": "htmlLint",
293
+ "file": "previews/design-system.html"
294
+ }
295
+ ],
296
+ "onReject": "propose-system",
297
+ "maxAttempts": 3
298
+ },
299
+ "next": "evaluate",
300
+ "toolPolicy": {
301
+ "disallowToolsets": [
302
+ "@playwright/mcp"
303
+ ],
304
+ "disallowBuiltinToolsets": [
305
+ "ai-apps",
306
+ "archives",
307
+ "artifacts",
308
+ "audio",
309
+ "browser-automation",
310
+ "code-execution",
311
+ "craftbooks",
312
+ "data-tables",
313
+ "entity-intel",
314
+ "git",
315
+ "image-intel",
316
+ "images",
317
+ "role-delegation",
318
+ "role-delegation-escalation",
319
+ "security-intel",
320
+ "team-management",
321
+ "videos",
322
+ "web"
323
+ ],
324
+ "outputMedium": "workspace"
325
+ }
326
+ },
327
+ {
328
+ "id": "evaluate",
329
+ "name": "Evaluate the deliverable",
330
+ "description": "Independently grade the observable deliverable and route it to finish, repair, or user escalation.",
331
+ "prompt": "Review `DESIGN.md`, `previews/design-system.html`, `design/current-state-audit.md`, `design/design-brief.md` against every criterion below. Inspect the underlying evidence files named by the workflow; do not grade from the author's summary alone.\n\n1. The system visibly serves the product, users, memorable intent, and real implementation constraints.\n2. Typography, color, spacing, layout, shape, motion, content, and components form a coherent system rather than independent preferences.\n3. Tokens are specific and reusable, with responsive rules and all important interaction states.\n4. Contrast, focus, reduced motion, keyboard use, readability, and error communication have explicit treatment.\n5. The HTML preview is complete, renders without structural errors, and demonstrates representative states rather than a static swatch sheet.\n6. Existing strengths, outside sources, design judgment, and unresolved assumptions are labeled honestly.\n\nOpen `DESIGN.md`, `previews/design-system.html`, `design/current-state-audit.md`, `design/design-brief.md` with `read_file`. Write the evidence-backed review to `reviews/design-system-consultation-review.md` in the artifacts drawer with `write_artifact`. Give each criterion a PASS or FAIL with a concrete path, excerpt, measurement, or observed behavior. End with exactly `Verdict: PASS` or `Verdict: REVISE`. Then use `advance_task_step` for the active task: PASS routes to `finish`; REVISE routes to `repair` for review rounds 1 through 2, and the 3th REVISE routes to `needs-user`. Never route to finish while a criterion is unmet.",
332
+ "suggestedRole": "product design reviewer",
333
+ "consumes": [
334
+ {
335
+ "file": "DESIGN.md"
336
+ },
337
+ {
338
+ "file": "previews/design-system.html"
339
+ },
340
+ {
341
+ "file": "design/current-state-audit.md"
342
+ },
343
+ {
344
+ "file": "design/design-brief.md"
345
+ }
346
+ ],
347
+ "gate": {
348
+ "at": "completion",
349
+ "checks": [
350
+ {
351
+ "kind": "minBytes",
352
+ "file": "reviews/design-system-consultation-review.md",
353
+ "bytes": 400,
354
+ "artifact": true
355
+ },
356
+ {
357
+ "kind": "contains",
358
+ "file": "reviews/design-system-consultation-review.md",
359
+ "pattern": "Verdict:\\s*(?:PASS|REVISE)",
360
+ "flags": "i",
361
+ "label": "explicit PASS or REVISE verdict",
362
+ "artifact": true
363
+ }
364
+ ],
365
+ "onReject": "evaluate",
366
+ "maxAttempts": 3
367
+ },
368
+ "next": "repair",
369
+ "toolPolicy": {
370
+ "disallowToolsets": [
371
+ "@playwright/mcp"
372
+ ],
373
+ "disallowBuiltinToolsets": [
374
+ "ai-apps",
375
+ "archives",
376
+ "audio",
377
+ "browser-automation",
378
+ "code-execution",
379
+ "craftbooks",
380
+ "data-tables",
381
+ "entity-intel",
382
+ "git",
383
+ "image-intel",
384
+ "images",
385
+ "role-delegation",
386
+ "role-delegation-escalation",
387
+ "security-intel",
388
+ "team-management",
389
+ "videos",
390
+ "web",
391
+ "workspace-fs-write"
392
+ ],
393
+ "outputMedium": "artifact"
394
+ }
395
+ },
396
+ {
397
+ "id": "repair",
398
+ "name": "Repair the deliverable",
399
+ "description": "Fix only the concrete gaps from the latest independent review.",
400
+ "prompt": "Read `reviews/design-system-consultation-review.md` with `read_artifact` and repair every failed criterion in `DESIGN.md`, `previews/design-system.html`, `design/current-state-audit.md`, `design/design-brief.md`. Make changes on each file's declared surface (`write_artifact` for artifact inputs, `write_file` for workspace inputs), not in task notes or a reply. Preserve evidence that already passed. Re-run or re-check anything the reviewer found unproven. Ensure `DESIGN.md` is genuinely updated this turn so the repair is observable, then hand it back for independent evaluation.",
401
+ "suggestedRole": "design systems lead",
402
+ "consumes": [
403
+ {
404
+ "file": "reviews/design-system-consultation-review.md",
405
+ "artifact": true
406
+ },
407
+ {
408
+ "file": "DESIGN.md"
409
+ },
410
+ {
411
+ "file": "previews/design-system.html"
412
+ },
413
+ {
414
+ "file": "design/current-state-audit.md"
415
+ },
416
+ {
417
+ "file": "design/design-brief.md"
418
+ }
419
+ ],
420
+ "advanceWhen": {
421
+ "file": "DESIGN.md",
422
+ "minBytes": 1800,
423
+ "sniff": "nonempty",
424
+ "requireChange": true,
425
+ "goto": "evaluate"
426
+ },
427
+ "gate": {
428
+ "at": "completion",
429
+ "checks": [
430
+ {
431
+ "kind": "minBytes",
432
+ "file": "DESIGN.md",
433
+ "bytes": 1800
434
+ },
435
+ {
436
+ "kind": "sniff",
437
+ "file": "DESIGN.md",
438
+ "sniff": "nonempty"
439
+ },
440
+ {
441
+ "kind": "contains",
442
+ "file": "DESIGN.md",
443
+ "pattern": "^##\\s+Design intent",
444
+ "flags": "im",
445
+ "label": "Design intent section"
446
+ },
447
+ {
448
+ "kind": "contains",
449
+ "file": "DESIGN.md",
450
+ "pattern": "^##\\s+Tokens",
451
+ "flags": "im",
452
+ "label": "Tokens section"
453
+ },
454
+ {
455
+ "kind": "contains",
456
+ "file": "DESIGN.md",
457
+ "pattern": "^##\\s+Typography",
458
+ "flags": "im",
459
+ "label": "Typography section"
460
+ },
461
+ {
462
+ "kind": "contains",
463
+ "file": "DESIGN.md",
464
+ "pattern": "^##\\s+Color",
465
+ "flags": "im",
466
+ "label": "Color section"
467
+ },
468
+ {
469
+ "kind": "contains",
470
+ "file": "DESIGN.md",
471
+ "pattern": "^##\\s+Components and states",
472
+ "flags": "im",
473
+ "label": "Components and states section"
474
+ },
475
+ {
476
+ "kind": "contains",
477
+ "file": "DESIGN.md",
478
+ "pattern": "^##\\s+Accessibility",
479
+ "flags": "im",
480
+ "label": "Accessibility section"
481
+ },
482
+ {
483
+ "kind": "contains",
484
+ "file": "DESIGN.md",
485
+ "pattern": "^##\\s+Adoption",
486
+ "flags": "im",
487
+ "label": "Adoption section"
488
+ },
489
+ {
490
+ "kind": "minBytes",
491
+ "file": "previews/design-system.html",
492
+ "bytes": 1800
493
+ },
494
+ {
495
+ "kind": "htmlLint",
496
+ "file": "previews/design-system.html"
497
+ }
498
+ ],
499
+ "onReject": "repair",
500
+ "maxAttempts": 3
501
+ },
502
+ "next": "evaluate",
503
+ "toolPolicy": {
504
+ "disallowToolsets": [
505
+ "@playwright/mcp"
506
+ ],
507
+ "disallowBuiltinToolsets": [
508
+ "ai-apps",
509
+ "archives",
510
+ "audio",
511
+ "browser-automation",
512
+ "code-execution",
513
+ "craftbooks",
514
+ "data-tables",
515
+ "entity-intel",
516
+ "git",
517
+ "image-intel",
518
+ "images",
519
+ "role-delegation",
520
+ "role-delegation-escalation",
521
+ "security-intel",
522
+ "team-management",
523
+ "videos",
524
+ "web"
525
+ ],
526
+ "outputMedium": "workspace",
527
+ "additionalOutputMedia": [
528
+ "artifact",
529
+ "task-note"
530
+ ]
531
+ }
532
+ },
533
+ {
534
+ "id": "finish",
535
+ "name": "Finish",
536
+ "description": "All deterministic and reviewer criteria passed.",
537
+ "prompt": "The independent review passed. Read `reviews/design-system-consultation-review.md` with `read_artifact`, then use `write_task_note` to record a concise DONE summary with the final deliverable paths (`DESIGN.md`, `previews/design-system.html`, `design/current-state-audit.md`, `design/design-brief.md`) and the evidence that each acceptance criterion passed. Report DONE without starting new work.",
538
+ "suggestedRole": "project lead",
539
+ "consumes": [
540
+ {
541
+ "file": "reviews/design-system-consultation-review.md",
542
+ "artifact": true
543
+ }
544
+ ],
545
+ "terminal": true,
546
+ "toolPolicy": {
547
+ "disallowToolsets": [
548
+ "@playwright/mcp"
549
+ ],
550
+ "disallowBuiltinToolsets": [
551
+ "ai-apps",
552
+ "archives",
553
+ "audio",
554
+ "browser-automation",
555
+ "code-execution",
556
+ "craftbooks",
557
+ "data-tables",
558
+ "entity-intel",
559
+ "git",
560
+ "image-intel",
561
+ "images",
562
+ "role-delegation",
563
+ "role-delegation-escalation",
564
+ "security-intel",
565
+ "team-management",
566
+ "videos",
567
+ "web",
568
+ "workspace-fs-write"
569
+ ],
570
+ "outputMedium": "task-note"
571
+ }
572
+ },
573
+ {
574
+ "id": "needs-user",
575
+ "name": "Escalate unresolved concerns",
576
+ "description": "The bounded repair loop ended without a defensible pass.",
577
+ "prompt": "The deliverable did not pass after 3 review rounds. Do not claim success. Read `reviews/design-system-consultation-review.md` with `read_artifact`, then use `write_task_note` to record DONE_WITH_CONCERNS: the unmet criteria, what was attempted, the affected paths, and the smallest user decision or missing input needed to continue.",
578
+ "suggestedRole": "project lead",
579
+ "consumes": [
580
+ {
581
+ "file": "reviews/design-system-consultation-review.md",
582
+ "artifact": true
583
+ }
584
+ ],
585
+ "terminal": true,
586
+ "toolPolicy": {
587
+ "disallowToolsets": [
588
+ "@playwright/mcp"
589
+ ],
590
+ "disallowBuiltinToolsets": [
591
+ "ai-apps",
592
+ "archives",
593
+ "audio",
594
+ "browser-automation",
595
+ "code-execution",
596
+ "craftbooks",
597
+ "data-tables",
598
+ "entity-intel",
599
+ "git",
600
+ "image-intel",
601
+ "images",
602
+ "role-delegation",
603
+ "role-delegation-escalation",
604
+ "security-intel",
605
+ "team-management",
606
+ "videos",
607
+ "web",
608
+ "workspace-fs-write"
609
+ ],
610
+ "outputMedium": "task-note"
611
+ }
612
+ }
613
+ ],
614
+ "version": "2.0.7",
615
+ "releasedAt": "2026-09-04T13:46:25Z"
616
+ }