@codedrifters/configulator 0.0.401 → 0.0.402
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/lib/index.d.mts +11 -0
- package/lib/index.d.ts +11 -0
- package/lib/index.js +3 -0
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +3 -0
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.mts
CHANGED
|
@@ -5219,6 +5219,17 @@ declare const DEFAULT_SOURCES_THRESHOLDS: ScopeGateThresholds;
|
|
|
5219
5219
|
* issue scored `ac=7 / src=9`). Both axes are raised to
|
|
5220
5220
|
* `mediumMax: 12` — this is why `req:scan` carries a `sources`
|
|
5221
5221
|
* override the AC-only siblings do not.
|
|
5222
|
+
* - `bcm:outline` — the `bcm-writer` Phase-1 outline phase authors a
|
|
5223
|
+
* single capability outline document whose AC list is the content
|
|
5224
|
+
* checklist for that one indivisible deliverable (identify the L1
|
|
5225
|
+
* parent, draft the L2 definition, document sub-facets, draw the
|
|
5226
|
+
* capability boundary, write the outline file, update the
|
|
5227
|
+
* capability map), not a decomposable plan — the criteria cannot be
|
|
5228
|
+
* split into independently-mergeable sub-issues because every one
|
|
5229
|
+
* of them edits the same outline file. Sibling of `bcm:scaffold` /
|
|
5230
|
+
* `bcm:context` / `bcm:connect`; mirrors their `mediumMax: 12` AC
|
|
5231
|
+
* cap. Observed ac=7 (`codedrifters/openhi-planning`#11216). AC
|
|
5232
|
+
* axis only; sources fall through to the global band.
|
|
5222
5233
|
*
|
|
5223
5234
|
* Consumer overrides deep-merge with these defaults with
|
|
5224
5235
|
* consumer-wins-per-key (see `resolveScopeGate` for the merge
|
package/lib/index.d.ts
CHANGED
|
@@ -5268,6 +5268,17 @@ declare const DEFAULT_SOURCES_THRESHOLDS: ScopeGateThresholds;
|
|
|
5268
5268
|
* issue scored `ac=7 / src=9`). Both axes are raised to
|
|
5269
5269
|
* `mediumMax: 12` — this is why `req:scan` carries a `sources`
|
|
5270
5270
|
* override the AC-only siblings do not.
|
|
5271
|
+
* - `bcm:outline` — the `bcm-writer` Phase-1 outline phase authors a
|
|
5272
|
+
* single capability outline document whose AC list is the content
|
|
5273
|
+
* checklist for that one indivisible deliverable (identify the L1
|
|
5274
|
+
* parent, draft the L2 definition, document sub-facets, draw the
|
|
5275
|
+
* capability boundary, write the outline file, update the
|
|
5276
|
+
* capability map), not a decomposable plan — the criteria cannot be
|
|
5277
|
+
* split into independently-mergeable sub-issues because every one
|
|
5278
|
+
* of them edits the same outline file. Sibling of `bcm:scaffold` /
|
|
5279
|
+
* `bcm:context` / `bcm:connect`; mirrors their `mediumMax: 12` AC
|
|
5280
|
+
* cap. Observed ac=7 (`codedrifters/openhi-planning`#11216). AC
|
|
5281
|
+
* axis only; sources fall through to the global band.
|
|
5271
5282
|
*
|
|
5272
5283
|
* Consumer overrides deep-merge with these defaults with
|
|
5273
5284
|
* consumer-wins-per-key (see `resolveScopeGate` for the merge
|
package/lib/index.js
CHANGED
|
@@ -14392,6 +14392,9 @@ var DEFAULT_BUNDLE_OVERRIDES = {
|
|
|
14392
14392
|
"req:scan": {
|
|
14393
14393
|
acceptanceCriteria: { smallMax: 3, mediumMax: 12 },
|
|
14394
14394
|
sources: { smallMax: 2, mediumMax: 12 }
|
|
14395
|
+
},
|
|
14396
|
+
"bcm:outline": {
|
|
14397
|
+
acceptanceCriteria: { smallMax: 3, mediumMax: 12 }
|
|
14395
14398
|
}
|
|
14396
14399
|
};
|
|
14397
14400
|
var DEFAULT_DECOMPOSITION_TEMPLATE = [
|