@cleocode/core 2026.4.5 → 2026.4.6

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 (144) hide show
  1. package/dist/discovery.d.ts +69 -0
  2. package/dist/discovery.d.ts.map +1 -0
  3. package/dist/index.d.ts +3 -2
  4. package/dist/index.d.ts.map +1 -1
  5. package/dist/index.js +1643 -2349
  6. package/dist/index.js.map +4 -4
  7. package/dist/init.d.ts +51 -0
  8. package/dist/init.d.ts.map +1 -1
  9. package/dist/internal.d.ts +9 -1
  10. package/dist/internal.d.ts.map +1 -1
  11. package/dist/lifecycle/default-chain.d.ts +8 -2
  12. package/dist/lifecycle/default-chain.d.ts.map +1 -1
  13. package/dist/lifecycle/index.d.ts +1 -0
  14. package/dist/lifecycle/index.d.ts.map +1 -1
  15. package/dist/lifecycle/stage-guidance.d.ts +140 -0
  16. package/dist/lifecycle/stage-guidance.d.ts.map +1 -0
  17. package/dist/orchestration/protocol-validators.d.ts +122 -3
  18. package/dist/orchestration/protocol-validators.d.ts.map +1 -1
  19. package/dist/paths.d.ts +91 -0
  20. package/dist/paths.d.ts.map +1 -1
  21. package/dist/scaffold.d.ts +31 -1
  22. package/dist/scaffold.d.ts.map +1 -1
  23. package/dist/skills/dispatch.d.ts +1 -1
  24. package/dist/skills/skill-paths.d.ts +9 -6
  25. package/dist/skills/skill-paths.d.ts.map +1 -1
  26. package/dist/validation/protocols/_shared.d.ts +40 -0
  27. package/dist/validation/protocols/_shared.d.ts.map +1 -0
  28. package/dist/validation/protocols/architecture-decision.d.ts +23 -0
  29. package/dist/validation/protocols/architecture-decision.d.ts.map +1 -0
  30. package/dist/validation/protocols/artifact-publish.d.ts +22 -0
  31. package/dist/validation/protocols/artifact-publish.d.ts.map +1 -0
  32. package/dist/validation/protocols/consensus.d.ts +11 -17
  33. package/dist/validation/protocols/consensus.d.ts.map +1 -1
  34. package/dist/validation/protocols/contribution.d.ts +12 -17
  35. package/dist/validation/protocols/contribution.d.ts.map +1 -1
  36. package/dist/validation/protocols/decomposition.d.ts +18 -21
  37. package/dist/validation/protocols/decomposition.d.ts.map +1 -1
  38. package/dist/validation/protocols/implementation.d.ts +9 -17
  39. package/dist/validation/protocols/implementation.d.ts.map +1 -1
  40. package/dist/validation/protocols/provenance.d.ts +23 -0
  41. package/dist/validation/protocols/provenance.d.ts.map +1 -0
  42. package/dist/validation/protocols/release.d.ts +25 -0
  43. package/dist/validation/protocols/release.d.ts.map +1 -0
  44. package/dist/validation/protocols/research.d.ts +9 -17
  45. package/dist/validation/protocols/research.d.ts.map +1 -1
  46. package/dist/validation/protocols/specification.d.ts +7 -17
  47. package/dist/validation/protocols/specification.d.ts.map +1 -1
  48. package/dist/validation/protocols/testing.d.ts +22 -0
  49. package/dist/validation/protocols/testing.d.ts.map +1 -0
  50. package/dist/validation/protocols/validation.d.ts +22 -0
  51. package/dist/validation/protocols/validation.d.ts.map +1 -0
  52. package/package.json +7 -7
  53. package/src/__tests__/injection-mvi-tiers.test.js +54 -90
  54. package/src/__tests__/injection-mvi-tiers.test.js.map +1 -1
  55. package/src/discovery.ts +235 -0
  56. package/src/hooks/handlers/__tests__/hook-automation-e2e.test.js +3 -1
  57. package/src/hooks/handlers/__tests__/hook-automation-e2e.test.js.map +1 -1
  58. package/src/index.ts +16 -0
  59. package/src/init.ts +196 -0
  60. package/src/internal.ts +31 -1
  61. package/src/lifecycle/default-chain.ts +11 -2
  62. package/src/lifecycle/index.ts +10 -0
  63. package/src/lifecycle/stage-guidance.ts +282 -0
  64. package/src/metrics/__tests__/provider-detection.test.js +19 -7
  65. package/src/metrics/__tests__/provider-detection.test.js.map +1 -1
  66. package/src/orchestration/__tests__/protocol-validators.test.js +228 -8
  67. package/src/orchestration/__tests__/protocol-validators.test.js.map +1 -1
  68. package/src/orchestration/__tests__/protocol-validators.test.ts +259 -7
  69. package/src/orchestration/protocol-validators.ts +419 -4
  70. package/src/paths.ts +110 -0
  71. package/src/scaffold.ts +240 -4
  72. package/src/skills/dispatch.ts +6 -6
  73. package/src/skills/skill-paths.ts +27 -23
  74. package/src/validation/protocols/_shared.ts +88 -0
  75. package/src/validation/protocols/architecture-decision.ts +52 -0
  76. package/src/validation/protocols/artifact-publish.ts +49 -0
  77. package/src/validation/protocols/consensus.ts +44 -74
  78. package/src/validation/protocols/contribution.ts +28 -65
  79. package/src/validation/protocols/decomposition.ts +37 -64
  80. package/src/validation/protocols/implementation.ts +25 -65
  81. package/src/validation/protocols/protocols-markdown/architecture-decision.md +303 -0
  82. package/src/validation/protocols/protocols-markdown/artifact-publish.md +600 -0
  83. package/src/validation/protocols/protocols-markdown/consensus.md +322 -0
  84. package/src/validation/protocols/protocols-markdown/contribution.md +388 -0
  85. package/src/validation/protocols/protocols-markdown/decomposition.md +421 -0
  86. package/src/validation/protocols/protocols-markdown/implementation.md +357 -0
  87. package/src/validation/protocols/protocols-markdown/provenance.md +613 -0
  88. package/src/validation/protocols/protocols-markdown/release.md +783 -0
  89. package/src/validation/protocols/protocols-markdown/research.md +261 -0
  90. package/src/validation/protocols/protocols-markdown/specification.md +300 -0
  91. package/src/validation/protocols/protocols-markdown/testing.md +287 -0
  92. package/src/validation/protocols/protocols-markdown/validation.md +242 -0
  93. package/src/validation/protocols/provenance.ts +50 -0
  94. package/src/validation/protocols/release.ts +44 -0
  95. package/src/validation/protocols/research.ts +25 -87
  96. package/src/validation/protocols/specification.ts +27 -89
  97. package/src/validation/protocols/testing.ts +46 -0
  98. package/src/validation/protocols/validation.ts +46 -0
  99. package/dist/validation/protocols/release-protocol.d.ts +0 -27
  100. package/dist/validation/protocols/release-protocol.d.ts.map +0 -1
  101. package/dist/validation/protocols/testing-protocol.d.ts +0 -27
  102. package/dist/validation/protocols/testing-protocol.d.ts.map +0 -1
  103. package/dist/validation/protocols/validation-protocol.d.ts +0 -27
  104. package/dist/validation/protocols/validation-protocol.d.ts.map +0 -1
  105. package/schemas/agent-configs.schema.json +0 -120
  106. package/schemas/agent-registry.schema.json +0 -132
  107. package/schemas/archive.schema.json +0 -450
  108. package/schemas/brain-decision.schema.json +0 -69
  109. package/schemas/brain-learning.schema.json +0 -57
  110. package/schemas/brain-pattern.schema.json +0 -72
  111. package/schemas/critical-path.schema.json +0 -246
  112. package/schemas/deps-cache.schema.json +0 -97
  113. package/schemas/doctor-output.schema.json +0 -283
  114. package/schemas/error.schema.json +0 -161
  115. package/schemas/global-config.schema.json +0 -219
  116. package/schemas/grade.schema.json +0 -49
  117. package/schemas/log.schema.json +0 -250
  118. package/schemas/metrics.schema.json +0 -328
  119. package/schemas/migrations.schema.json +0 -150
  120. package/schemas/nexus-registry.schema.json +0 -90
  121. package/schemas/operation-constitution.schema.json +0 -438
  122. package/schemas/output.schema.json +0 -164
  123. package/schemas/projects-registry.schema.json +0 -107
  124. package/schemas/protocol-frontmatter.schema.json +0 -72
  125. package/schemas/rcasd-consensus-report.schema.json +0 -10
  126. package/schemas/rcasd-evidence.schema.json +0 -42
  127. package/schemas/rcasd-gate-result.schema.json +0 -46
  128. package/schemas/rcasd-hitl-resolution.schema.json +0 -10
  129. package/schemas/rcasd-index.schema.json +0 -10
  130. package/schemas/rcasd-manifest.schema.json +0 -10
  131. package/schemas/rcasd-research-output.schema.json +0 -10
  132. package/schemas/rcasd-spec-frontmatter.schema.json +0 -10
  133. package/schemas/rcasd-stage-transition.schema.json +0 -38
  134. package/schemas/releases.schema.json +0 -267
  135. package/schemas/skills-manifest.schema.json +0 -91
  136. package/schemas/spec-index.schema.json +0 -196
  137. package/schemas/system-flow-atlas.schema.json +0 -125
  138. package/src/conduit/__tests__/dual-api-e2e.test.d.ts.map +0 -1
  139. package/src/conduit/__tests__/dual-api-e2e.test.js +0 -178
  140. package/src/conduit/__tests__/dual-api-e2e.test.js.map +0 -1
  141. package/src/conduit/__tests__/dual-api-e2e.test.ts +0 -212
  142. package/src/validation/protocols/release-protocol.ts +0 -80
  143. package/src/validation/protocols/testing-protocol.ts +0 -93
  144. package/src/validation/protocols/validation-protocol.ts +0 -93
