@cleocode/adapters 2026.9.14 → 2026.9.15
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/dist/index.js +35 -0
- package/dist/index.js.map +2 -2
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -13905,6 +13905,40 @@ var init_invariants = __esm({
|
|
|
13905
13905
|
}
|
|
13906
13906
|
});
|
|
13907
13907
|
|
|
13908
|
+
// packages/contracts/src/kind-lifecycle.ts
|
|
13909
|
+
var KIND_LIFECYCLE_REQUIREMENTS;
|
|
13910
|
+
var init_kind_lifecycle = __esm({
|
|
13911
|
+
"packages/contracts/src/kind-lifecycle.ts"() {
|
|
13912
|
+
"use strict";
|
|
13913
|
+
KIND_LIFECYCLE_REQUIREMENTS = Object.freeze({
|
|
13914
|
+
work: {
|
|
13915
|
+
requiresStagedPipeline: true,
|
|
13916
|
+
rationale: "Default delivery work. The staged pipeline exists for exactly this: decide the design before completing the code that implements it."
|
|
13917
|
+
},
|
|
13918
|
+
bug: {
|
|
13919
|
+
requiresStagedPipeline: false,
|
|
13920
|
+
rationale: "A fix operates inside an existing design. Demanding consensus and architecture_decision before a fix can complete describes work that is not happening."
|
|
13921
|
+
},
|
|
13922
|
+
research: {
|
|
13923
|
+
requiresStagedPipeline: false,
|
|
13924
|
+
rationale: "The research IS the work. Requiring the epic to pass the research stage before its own research children can complete is circular."
|
|
13925
|
+
},
|
|
13926
|
+
spike: {
|
|
13927
|
+
requiresStagedPipeline: false,
|
|
13928
|
+
rationale: "A time-boxed exploration whose purpose is to produce the information the design stages would consume. It cannot be gated on having already done so."
|
|
13929
|
+
},
|
|
13930
|
+
experiment: {
|
|
13931
|
+
requiresStagedPipeline: false,
|
|
13932
|
+
rationale: "An experiment is run to learn whether an approach holds. Specifying and decomposing it first presumes the answer."
|
|
13933
|
+
},
|
|
13934
|
+
release: {
|
|
13935
|
+
requiresStagedPipeline: false,
|
|
13936
|
+
rationale: "Release epics are procedural \u2014 the design work they ship was decided in the epics being released."
|
|
13937
|
+
}
|
|
13938
|
+
});
|
|
13939
|
+
}
|
|
13940
|
+
});
|
|
13941
|
+
|
|
13908
13942
|
// packages/contracts/src/lafs.ts
|
|
13909
13943
|
var init_lafs = __esm({
|
|
13910
13944
|
"packages/contracts/src/lafs.ts"() {
|
|
@@ -17163,6 +17197,7 @@ var init_src = __esm({
|
|
|
17163
17197
|
init_goal();
|
|
17164
17198
|
init_graph();
|
|
17165
17199
|
init_invariants();
|
|
17200
|
+
init_kind_lifecycle();
|
|
17166
17201
|
init_lafs();
|
|
17167
17202
|
init_lease_ipc();
|
|
17168
17203
|
init_catalog_schema();
|