@cat-factory/kernel 0.98.0 → 0.99.1

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.
@@ -1 +1 @@
1
- {"version":3,"file":"seed.d.ts","sourceRoot":"","sources":["../../src/domain/seed.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAOjD,wBAAgB,UAAU,IAAI,KAAK,EAAE,CAgHpC;AAED;;;;GAIG;AACH,wBAAgB,aAAa,IAAI,QAAQ,EAAE,CA+hB1C;AAED,qFAAqF;AACrF,eAAO,MAAM,qBAAqB,iBAAiB,CAAA;AAEnD,qGAAqG;AACrG,eAAO,MAAM,gCAAgC,4BAA4B,CAAA;AAEzE,2FAA2F;AAC3F,eAAO,MAAM,gCAAgC,4BAA4B,CAAA;AAEzE,gFAAgF;AAChF,eAAO,MAAM,sBAAsB,kBAAkB,CAAA;AAErD,+DAA+D;AAC/D,eAAO,MAAM,sBAAsB,kBAAkB,CAAA;AACrD,eAAO,MAAM,qBAAqB,iBAAiB,CAAA;AACnD,kHAAkH;AAClH,eAAO,MAAM,sBAAsB,kBAAkB,CAAA"}
1
+ {"version":3,"file":"seed.d.ts","sourceRoot":"","sources":["../../src/domain/seed.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,MAAM,YAAY,CAAA;AAOjD,wBAAgB,UAAU,IAAI,KAAK,EAAE,CAgHpC;AA4CD;;;;GAIG;AACH,wBAAgB,aAAa,IAAI,QAAQ,EAAE,CAkd1C;AAED,qFAAqF;AACrF,eAAO,MAAM,qBAAqB,iBAAiB,CAAA;AAEnD,qGAAqG;AACrG,eAAO,MAAM,gCAAgC,4BAA4B,CAAA;AAEzE,2FAA2F;AAC3F,eAAO,MAAM,gCAAgC,4BAA4B,CAAA;AAEzE,gFAAgF;AAChF,eAAO,MAAM,sBAAsB,kBAAkB,CAAA;AAErD,+DAA+D;AAC/D,eAAO,MAAM,sBAAsB,kBAAkB,CAAA;AACrD,eAAO,MAAM,qBAAqB,iBAAiB,CAAA;AACnD,kHAAkH;AAClH,eAAO,MAAM,sBAAsB,kBAAkB,CAAA"}
@@ -113,6 +113,28 @@ export function seedBlocks() {
113
113
  }),
114
114
  ];
115
115
  }
116
+ /**
117
+ * Lower a named-step pipeline spec into the wire {@link Pipeline} (index-aligned
118
+ * `agentKinds`/`gates`/`enabled`). `gates`/`enabled` are emitted ONLY when a step actually declares
119
+ * a human gate / is disabled by default, so a plain all-enabled, gate-less pipeline stays as bare
120
+ * `agentKinds` — its persisted shape is byte-identical to the hand-authored form.
121
+ */
122
+ function definePipeline(spec) {
123
+ const norm = spec.steps.map((s) => (typeof s === 'string' ? { kind: s } : s));
124
+ const gates = norm.map((s) => s.gate === true);
125
+ const enabled = norm.map((s) => s.enabled !== false);
126
+ return {
127
+ id: spec.id,
128
+ name: spec.name,
129
+ agentKinds: norm.map((s) => s.kind),
130
+ ...(gates.some(Boolean) ? { gates } : {}),
131
+ ...(enabled.some((e) => !e) ? { enabled } : {}),
132
+ ...(spec.availability ? { availability: spec.availability } : {}),
133
+ ...(spec.labels ? { labels: spec.labels } : {}),
134
+ ...(spec.version !== undefined ? { version: spec.version } : {}),
135
+ ...(spec.public ? { public: spec.public } : {}),
136
+ };
137
+ }
116
138
  /**
117
139
  * Reusable pipelines shown in the pipeline palette on first load: the built-in catalog
118
140
  * plus any pipelines a deployment registered via `registerPipeline` (e.g. a proprietary
@@ -120,110 +142,40 @@ export function seedBlocks() {
120
142
  */
