@cleocode/adapters 2026.9.13 → 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 +43 -0
- package/dist/index.js.map +2 -2
- package/package.json +5 -5
package/dist/index.js
CHANGED
|
@@ -1083,6 +1083,13 @@ var init_cli_category = __esm({
|
|
|
1083
1083
|
}
|
|
1084
1084
|
});
|
|
1085
1085
|
|
|
1086
|
+
// packages/contracts/src/code-symbol.ts
|
|
1087
|
+
var init_code_symbol = __esm({
|
|
1088
|
+
"packages/contracts/src/code-symbol.ts"() {
|
|
1089
|
+
"use strict";
|
|
1090
|
+
}
|
|
1091
|
+
});
|
|
1092
|
+
|
|
1086
1093
|
// packages/contracts/src/config/manifest.ts
|
|
1087
1094
|
import { z as z4 } from "zod";
|
|
1088
1095
|
var PROJECT_INFO_MANIFEST, PROJECT_CONTEXT_MANIFEST, CLEO_CONFIG_MANIFEST, GLOBAL_CLEO_CONFIG_MANIFEST, CONFIG_MANIFEST_ENTRIES, configManifestEntrySchema;
|
|
@@ -13898,6 +13905,40 @@ var init_invariants = __esm({
|
|
|
13898
13905
|
}
|
|
13899
13906
|
});
|
|
13900
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
|
+
|
|
13901
13942
|
// packages/contracts/src/lafs.ts
|
|
13902
13943
|
var init_lafs = __esm({
|
|
13903
13944
|
"packages/contracts/src/lafs.ts"() {
|
|
@@ -17135,6 +17176,7 @@ var init_src = __esm({
|
|
|
17135
17176
|
init_branch_lock();
|
|
17136
17177
|
init_changesets();
|
|
17137
17178
|
init_cli_category();
|
|
17179
|
+
init_code_symbol();
|
|
17138
17180
|
init_manifest();
|
|
17139
17181
|
init_credentials();
|
|
17140
17182
|
init_daemon();
|
|
@@ -17155,6 +17197,7 @@ var init_src = __esm({
|
|
|
17155
17197
|
init_goal();
|
|
17156
17198
|
init_graph();
|
|
17157
17199
|
init_invariants();
|
|
17200
|
+
init_kind_lifecycle();
|
|
17158
17201
|
init_lafs();
|
|
17159
17202
|
init_lease_ipc();
|
|
17160
17203
|
init_catalog_schema();
|