package/dist/paths.d.ts CHANGED
@@ -277,6 +277,97 @@ export declare function getBackupDir(cwd?: string): string;
277
277
  * ```
278
278
  */
279
279
  export declare function getGlobalConfigPath(): string;
280
+ /**
281
+ * Get the Global Justfile Hub directory.
282
+ *
283
+ * The hub stores cross-project recipe libraries agents can run in ANY project
284
+ * (cleo-bootstrap, rcasd-init, schema-validate, lint-standard). Both humans
285
+ * (via editor) and the meta Cleo Chef Agent write recipes here.
286
+ *
287
+ * @returns Absolute path to the global-recipes directory under CLEO home
288
+ *
289
+ * @remarks
290
+ * Returns `{cleoHome}/global-recipes`. Created by `ensureGlobalHome()`.
291
+ *
292
+ * @example
293
+ * ```typescript
294
+ * const dir = getCleoGlobalRecipesDir();
295
+ * // Linux: "/home/user/.local/share/cleo/global-recipes"
296
+ * ```
297
+ */
298
+ export declare function getCleoGlobalRecipesDir(): string;
299
+ /**
300
+ * Get the absolute path to the primary global justfile.
301
+ *
302
+ * @returns Absolute path to `{cleoHome}/global-recipes/justfile`
303
+ *
304
+ * @remarks
305
+ * This is the single-file entry point for the Justfile Hub. Additional
306
+ * domain-specific justfiles live alongside it in the same directory.
307
+ *
308
+ * @example
309
+ * ```typescript
310
+ * const path = getCleoGlobalJustfilePath();
311
+ * ```
312
+ */
313
+ export declare function getCleoGlobalJustfilePath(): string;
314
+ /**
315
+ * Get the Global Pi Extensions Hub directory.
316
+ *
317
+ * Houses the Pi extensions that drive the CleoOS UI and tools:
318
+ * orchestrator.ts (Conductor Loop), project-manager.ts (TUI dashboard),
319
+ * tilldone.ts (work visualization), cant-bridge.ts (CANT runtime),
320
+ * stage-guide.ts (before_agent_start hook).
321
+ *
322
+ * @returns Absolute path to the pi-extensions directory under CLEO home
323
+ *
324
+ * @remarks
325
+ * Returns `{cleoHome}/pi-extensions`. Pi is configured to load extensions
326
+ * from this directory via settings.json or the PI extension path setting.
327
+ *
328
+ * @example
329
+ * ```typescript
330
+ * const dir = getCleoPiExtensionsDir();
331
+ * // Linux: "/home/user/.local/share/cleo/pi-extensions"
332
+ * ```
333
+ */
334
+ export declare function getCleoPiExtensionsDir(): string;
335
+ /**
336
+ * Get the Global CANT Workflows Hub directory.
337
+ *
338
+ * Stores compiled and parsed `.cant` workflows that agents can invoke
339
+ * globally across projects. Project-local agents still live in `.cleo/agents/`.
340
+ *
341
+ * @returns Absolute path to the cant-workflows directory under CLEO home
342
+ *
343
+ * @remarks
344
+ * Returns `{cleoHome}/cant-workflows`. Used by the CANT runtime bridge
345
+ * to resolve globally-available workflow definitions.
346
+ *
347
+ * @example
348
+ * ```typescript
349
+ * const dir = getCleoCantWorkflowsDir();
350
+ * ```
351
+ */
352
+ export declare function getCleoCantWorkflowsDir(): string;
353
+ /**
354
+ * Get the Global CLEO Agents directory.
355
+ *
356
+ * Holds globally-available CANT agent definitions (`.cant` files).
357
+ * Project-local agents still live in `{projectRoot}/.cleo/agents/`.
358
+ *
359
+ * @returns Absolute path to the agents directory under CLEO home
360
+ *
361
+ * @remarks
362
+ * Returns `{cleoHome}/agents`. Loaded when `cleo agent start <id>` resolves
363
+ * agent IDs that aren't found in the project-local registry.
364
+ *
365
+ * @example
366
+ * ```typescript
367
+ * const dir = getCleoGlobalAgentsDir();
368
+ * ```
369
+ */
370
+ export declare function getCleoGlobalAgentsDir(): string;
280
371
  /**
281
372
  * Get the agent outputs directory (relative path) from config or default.
282
373
  *
@@ -1 +1 @@
1
- {"version":3,"file":"paths.d.ts","sourceRoot":"","sources":["../src/paths.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"paths.d.ts","sourceRoot":"","sources":["../src/paths.ts"],"names":[],"mappings":"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"}
@@ -509,7 +509,7 @@ export declare function checkMemoryBridge(projectRoot: string): CheckResult;
509
509
  * Schemas are read at runtime from getPackageRoot()/schemas/ — no copy needed.
510
510
  * Project-level dirs (adrs/, rcasd/, agent-outputs/, backups/) live in .cleo/ only.
511
511
  */
512
- export declare const REQUIRED_GLOBAL_SUBDIRS: readonly ["logs", "templates"];
512
+ export declare const REQUIRED_GLOBAL_SUBDIRS: readonly ["logs", "templates", "global-recipes", "pi-extensions", "cant-workflows", "agents"];
513
513
  /**
514
514
  * Stale entries that must NOT exist at the global ~/.cleo/ level.
515
515
  * These were project-level artefacts accidentally placed in the global home
@@ -597,7 +597,37 @@ export declare function ensureGlobalTemplates(): Promise<ScaffoldResult>;
597
597
  export declare function ensureGlobalScaffold(): Promise<{
598
598
  home: ScaffoldResult;
599
599
  templates: ScaffoldResult;
600
+ cleoosHub: ScaffoldResult;
600
601
  }>;
602
+ /**
603
+ * Ensure the CleoOS Hub subdirectories exist under the global CLEO home,
604
+ * and seed all bundled hub templates if they are not already present.
605
+ *
606
+ * This is the Phase 1 scaffolding entry point. Idempotent: re-running is
607
+ * safe and will never overwrite a file that already exists — human and
608
+ * agent edits to the installed copies are always preserved.
609
+ *
610
+ * @returns Scaffold result for the CleoOS hub root
611
+ *
612
+ * @remarks
613
+ * The CleoOS hub currently consists of:
614
+ * - `global-recipes/` (Justfile Hub: justfile + README)
615
+ * - `pi-extensions/` (Pi extensions: orchestrator, stage-guide, cant-bridge)
616
+ * - `cant-workflows/` (CANT workflow library — created empty for agents)
617
+ * - `agents/` (Global CANT agent definitions — created empty)
618
+ *
619
+ * Templates are sourced from the `@cleocode/cleo` package's bundled
620
+ * `templates/cleoos-hub/` tree. The directory is resolved at runtime through
621
+ * {@link resolveCleoOsHubTemplateRoot} so the same code path works in the
622
+ * monorepo workspace and in an installed npm package layout.
623
+ *
624
+ * @example
625
+ * ```typescript
626
+ * const result = await ensureCleoOsHub();
627
+ * console.log(result.action); // "created" or "skipped"
628
+ * ```
629
+ */
630
+ export declare function ensureCleoOsHub(): Promise<ScaffoldResult>;
601
631
  /**
602
632
  * Check that the global ~/.cleo/ home and its required subdirectories exist.
603
633
  * Read-only: no side effects.
@@ -1 +1 @@
1
- {"version":3,"file":"scaffold.d.ts","sourceRoot":"","sources":["../src/scaffold.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"scaffold.d.ts","sourceRoot":"","sources":["../src/scaffold.ts"],"names":[],"mappings":"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"}
@@ -4,7 +4,7 @@
4
4
  *
5
5
  * Implements multi-strategy dispatch:
6
6
  * 1. Label-based: task labels match skill tags
7
- * 2. Catalog-based: ct-skills dispatch matrix (via CAAMP catalog bridge)
7
+ * 2. Catalog-based: @cleocode/skills dispatch matrix (via CAAMP catalog bridge)
8
8
  * 3. Type-based: task type maps to protocol
9
9
  * 4. Keyword-based: title/description matches triggers
10
10
  * 5. Fallback: ct-task-executor
@@ -47,21 +47,24 @@ export declare function resolveSkillPath(skillName: string, projectRoot?: string
47
47
  /**
48
48
  * Resolve a protocol .md file.
49
49
  *
50
- * Search order per base path:
51
- * 1. {base}/_ct-skills-protocols/{protocol_name}.md (Strategy B shared dir)
52
- * 2. {PROJECT_ROOT}/src/protocols/{protocol_name}.md (legacy embedded fallback)
50
+ * Search order:
51
+ * 1. `<core-package>/src/validation/protocols/protocols-markdown/{name}.md`
52
+ * (canonical location, where the markdown lives in this monorepo)
53
+ * 2. `<base>/protocols/{name}.md` for each registered skill base path
54
+ * (project-local protocol overrides)
53
55
  *
54
56
  * @task T4552
57
+ * @task T260 — drop dead Strategy B paths, point at the real protocols-markdown dir
55
58
  */
56
59
  export declare function resolveProtocolPath(protocolName: string, projectRoot?: string): string | null;
57
60
  /**
58
61
  * Resolve a shared resource .md file.
59
62
  *
60
- * Search order per base path:
61
- * 1. {base}/_ct-skills-shared/{resource_name}.md (Strategy B shared dir)
62
- * 2. {base}/_shared/{resource_name}.md (legacy embedded layout)
63
+ * Search order per base path: `{base}/_shared/{resource_name}.md`. The
64
+ * `_shared/` directory is the canonical location in `@cleocode/skills`.
63
65
  *
64
66
  * @task T4552
67
+ * @task T260 — drop dead Strategy B path
65
68
  */
66
69
  export declare function resolveSharedPath(resourceName: string, projectRoot?: string): string | null;
67
70
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"skill-paths.d.ts","sourceRoot":"","sources":["../../src/skills/skill-paths.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAMH,wDAAwD;AACxD,MAAM,MAAM,eAAe,GAAG,UAAU,GAAG,OAAO,GAAG,cAAc,GAAG,aAAa,CAAC;AAEpF,yBAAyB;AACzB,MAAM,MAAM,eAAe,GAAG,MAAM,GAAG,OAAO,GAAG,UAAU,CAAC;AAE5D,yCAAyC;AACzC,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,UAAU,GAAG,OAAO,GAAG,UAAU,CAAC;CAC3C;AAwCD;;;;;;;;;;;;;GAaG;AACH,wBAAgB,mBAAmB,CAAC,WAAW,CAAC,EAAE,MAAM,GAAG,eAAe,EAAE,CAyC3E;AAED;;;;;;GAMG;AACH,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAWvF;AAED;;;;;;;;GAQG;AACH,wBAAgB,mBAAmB,CAAC,YAAY,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAmB7F;AAED;;;;;;;;GAQG;AACH,wBAAgB,iBAAiB,CAAC,YAAY,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAkB3F;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,eAAe,GAAG,IAAI,CA2CjG"}
1
+ {"version":3,"file":"skill-paths.d.ts","sourceRoot":"","sources":["../../src/skills/skill-paths.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;GAaG;AAMH,wDAAwD;AACxD,MAAM,MAAM,eAAe,GAAG,UAAU,GAAG,OAAO,GAAG,cAAc,GAAG,aAAa,CAAC;AAEpF,yBAAyB;AACzB,MAAM,MAAM,eAAe,GAAG,MAAM,GAAG,OAAO,GAAG,UAAU,CAAC;AAE5D,yCAAyC;AACzC,MAAM,WAAW,eAAe;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,MAAM,EAAE,UAAU,GAAG,OAAO,GAAG,UAAU,CAAC;CAC3C;AAwCD;;;;;;;;;;;;;GAaG;AACH,wBAAgB,mBAAmB,CAAC,WAAW,CAAC,EAAE,MAAM,GAAG,eAAe,EAAE,CAyC3E;AAED;;;;;;GAMG;AACH,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAWvF;AAED;;;;;;;;;;;GAWG;AACH,wBAAgB,mBAAmB,CAAC,YAAY,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CA2B7F;AAED;;;;;;;;GAQG;AACH,wBAAgB,iBAAiB,CAAC,YAAY,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAW3F;AAED;;;;;;;;;;GAUG;AACH,wBAAgB,kBAAkB,CAAC,QAAQ,EAAE,MAAM,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,eAAe,GAAG,IAAI,CA2CjG"}
@@ -0,0 +1,40 @@
1
+ /**
2
+ * Shared helpers for the per-protocol "load by task id" wrapper functions.
3
+ *
4
+ * The pure validators live in `orchestration/protocol-validators.ts` — this
5
+ * module is only about bridging the legacy taskId/manifestFile entry points
6
+ * (used by the CLI / dispatch layer) to those pure validators.
7
+ *
8
+ * @task T260
9
+ */
10
+ import type { ManifestEntryInput, ProtocolType, ProtocolValidationResult } from '../../orchestration/protocol-validators.js';
11
+ /**
12
+ * Locate the manifest line for a given task ID, reading from the end of the
13
+ * file so the most recent entry wins.
14
+ *
15
+ * @task T260
16
+ */
17
+ export declare function findManifestEntry(taskId: string, manifestPath: string): string | null;
18
+ /**
19
+ * Load a manifest entry by task ID from the canonical manifest file.
20
+ *
21
+ * @task T260
22
+ */
23
+ export declare function loadManifestEntryByTaskId(taskId: string): ManifestEntryInput;
24
+ /**
25
+ * Load a manifest entry from an arbitrary JSON file (used by the `manifest`
26
+ * dispatch mode where the caller already has a serialized entry).
27
+ *
28
+ * @task T260
29
+ */
30
+ export declare function loadManifestEntryFromFile(manifestFile: string): ManifestEntryInput;
31
+ /**
32
+ * Throw a CleoError with the protocol's canonical exit code when strict
33
+ * validation fails.
34
+ *
35
+ * @task T260
36
+ */
37
+ export declare function throwIfStrictFailed(result: ProtocolValidationResult, opts: {
38
+ strict?: boolean;
39
+ }, protocol: ProtocolType, taskId: string): void;
40
+ //# sourceMappingURL=_shared.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"_shared.d.ts","sourceRoot":"","sources":["../../../src/validation/protocols/_shared.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAKH,OAAO,KAAK,EACV,kBAAkB,EAClB,YAAY,EACZ,wBAAwB,EACzB,MAAM,4CAA4C,CAAC;AAIpD;;;;;GAKG;AACH,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,MAAM,EAAE,YAAY,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAUrF;AAED;;;;GAIG;AACH,wBAAgB,yBAAyB,CAAC,MAAM,EAAE,MAAM,GAAG,kBAAkB,CAO5E;AAED;;;;;GAKG;AACH,wBAAgB,yBAAyB,CAAC,YAAY,EAAE,MAAM,GAAG,kBAAkB,CAKlF;AAED;;;;;GAKG;AACH,wBAAgB,mBAAmB,CACjC,MAAM,EAAE,wBAAwB,EAChC,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAA;CAAE,EAC1B,QAAQ,EAAE,YAAY,EACtB,MAAM,EAAE,MAAM,GACb,IAAI,CAUN"}
@@ -0,0 +1,23 @@
1
+ /**
2
+ * Architecture Decision Record protocol — thin wrapper delegating to the
3
+ * canonical pure validator.
4
+ *
5
+ * This file fills a long-standing gap: every other CLEO pipeline stage had
6
+ * a TS validator, but the architecture_decision stage (added when RCSD was
7
+ * renamed to RCASD) never got one. The ADR markdown spec at
8
+ * `protocols-markdown/architecture-decision.md` defines ADR-001..008 MUST
9
+ * requirements — all enforced by the pure validator in
10
+ * `../../orchestration/protocol-validators.ts`.
11
+ *
12
+ * @task T260 — create the missing ADR protocol validator
13
+ */
14
+ import { type ArchitectureDecisionOptions, type ProtocolValidationResult } from '../../orchestration/protocol-validators.js';
15
+ /** Validate architecture-decision protocol for a task. */
16
+ export declare function validateArchitectureDecisionTask(taskId: string, opts: {
17
+ strict?: boolean;
18
+ } & ArchitectureDecisionOptions): Promise<ProtocolValidationResult>;
19
+ /** Validate architecture-decision protocol from a manifest file. */
20
+ export declare function checkArchitectureDecisionManifest(manifestFile: string, opts: {
21
+ strict?: boolean;
22
+ } & ArchitectureDecisionOptions): Promise<ProtocolValidationResult>;
23
+ //# sourceMappingURL=architecture-decision.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"architecture-decision.d.ts","sourceRoot":"","sources":["../../../src/validation/protocols/architecture-decision.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;GAYG;AAEH,OAAO,EACL,KAAK,2BAA2B,EAEhC,KAAK,wBAAwB,EAE9B,MAAM,4CAA4C,CAAC;AAOpD,0DAA0D;AAC1D,wBAAsB,gCAAgC,CACpD,MAAM,EAAE,MAAM,EACd,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAA;CAAE,GAAG,2BAA2B,GACvD,OAAO,CAAC,wBAAwB,CAAC,CAOnC;AAED,oEAAoE;AACpE,wBAAsB,iCAAiC,CACrD,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAA;CAAE,GAAG,2BAA2B,GACvD,OAAO,CAAC,wBAAwB,CAAC,CAQnC"}
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Artifact Publish protocol — thin wrapper delegating to the canonical pure validator.
3
+ *
4
+ * Artifact-publish is a cross-cutting protocol that composes with release:
5
+ * release triggers artifact-publish for the distribution phase (see release.md
6
+ * Pipeline Integration and release-engine.ts releaseShip()). Not every release
7
+ * needs artifact-publish — source-only releases can skip it.
8
+ *
9
+ * @task T260 — create the missing artifact-publish protocol wrapper
10
+ */
11
+ import { type ProtocolValidationResult } from '../../orchestration/protocol-validators.js';
12
+ interface ArtifactPublishOpts {
13
+ strict?: boolean;
14
+ artifactType?: string;
15
+ buildPassed?: boolean;
16
+ }
17
+ /** Validate artifact-publish protocol for a task. */
18
+ export declare function validateArtifactPublishTask(taskId: string, opts: ArtifactPublishOpts): Promise<ProtocolValidationResult>;
19
+ /** Validate artifact-publish protocol from a manifest file. */
20
+ export declare function checkArtifactPublishManifest(manifestFile: string, opts: ArtifactPublishOpts): Promise<ProtocolValidationResult>;
21
+ export {};
22
+ //# sourceMappingURL=artifact-publish.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"artifact-publish.d.ts","sourceRoot":"","sources":["../../../src/validation/protocols/artifact-publish.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,EACL,KAAK,wBAAwB,EAE9B,MAAM,4CAA4C,CAAC;AAOpD,UAAU,mBAAmB;IAC3B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAED,qDAAqD;AACrD,wBAAsB,2BAA2B,CAC/C,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,mBAAmB,GACxB,OAAO,CAAC,wBAAwB,CAAC,CAKnC;AAED,+DAA+D;AAC/D,wBAAsB,4BAA4B,CAChD,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE,mBAAmB,GACxB,OAAO,CAAC,wBAAwB,CAAC,CAMnC"}
@@ -1,28 +1,22 @@
1
1
  /**
2
- * Consensus protocol validation.
2
+ * Consensus protocol — thin wrapper delegating to the canonical pure validator.
3
+ *
4
+ * The actual rules live in `../../orchestration/protocol-validators.ts`. This
5
+ * file exists so the CLI / dispatch layer can validate a task by ID (loading
6
+ * the manifest entry) without duplicating logic.
7
+ *
3
8
  * @task T4537
4
- * @epic T4454
9
+ * @task T260
5
10
  */
6
- interface ValidationResult {
7
- valid: boolean;
8
- violations: Array<{
9
- code: string;
10
- severity: string;
11
- message: string;
12
- }>;
13
- score: number;
14
- protocol: string;
15
- taskId: string;
16
- }
11
+ import { type ProtocolValidationResult } from '../../orchestration/protocol-validators.js';
17
12
  /** Validate consensus protocol for a task. */
18
13
  export declare function validateConsensusTask(taskId: string, opts: {
19
14
  strict?: boolean;
20
15
  votingMatrixFile?: string;
21
- }): Promise<ValidationResult>;
22
- /** Validate consensus protocol from manifest file. */
16
+ }): Promise<ProtocolValidationResult>;
17
+ /** Validate consensus protocol from a manifest file. */
23
18
  export declare function checkConsensusManifest(manifestFile: string, opts: {
24
19
  strict?: boolean;
25
20
  votingMatrixFile?: string;
26
- }): Promise<ValidationResult>;
27
- export {};
21
+ }): Promise<ProtocolValidationResult>;
28
22
  //# sourceMappingURL=consensus.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"consensus.d.ts","sourceRoot":"","sources":["../../../src/validation/protocols/consensus.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAOH,UAAU,gBAAgB;IACxB,KAAK,EAAE,OAAO,CAAC;IACf,UAAU,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACvE,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAWD,8CAA8C;AAC9C,wBAAsB,qBAAqB,CACzC,MAAM,EAAE,MAAM,EACd,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAC;IAAC,gBAAgB,CAAC,EAAE,MAAM,CAAA;CAAE,GACpD,OAAO,CAAC,gBAAgB,CAAC,CA8C3B;AAED,sDAAsD;AACtD,wBAAsB,sBAAsB,CAC1C,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAC;IAAC,gBAAgB,CAAC,EAAE,MAAM,CAAA;CAAE,GACpD,OAAO,CAAC,gBAAgB,CAAC,CAO3B"}
1
+ {"version":3,"file":"consensus.d.ts","sourceRoot":"","sources":["../../../src/validation/protocols/consensus.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAGH,OAAO,EACL,KAAK,wBAAwB,EAG9B,MAAM,4CAA4C,CAAC;AAsBpD,8CAA8C;AAC9C,wBAAsB,qBAAqB,CACzC,MAAM,EAAE,MAAM,EACd,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAC;IAAC,gBAAgB,CAAC,EAAE,MAAM,CAAA;CAAE,GACpD,OAAO,CAAC,wBAAwB,CAAC,CAMnC;AAED,wDAAwD;AACxD,wBAAsB,sBAAsB,CAC1C,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAC;IAAC,gBAAgB,CAAC,EAAE,MAAM,CAAA;CAAE,GACpD,OAAO,CAAC,wBAAwB,CAAC,CAOnC"}
@@ -1,26 +1,21 @@
1
1
  /**
2
- * Contribution protocol validation.
2
+ * Contribution protocol — thin wrapper delegating to the canonical pure validator.
3
+ *
4
+ * Contribution is a cross-cutting protocol that tracks multi-agent attribution
5
+ * at the implementation stage (see default-chain.ts DEFAULT_PROTOCOL_STAGE_MAP).
6
+ *
3
7
  * @task T4537
4
- * @epic T4454
8
+ * @task T260
5
9
  */
6
- interface ValidationResult {
7
- valid: boolean;
8
- violations: Array<{
9
- code: string;
10
- severity: string;
11
- message: string;
12
- }>;
13
- score: number;
14
- protocol: string;
15
- taskId: string;
16
- }
10
+ import { type ProtocolValidationResult } from '../../orchestration/protocol-validators.js';
17
11
  /** Validate contribution protocol for a task. */
18
12
  export declare function validateContributionTask(taskId: string, opts: {
19
13
  strict?: boolean;
20
- }): Promise<ValidationResult>;
21
- /** Validate contribution protocol from manifest file. */
14
+ hasContributionTags?: boolean;
15
+ }): Promise<ProtocolValidationResult>;
16
+ /** Validate contribution protocol from a manifest file. */
22
17
  export declare function checkContributionManifest(manifestFile: string, opts: {
23
18
  strict?: boolean;
24
- }): Promise<ValidationResult>;
25
- export {};
19
+ hasContributionTags?: boolean;
20
+ }): Promise<ProtocolValidationResult>;
26
21
  //# sourceMappingURL=contribution.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"contribution.d.ts","sourceRoot":"","sources":["../../../src/validation/protocols/contribution.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAOH,UAAU,gBAAgB;IACxB,KAAK,EAAE,OAAO,CAAC;IACf,UAAU,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACvE,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAWD,iDAAiD;AACjD,wBAAsB,wBAAwB,CAC5C,MAAM,EAAE,MAAM,EACd,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAA;CAAE,GACzB,OAAO,CAAC,gBAAgB,CAAC,CAiC3B;AAED,yDAAyD;AACzD,wBAAsB,yBAAyB,CAC7C,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAA;CAAE,GACzB,OAAO,CAAC,gBAAgB,CAAC,CAO3B"}
1
+ {"version":3,"file":"contribution.d.ts","sourceRoot":"","sources":["../../../src/validation/protocols/contribution.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EACL,KAAK,wBAAwB,EAE9B,MAAM,4CAA4C,CAAC;AAOpD,iDAAiD;AACjD,wBAAsB,wBAAwB,CAC5C,MAAM,EAAE,MAAM,EACd,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAC;IAAC,mBAAmB,CAAC,EAAE,OAAO,CAAA;CAAE,GACxD,OAAO,CAAC,wBAAwB,CAAC,CAKnC;AAED,2DAA2D;AAC3D,wBAAsB,yBAAyB,CAC7C,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAC;IAAC,mBAAmB,CAAC,EAAE,OAAO,CAAA;CAAE,GACxD,OAAO,CAAC,wBAAwB,CAAC,CAMnC"}
@@ -1,28 +1,25 @@
1
1
  /**
2
- * Decomposition protocol validation.
2
+ * Decomposition protocol — thin wrapper delegating to the canonical pure validator.
3
+ *
4
+ * The canonical validator enforces DCOMP-001 (max siblings), DCOMP-002 (clarity),
5
+ * DCOMP-007 (`agent_type: decomposition`). The old validator here checked for
6
+ * `agent_type: specification` which was a copy-paste bug from specification.ts.
7
+ *
3
8
  * @task T4537
4
- * @epic T4454
9
+ * @task T260 — delegate to orchestration/protocol-validators, fix agent_type
5
10
  */
6
- interface ValidationResult {
7
- valid: boolean;
8
- violations: Array<{
9
- code: string;
10
- severity: string;
11
- message: string;
12
- }>;
13
- score: number;
14
- protocol: string;
15
- taskId: string;
16
- }
17
- /** Validate decomposition protocol for a task. */
18
- export declare function validateDecompositionTask(taskId: string, opts: {
19
- strict?: boolean;
20
- epicId?: string;
21
- }): Promise<ValidationResult>;
22
- /** Validate decomposition protocol from manifest file. */
23
- export declare function checkDecompositionManifest(manifestFile: string, opts: {
11
+ import { type ProtocolValidationResult } from '../../orchestration/protocol-validators.js';
12
+ interface DecompositionOpts {
24
13
  strict?: boolean;
25
14
  epicId?: string;
26
- }): Promise<ValidationResult>;
15
+ siblingCount?: number;
16
+ descriptionClarity?: boolean;
17
+ maxSiblings?: number;
18
+ maxDepth?: number;
19
+ }
20
+ /** Validate decomposition protocol for a task. */
21
+ export declare function validateDecompositionTask(taskId: string, opts: DecompositionOpts): Promise<ProtocolValidationResult>;
22
+ /** Validate decomposition protocol from a manifest file. */
23
+ export declare function checkDecompositionManifest(manifestFile: string, opts: DecompositionOpts): Promise<ProtocolValidationResult>;
27
24
  export {};
28
25
  //# sourceMappingURL=decomposition.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"decomposition.d.ts","sourceRoot":"","sources":["../../../src/validation/protocols/decomposition.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAOH,UAAU,gBAAgB;IACxB,KAAK,EAAE,OAAO,CAAC;IACf,UAAU,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACvE,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAWD,kDAAkD;AAClD,wBAAsB,yBAAyB,CAC7C,MAAM,EAAE,MAAM,EACd,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,GAC1C,OAAO,CAAC,gBAAgB,CAAC,CAiC3B;AAED,0DAA0D;AAC1D,wBAAsB,0BAA0B,CAC9C,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAC;IAAC,MAAM,CAAC,EAAE,MAAM,CAAA;CAAE,GAC1C,OAAO,CAAC,gBAAgB,CAAC,CAO3B"}
1
+ {"version":3,"file":"decomposition.d.ts","sourceRoot":"","sources":["../../../src/validation/protocols/decomposition.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,OAAO,EACL,KAAK,wBAAwB,EAE9B,MAAM,4CAA4C,CAAC;AAOpD,UAAU,iBAAiB;IACzB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,kDAAkD;AAClD,wBAAsB,yBAAyB,CAC7C,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,iBAAiB,GACtB,OAAO,CAAC,wBAAwB,CAAC,CAKnC;AAED,4DAA4D;AAC5D,wBAAsB,0BAA0B,CAC9C,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE,iBAAiB,GACtB,OAAO,CAAC,wBAAwB,CAAC,CAMnC"}
@@ -1,26 +1,18 @@
1
1
  /**
2
- * Implementation protocol validation.
2
+ * Implementation protocol — thin wrapper delegating to the canonical pure validator.
3
+ *
3
4
  * @task T4537
4
- * @epic T4454
5
+ * @task T260
5
6
  */
6
- interface ValidationResult {
7
- valid: boolean;
8
- violations: Array<{
9
- code: string;
10
- severity: string;
11
- message: string;
12
- }>;
13
- score: number;
14
- protocol: string;
15
- taskId: string;
16
- }
7
+ import { type ProtocolValidationResult } from '../../orchestration/protocol-validators.js';
17
8
  /** Validate implementation protocol for a task. */
18
9
  export declare function validateImplementationTask(taskId: string, opts: {
19
10
  strict?: boolean;
20
- }): Promise<ValidationResult>;
21
- /** Validate implementation protocol from manifest file. */
11
+ hasTaskTags?: boolean;
12
+ }): Promise<ProtocolValidationResult>;
13
+ /** Validate implementation protocol from a manifest file. */
22
14
  export declare function checkImplementationManifest(manifestFile: string, opts: {
23
15
  strict?: boolean;
24
- }): Promise<ValidationResult>;
25
- export {};
16
+ hasTaskTags?: boolean;
17
+ }): Promise<ProtocolValidationResult>;
26
18
  //# sourceMappingURL=implementation.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"implementation.d.ts","sourceRoot":"","sources":["../../../src/validation/protocols/implementation.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAOH,UAAU,gBAAgB;IACxB,KAAK,EAAE,OAAO,CAAC;IACf,UAAU,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACvE,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAWD,mDAAmD;AACnD,wBAAsB,0BAA0B,CAC9C,MAAM,EAAE,MAAM,EACd,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAA;CAAE,GACzB,OAAO,CAAC,gBAAgB,CAAC,CAiC3B;AAED,2DAA2D;AAC3D,wBAAsB,2BAA2B,CAC/C,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAA;CAAE,GACzB,OAAO,CAAC,gBAAgB,CAAC,CAO3B"}
1
+ {"version":3,"file":"implementation.d.ts","sourceRoot":"","sources":["../../../src/validation/protocols/implementation.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EACL,KAAK,wBAAwB,EAE9B,MAAM,4CAA4C,CAAC;AAOpD,mDAAmD;AACnD,wBAAsB,0BAA0B,CAC9C,MAAM,EAAE,MAAM,EACd,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAC;IAAC,WAAW,CAAC,EAAE,OAAO,CAAA;CAAE,GAChD,OAAO,CAAC,wBAAwB,CAAC,CAKnC;AAED,6DAA6D;AAC7D,wBAAsB,2BAA2B,CAC/C,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAC;IAAC,WAAW,CAAC,EAAE,OAAO,CAAA;CAAE,GAChD,OAAO,CAAC,wBAAwB,CAAC,CAMnC"}
@@ -0,0 +1,23 @@
1
+ /**
2
+ * Provenance protocol — thin wrapper delegating to the canonical pure validator.
3
+ *
4
+ * Provenance is a cross-cutting protocol that composes with release via
5
+ * artifact-publish: artifact-publish delegates signing, SBOM generation, and
6
+ * in-toto attestation chain assembly to provenance (see provenance.md Pipeline
7
+ * Integration and release-engine.ts releaseShip()). The CI pipeline already
8
+ * uses `npm publish --provenance` for SLSA L3 keyless attestation via OIDC.
9
+ *
10
+ * @task T260 — create the missing provenance protocol wrapper
11
+ */
12
+ import { type ProtocolValidationResult } from '../../orchestration/protocol-validators.js';
13
+ interface ProvenanceOpts {
14
+ strict?: boolean;
15
+ hasAttestation?: boolean;
16
+ hasSbom?: boolean;
17
+ }
18
+ /** Validate provenance protocol for a task. */
19
+ export declare function validateProvenanceTask(taskId: string, opts: ProvenanceOpts): Promise<ProtocolValidationResult>;
20
+ /** Validate provenance protocol from a manifest file. */
21
+ export declare function checkProvenanceManifest(manifestFile: string, opts: ProvenanceOpts): Promise<ProtocolValidationResult>;
22
+ export {};
23
+ //# sourceMappingURL=provenance.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"provenance.d.ts","sourceRoot":"","sources":["../../../src/validation/protocols/provenance.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EACL,KAAK,wBAAwB,EAE9B,MAAM,4CAA4C,CAAC;AAOpD,UAAU,cAAc;IACtB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,+CAA+C;AAC/C,wBAAsB,sBAAsB,CAC1C,MAAM,EAAE,MAAM,EACd,IAAI,EAAE,cAAc,GACnB,OAAO,CAAC,wBAAwB,CAAC,CAKnC;AAED,yDAAyD;AACzD,wBAAsB,uBAAuB,CAC3C,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE,cAAc,GACnB,OAAO,CAAC,wBAAwB,CAAC,CAMnC"}
@@ -0,0 +1,25 @@
1
+ /**
2
+ * Release protocol — thin wrapper delegating to the canonical pure validator.
3
+ *
4
+ * Renamed from release-protocol.ts in T260. The release protocol orchestrates
5
+ * version bumping, changelog generation, tagging, and pushing. It composes
6
+ * with artifact-publish and provenance at the release stage (see release.md
7
+ * Pipeline Integration + release-engine.ts releaseShip()).
8
+ *
9
+ * @task T4804
10
+ * @task T260 — drop -protocol suffix, delegate to orchestration validator
11
+ */
12
+ import { type ProtocolValidationResult } from '../../orchestration/protocol-validators.js';
13
+ /** Validate release protocol for a task. */
14
+ export declare function validateReleaseTask(taskId: string, opts: {
15
+ strict?: boolean;
16
+ version?: string;
17
+ hasChangelog?: boolean;
18
+ }): Promise<ProtocolValidationResult>;
19
+ /** Validate release protocol from a manifest file. */
20
+ export declare function checkReleaseManifest(manifestFile: string, opts: {
21
+ strict?: boolean;
22
+ version?: string;
23
+ hasChangelog?: boolean;
24
+ }): Promise<ProtocolValidationResult>;
25
+ //# sourceMappingURL=release.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"release.d.ts","sourceRoot":"","sources":["../../../src/validation/protocols/release.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;GAUG;AAEH,OAAO,EACL,KAAK,wBAAwB,EAE9B,MAAM,4CAA4C,CAAC;AAOpD,4CAA4C;AAC5C,wBAAsB,mBAAmB,CACvC,MAAM,EAAE,MAAM,EACd,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAC;IAAC,YAAY,CAAC,EAAE,OAAO,CAAA;CAAE,GACnE,OAAO,CAAC,wBAAwB,CAAC,CAKnC;AAED,sDAAsD;AACtD,wBAAsB,oBAAoB,CACxC,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAC;IAAC,YAAY,CAAC,EAAE,OAAO,CAAA;CAAE,GACnE,OAAO,CAAC,wBAAwB,CAAC,CAMnC"}
@@ -1,26 +1,18 @@
1
1
  /**
2
- * Research protocol validation.
2
+ * Research protocol — thin wrapper delegating to the canonical pure validator.
3
+ *
3
4
  * @task T4804
4
- * @epic T4798
5
+ * @task T260
5
6
  */
6
- interface ValidationResult {
7
- valid: boolean;
8
- violations: Array<{
9
- code: string;
10
- severity: string;
11
- message: string;
12
- }>;
13
- score: number;
14
- protocol: string;
15
- taskId: string;
16
- }
7
+ import { type ProtocolValidationResult } from '../../orchestration/protocol-validators.js';
17
8
  /** Validate research protocol for a task. */
18
9
  export declare function validateResearchTask(taskId: string, opts: {
19
10
  strict?: boolean;
20
- }): Promise<ValidationResult>;
21
- /** Validate research protocol from manifest file. */
11
+ hasCodeChanges?: boolean;
12
+ }): Promise<ProtocolValidationResult>;
13
+ /** Validate research protocol from a manifest file. */
22
14
  export declare function checkResearchManifest(manifestFile: string, opts: {
23
15
  strict?: boolean;
24
- }): Promise<ValidationResult>;
25
- export {};
16
+ hasCodeChanges?: boolean;
17
+ }): Promise<ProtocolValidationResult>;
26
18
  //# sourceMappingURL=research.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"research.d.ts","sourceRoot":"","sources":["../../../src/validation/protocols/research.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAOH,UAAU,gBAAgB;IACxB,KAAK,EAAE,OAAO,CAAC;IACf,UAAU,EAAE,KAAK,CAAC;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC,CAAC;IACvE,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;CAChB;AAWD,6CAA6C;AAC7C,wBAAsB,oBAAoB,CACxC,MAAM,EAAE,MAAM,EACd,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAA;CAAE,GACzB,OAAO,CAAC,gBAAgB,CAAC,CAuD3B;AAED,qDAAqD;AACrD,wBAAsB,qBAAqB,CACzC,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAA;CAAE,GACzB,OAAO,CAAC,gBAAgB,CAAC,CAO3B"}
1
+ {"version":3,"file":"research.d.ts","sourceRoot":"","sources":["../../../src/validation/protocols/research.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,OAAO,EACL,KAAK,wBAAwB,EAE9B,MAAM,4CAA4C,CAAC;AAOpD,6CAA6C;AAC7C,wBAAsB,oBAAoB,CACxC,MAAM,EAAE,MAAM,EACd,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAC;IAAC,cAAc,CAAC,EAAE,OAAO,CAAA;CAAE,GACnD,OAAO,CAAC,wBAAwB,CAAC,CAKnC;AAED,uDAAuD;AACvD,wBAAsB,qBAAqB,CACzC,YAAY,EAAE,MAAM,EACpB,IAAI,EAAE;IAAE,MAAM,CAAC,EAAE,OAAO,CAAC;IAAC,cAAc,CAAC,EAAE,OAAO,CAAA;CAAE,GACnD,OAAO,CAAC,wBAAwB,CAAC,CAMnC"}