121
143
  export function seedPipelines() {
122
144
  const builtins = [
123
- {
145
+ // `requirements` runs first and reviews the collected requirements; the spec-writer then
146
+ // applies them as an increment onto the in-repo spec baseline, and only THEN does the architect
147
+ // design the solution against that written spec (the architect is spec-aware). The requirements
148
+ // review + the architecture pause for human approval (`gate: true`); the spec is NOT human-gated
149
+ // — its `spec-companion` rates it and loops the spec-writer back automatically. `blueprints`
150
+ // refreshes the service map from the new code; a `deployer` stands a kubernetes/custom env up
151
+ // for the tester (a no-op otherwise); `conflicts`/`ci`/`merger` gate + ship the PR. The two
152
+ // brainstorm dialogues are opt-in (`enabled: false`). Version bumped for the deployer reseed.
153
+ definePipeline({
124
154
  id: 'pl_full',
125
155
  name: 'Full build',
126
- // `requirements` runs first and reviews the collected requirements; the
127
- // spec-writer then applies them as an increment onto the in-repo spec baseline,
128
- // and only THEN does the
129
- // architect design the solution against that written spec (the architect is
130
- // spec-aware, so it reads `spec/` from its checkout). The requirements review and
131
- // the architecture pause for human approval (their proposals are reviewed/edited
132
- // before the next step); the spec is NOT human-gated — its `spec-companion`
133
- // (Spec Reviewer) rates it and loops the spec-writer back automatically instead.
134
- // `blueprints` runs right after implementation so the service map (and the board)
135
- // is refreshed from the just-written code, on the same PR branch. `conflicts`
136
- // then ensures the PR is mergeable with its base — looping a `conflict-resolver`
137
- // agent to merge the base in and resolve any conflicts — `ci` gates the
138
- // (now-final, up-to-date) PR branch on green CI — looping a `ci-fixer` agent on
139
- // failure — and `merger` runs last: it scores the PR and either auto-merges
140
- // (within the task's thresholds) or raises a review notification.
141
- agentKinds: [
142
- // Structured-dialogue option exploration BEFORE the requirements review (opt-in:
143
- // disabled by default in `enabled` below). Turns a vague description into a crisp
144
- // requirements direction the review then critiques.
145
- 'requirements-brainstorm',
146
- 'requirements-review',
147
- // The spec-writer applies THIS task's clarified requirements as an increment
148
- // onto the spec already committed at the branch's baseline (what's merged so
149
- // far), writing the complete updated in-repo `spec/` document onto the work
150
- // branch BEFORE the architect and coder run — so the spec (and its Gherkin
151
- // acceptance scenarios) is the source of truth the architect designs against
152
- // and the code is written to satisfy. An unmerged sibling task's work is never
153
- // visible: the only inputs are this task's requirements and the baseline. It
154
- // is NOT human-gated: the `spec-companion` (Spec Reviewer) below rates the
155
- // spec and loops the spec-writer back for automatic rework below threshold.
156
+ version: 2,
157
+ steps: [
158
+ // Opt-in structured-dialogue option exploration before the requirements review.
159
+ { kind: 'requirements-brainstorm', gate: true, enabled: false },
160
+ { kind: 'requirements-review', gate: true },
156
161
  'spec-writer',
157
- // `spec-companion` is the spec-writer's optional reviewer: it grades the
158
- // spec (especially acceptance-scenario coverage), and below its threshold
159
- // loops the spec-writer back with the feedback folded in — replacing the
160
- // human review the spec used to require.
161
162
  'spec-companion',
162
- // Structured-dialogue approach exploration BEFORE the architect (opt-in: disabled by
163
- // default in `enabled` below). Starts from the refined requirements and finalizes an
164
- // approach the architect designs against.
165
- 'architecture-brainstorm',
166
- 'architect',
163
+ // Opt-in structured-dialogue approach exploration before the architect.
164
+ { kind: 'architecture-brainstorm', gate: true, enabled: false },
165
+ { kind: 'architect', gate: true },
167
166
  'researcher',
168
167
  'coder',
169
- // `reviewer` is the coder's companion: it rates the change IMMEDIATELY after
170
- // implementation and loops the coder back for automatic rework when quality is
171
- // below threshold (see companions) — so review + rework happen before the
172
- // map/test tail runs, on already-reviewed code.
173
168
  'reviewer',
174
169
  'blueprints',
175
- // `mocker` stands up the external-dependency mocks the tester needs to run
176
- // the suite locally, so it always runs immediately before `tester`.
177
170
  'mocker',
171
+ 'deployer',
178
172
  'tester-api',
179
173
  'conflicts',
180
174
  'ci',
181
175
  'merger',
182
176
  ],
183
- // Human gates: the two opt-in brainstorm dialogues (indices 0 + 4), the context
184
- // requirements review (index 1) and the architecture proposal (`architect`, index 5).
185
- // The spec is NOT human-gated — its `spec-companion` (index 3) is the quality gate. The
186
- // `mocker` / `tester` / `conflicts` / `ci` / `merger` tail gates/decides itself.
187
- gates: [
188
- true,
189
- true,
190
- false,
191
- false,
192
- true,
193
- true,
194
- false,
195
- false,
196
- false,
197
- false,
198
- false,
199
- false,
200
- false,
201
- false,
202
- false,
203
- ],
204
- // The two brainstorm steps are opt-in: present in the preset but DISABLED by default
205
- // (indices 0 = requirements-brainstorm, 4 = architecture-brainstorm), so they are
206
- // skipped at run start unless a user toggles them on for the pipeline. Every other
207
- // step is enabled.
208
- enabled: [
209
- false,
210
- true,
211
- true,
212
- true,
213
- false,
214
- true,
215
- true,
216
- true,
217
- true,
218
- true,
219
- true,
220
- true,
221
- true,
222
- true,
223
- true,
224
- ],
225
- },
226
- {
177
+ }),
178
+ definePipeline({
227
179
  // The most thorough preset: a complex, full-stack feature run that engages
228
180
  // every valuable agent so no angle is left uncovered. It extends "Full build"
229
181
  // with the up-front researcher, the acceptance-scenario author, the external-
@@ -253,22 +205,27 @@ export function seedPipelines() {
253
205
  // conflicts → ci → merger → the same mergeability / CI / merge tail as Full build
254
206
  id: 'pl_fullstack',
255
207
  name: 'Complex fullstack feature',
256
- agentKinds: [
257
- // Opt-in structured-dialogue option exploration (disabled by default in `enabled`).
258
- 'requirements-brainstorm',
259
- 'requirements-review',
208
+ // A `deployer` runs before the tester (k8s/custom only; a no-op otherwise). Human gates: the
209
+ // two opt-in brainstorm dialogues, the requirements review, and after its companion clears
210
+ // the quality bar — the architecture (on `architect-companion`). Version bumped for the reseed.
211
+ version: 2,
212
+ steps: [
213
+ // Opt-in structured-dialogue option exploration.
214
+ { kind: 'requirements-brainstorm', gate: true, enabled: false },
215
+ { kind: 'requirements-review', gate: true },
260
216
  'researcher',
261
217
  'spec-writer',
262
218
  'spec-companion',
263
- // Opt-in structured-dialogue approach exploration (disabled by default in `enabled`).
264
- 'architecture-brainstorm',
219
+ // Opt-in structured-dialogue approach exploration.
220
+ { kind: 'architecture-brainstorm', gate: true, enabled: false },
265
221
  'architect',
266
- 'architect-companion',
222
+ { kind: 'architect-companion', gate: true },
267
223
  'mocker',
268
224
  'coder',
269
225
  'reviewer',
270
226
  'blueprints',
271
227
  'business-documenter',
228
+ 'deployer',
272
229
  'tester-api',
273
230
  'playwright',
274
231
  'documenter',
@@ -276,74 +233,18 @@ export function seedPipelines() {
276
233
  'ci',
277
234
  'merger',
278
235
  ],
279
- // Human gates: the two opt-in brainstorm dialogues (indices 0 + 5), the context
280
- // requirements review (index 1) and after its companion has cleared the quality bar —
281
- // the architecture (on `architect-companion`, index 7). The spec is NOT human-gated: its
282
- // `spec-companion` (index 4) rates it and loops the spec-writer back automatically. Every
283
- // other step (including the self-gating conflicts / ci / merger tail and the auto-only
284
- // `reviewer` companion) runs straight through.
285
- gates: [
286
- true,
287
- true,
288
- false,
289
- false,
290
- false,
291
- true,
292
- false,
293
- true,
294
- false,
295
- false,
296
- false,
297
- false,
298
- false,
299
- false,
300
- false,
301
- false,
302
- false,
303
- false,
304
- false,
305
- ],
306
- // The two brainstorm steps are opt-in: present but DISABLED by default (indices 0 =
307
- // requirements-brainstorm, 5 = architecture-brainstorm), skipped at run start unless a
308
- // user toggles them on for the pipeline. Every other step is enabled.
309
- enabled: [
310
- false,
311
- true,
312
- true,
313
- true,
314
- true,
315
- false,
316
- true,
317
- true,
318
- true,
319
- true,
320
- true,
321
- true,
322
- true,
323
- true,
324
- true,
325
- true,
326
- true,
327
- true,
328
- true,
329
- ],
330
- },
331
- {
332
- // A bug-fix preset, front-loaded with the investigate → triage pair:
333
- // bug-investigator → read the codebase from the raw report (read-only) and emit an
334
- // enriched report + an optional, confidence-gated hypothesis
335
- // clarity-review → triage that report for fixability (human gate; the iterative
336
- // answer → incorporate → re-review loop), producing the clarified
337
- // brief downstream agents consume
338
- // spec-writer → fold the clarified brief into the in-repo spec
339
- // architect → coder → reviewer → the design/implement/review core
340
- // conflicts → ci → merger → the standard mergeability / CI / merge tail
341
- // Only the clarity review is a human gate; the read-only investigator auto-advances.
236
+ }),
237
+ // A bug-fix preset, front-loaded with the investigate triage pair: `bug-investigator` reads
238
+ // the codebase from the raw report (read-only) and emits an enriched report; `clarity-review`
239
+ // triages it for fixability (the ONLY human gate the iterative answer incorporate → re-review
240
+ // loop); `spec-writer` folds the clarified brief into the spec; architect coder reviewer is
241
+ // the core; conflicts ci → merger is the standard tail.
242
+ definePipeline({
342
243
  id: 'pl_bugfix',
343
244
  name: 'Triage & fix bug',
344
- agentKinds: [
245
+ steps: [
345
246
  'bug-investigator',
346
- 'clarity-review',
247
+ { kind: 'clarity-review', gate: true },
347
248
  'spec-writer',
348
249
  'architect',
349
250
  'coder',
@@ -352,12 +253,24 @@ export function seedPipelines() {
352
253
  'ci',
353
254
  'merger',
354
255
  ],
355
- gates: [false, true, false, false, false, false, false, false, false],
356
- },
256
+ }),
357
257
  {
358
258
  id: 'pl_quick',
359
259
  name: 'Quick implement',
360
- agentKinds: ['coder', 'blueprints', 'mocker', 'tester-api', 'conflicts', 'ci', 'merger'],
260
+ // A `deployer` runs before the tester so a kubernetes/custom service gets its ephemeral env
261
+ // stood up (a no-op for docker-compose/infraless/frontend); bump the version for the reseed
262
+ // offer. Same pattern across every tester/human-test built-in below.
263
+ version: 2,
264
+ agentKinds: [
265
+ 'coder',
266
+ 'blueprints',
267
+ 'mocker',
268
+ 'deployer',
269
+ 'tester-api',
270
+ 'conflicts',
271
+ 'ci',
272
+ 'merger',
273
+ ],
361
274
  },
362
275
  // The leanest end-to-end build: implement → review → test, then the standard
363
276
  // mergeability / CI / merge tail. The `coder` (Implementer) writes the change,
@@ -368,12 +281,23 @@ export function seedPipelines() {
368
281
  {
369
282
  id: 'pl_simple',
370
283
  name: 'Simple',
371
- agentKinds: ['coder', 'reviewer', 'mocker', 'tester-api', 'conflicts', 'ci', 'merger'],
284
+ version: 2,
285
+ agentKinds: [
286
+ 'coder',
287
+ 'reviewer',
288
+ 'mocker',
289
+ 'deployer',
290
+ 'tester-api',
291
+ 'conflicts',
292
+ 'ci',
293
+ 'merger',
294
+ ],
372
295
  },
373
296
  {
374
297
  id: 'pl_integrate',
375
298
  name: 'Integrate & ship',
376
- agentKinds: ['integrator', 'mocker', 'tester-api', 'documenter'],
299
+ version: 2,
300
+ agentKinds: ['integrator', 'mocker', 'deployer', 'tester-api', 'documenter'],
377
301
  },
378
302
  // A human-in-the-loop build: implement → review, then a `human-test` gate that spins up an
379
303
  // ephemeral environment and PARKS for a person to validate the change in a live URL before
@@ -384,7 +308,11 @@ export function seedPipelines() {
384
308
  {
385
309
  id: 'pl_human_review',
386
310
  name: 'Build & human-test',
387
- agentKinds: ['coder', 'reviewer', 'human-test', 'conflicts', 'ci', 'merger'],
311
+ // The `deployer` stands the ephemeral env up before the human-test gate reads it (the gate no
312
+ // longer provisions its own — the deployer is the single provisioner; the gate loops back here
313
+ // to rebuild on a fix/recreate).
314
+ version: 2,
315
+ agentKinds: ['coder', 'reviewer', 'deployer', 'human-test', 'conflicts', 'ci', 'merger'],
388
316
  },
389
317
  // A human-code-review build: the full implement → review → map → test tail, then a
390
318
  // `human-review` gate that watches the PR for a human reviewer on GitHub before `merger`
@@ -396,11 +324,13 @@ export function seedPipelines() {
396
324
  {
397
325
  id: 'pl_pr_review',
398
326
  name: 'Build & PR review',
327
+ version: 2,
399
328
  agentKinds: [
400
329
  'coder',
401
330
  'reviewer',
402
331
  'blueprints',
403
332
  'mocker',
333
+ 'deployer',
404
334
  'tester-api',
405
335
  'conflicts',
406
336
  'ci',
@@ -427,10 +357,12 @@ export function seedPipelines() {
427
357
  id: 'pl_visual',
428
358
  name: 'Build & visual confirmation',
429
359
  labels: ['experimental'],
360
+ version: 2,
430
361
  agentKinds: [
431
362
  'coder',
432
363
  'reviewer',
433
364
  'mocker',
365
+ 'deployer',
434
366
  'tester-ui',
435
367
  'visual-confirmation',
436
368
  'conflicts',
@@ -462,7 +394,17 @@ export function seedPipelines() {
462
394
  id: 'pl_frontend',
463
395
  name: 'Frontend build & UI test',
464
396
  labels: ['experimental'],
465
- agentKinds: ['coder', 'reviewer', 'mocker', 'tester-ui', 'conflicts', 'ci', 'merger'],
397
+ version: 2,
398
+ agentKinds: [
399
+ 'coder',
400
+ 'reviewer',
401
+ 'mocker',
402
+ 'deployer',
403
+ 'tester-ui',
404
+ 'conflicts',
405
+ 'ci',
406
+ 'merger',
407
+ ],
466
408
  },
467
409
  // Recurring-pipeline presets. "Dependency updates" is a plain implement →
468
410
  // review → merge run; "Tech debt" first runs a read-only `analysis` agent and
@@ -472,11 +414,13 @@ export function seedPipelines() {
472
414
  {
473
415
  id: 'pl_dep_update',
474
416
  name: 'Dependency updates',
417
+ version: 2,
475
418
  agentKinds: [
476
419
  'coder',
477
420
  'reviewer',
478
421
  'blueprints',
479
422
  'mocker',
423
+ 'deployer',
480
424
  'tester-api',
481
425
  'conflicts',
482
426
  'ci',
@@ -486,6 +430,7 @@ export function seedPipelines() {
486
430
  {
487
431
  id: 'pl_tech_debt',
488
432
  name: 'Tech debt',
433
+ version: 2,
489
434
  agentKinds: [
490
435
  'analysis',
491
436
  'tracker',
@@ -493,13 +438,14 @@ export function seedPipelines() {
493
438
  'reviewer',
494
439
  'blueprints',
495
440
  'mocker',
441
+ 'deployer',
496
442
  'tester-api',
497
443
  'conflicts',
498
444
  'ci',
499
445
  'merger',
500
446
  ],
501
447
  },
502
- {
448
+ definePipeline({
503
449
  // The recurring bug-triage pipeline: each scheduled fire pulls ONE matching issue
504
450
  // from the workspace's configured tracker board (`bug-intake`, an engine step that
505
451
  // rewrites the reused recurring block from the picked issue), investigates the bug
@@ -524,25 +470,28 @@ export function seedPipelines() {
524
470
  id: 'pl_bug_triage',
525
471
  name: 'Bug triage (recurring)',
526
472
  availability: 'recurring',
527
- agentKinds: [
473
+ // A `deployer` runs before the tester (k8s/custom only; a no-op otherwise). Only
474
+ // `clarity-review` is a human gate; version bumped for the reseed offer.
475
+ version: 2,
476
+ steps: [
528
477
  'bug-intake',
529
478
  'bug-investigator',
530
- 'clarity-review',
479
+ { kind: 'clarity-review', gate: true },
531
480
  'task-estimator',
532
481
  'repro-test',
533
482
  'coder',
534
483
  'reviewer',
484
+ 'deployer',
535
485
  'tester-api',
536
486
  'conflicts',
537
487
  'ci',
538
488
  'merger',
539
489
  ],
540
- gates: [false, false, true, false, false, false, false, false, false, false, false],
541
- },
490
+ }),
542
491
  // A blueprint-only pipeline, run after a bootstrap to create the initial
543
492
  // service map (and populate the board) from the freshly bootstrapped repo.
544
493
  { id: 'pl_blueprint', name: 'Map service', agentKinds: ['blueprints'] },
545
- {
494
+ definePipeline({
546
495
  // The Initiative Planning pipeline — the ONLY pipeline runnable on an
547
496
  // `initiative`-level block (and initiative blocks accept no other; see the
548
497
  // engine's runnable guard). The INTERVIEWER interviews the human on goals /
@@ -555,17 +504,17 @@ export function seedPipelines() {
555
504
  // `docs/initiatives/<slug>/`) and arms the execution loop.
556
505
  id: 'pl_initiative',
557
506
  name: 'Plan initiative',
558
- agentKinds: [
507
+ // Slice 2 added the interviewer + analyst in front of the planner; version bumped for the
508
+ // reseed offer. The interviewer parks via its own controller (not a `gate`); the only human
509
+ // gate is on the planner's output, before the committer persists it.
510
+ version: 2,
511
+ steps: [
559
512
  'initiative-interviewer',
560
513
  'initiative-analyst',
561
- 'initiative-planner',
514
+ { kind: 'initiative-planner', gate: true },
562
515
  'initiative-committer',
563
516
  ],
564
- gates: [false, false, true, false],
565
- // Slice 2 added the interviewer + analyst in front of the planner; bump the
566
- // catalog version so workspaces on the v1 shape get the reseed offer.
567
- version: 2,
568
- },
517
+ }),
569
518
  // A spec-only pipeline, to (re)generate a service's unified in-repo specification
570
519
  // (and its Gherkin acceptance scenarios) independently.
571
520
  { id: 'pl_spec', name: 'Write spec', agentKinds: ['spec-writer'] },
@@ -590,7 +539,7 @@ export function seedPipelines() {
590
539
  agentKinds: ['initiative-breakdown'],
591
540
  public: true,
592
541
  },
593
- {
542
+ definePipeline({
594
543
  // FORWARD document authoring: turn a brief (+ linked PRDs/RFCs/issues) into a polished
595
544
  // in-repo Markdown document shipped as a PR. Unlike the reverse-documentation kinds
596
545
  // (documenter / business-documenter / blueprints) that describe existing code, this
@@ -616,28 +565,24 @@ export function seedPipelines() {
616
565
  // conflicts → ci → merger → the same mergeability / CI / merge tail as a code pipeline
617
566
  id: 'pl_document',
618
567
  name: 'Author a document',
619
- // Slice WS5 inserted the interactive `doc-interviewer` after the outliner and replaced
620
- // the outline's binary human gate with its iterative loop; bump the catalog version so
621
- // workspaces on the v2 shape get the reseed offer.
568
+ // Slice WS5 inserted the interactive `doc-interviewer` after the outliner and replaced the
569
+ // outline's binary human gate with its iterative loop; version bumped for the reseed offer. The
570
+ // interviewer parks via its OWN controller (not a `gate`), `doc-quality` is a polling gate
571
+ // (auto), so the only human `gate` is the converged review (`doc-reviewer`, after its loop).
622
572
  version: 3,
623
- agentKinds: [
573
+ steps: [
624
574
  'doc-researcher',
625
575
  'doc-outliner',
626
576
  'doc-interviewer',
627
577
  'doc-writer',
628
- 'doc-reviewer',
578
+ { kind: 'doc-reviewer', gate: true },
629
579
  'doc-finalizer',
630
580
  'doc-quality',
631
581
  'conflicts',
632
582
  'ci',
633
583
  'merger',
634
584
  ],
635
- // The interactive `doc-interviewer` (index 2) parks via its own controller, NOT a `gates[]`
636
- // human gate (hence `false`), so the only remaining `gates[]` human checkpoint is on the
637
- // converged review (`doc-reviewer`, index 4, after its rework loop clears the bar).
638
- // `doc-quality` is a POLLING gate (auto), so its flag is false like ci/conflicts.
639
- gates: [false, false, false, false, true, false, false, false, false, false],
640
- },
585
+ }),
641
586
  {
642
587
  // A lean document pipeline for a small / low-stakes doc: draft, auto-review loop, the
643
588
  // deterministic doc-quality gate, then the standard mergeability / CI / merge tail — so
@@ -1 +1 @@
1
- {"version":3,"file":"seed.js","sourceRoot":"","sources":["../../src/domain/seed.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"seed.js","sourceRoot":"","sources":["../../src/domain/seed.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cat-factory/kernel",
3
- "version": "0.98.0",
3
+ "version": "0.99.1",
4
4
  "description": "Shared vocabulary, pure logic, and port interfaces for the Agent Architecture Board.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -25,7 +25,7 @@
25
25
  },
26
26
  "dependencies": {
27
27
  "ai": "^6.0.219",
28
- "@cat-factory/contracts": "0.107.0"
28
+ "@cat-factory/contracts": "0.108.1"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@vitest/coverage-v8": "^4.1.9",