@dzhechkov/skills-feature-adr 1.3.61 → 1.3.62
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/README.md +7 -0
- package/bin/cli.js +0 -0
- package/package.json +6 -5
package/README.md
CHANGED
|
@@ -528,6 +528,13 @@ Claude-coded run gets same-family planes with `crossFamily: false` recorded loud
|
|
|
528
528
|
`FEATURE_ADR_DELIVERY_GATED` is emitted only when `10_delivery_review.md` actually landed. The `🚦 Gates:`
|
|
529
529
|
line gains `delivery ready|blocked|errored|n/a`.
|
|
530
530
|
|
|
531
|
+
**Deterministic project guards (P3, needs `dz` ≥ 0.3.232).** The lowest rung of the same ladder:
|
|
532
|
+
`dz feature-adr-setup --guards --apply` scaffolds `architecture/guards/guards.config.json` + a
|
|
533
|
+
**zero-dependency** `check.mjs` runner into YOUR project (any stack with Node) — loc-cap (god-object guard,
|
|
534
|
+
`--loc-cap <n>`, default 700), secret-scan, frozen-file sha256 pins; every waiver requires a reason (a
|
|
535
|
+
reasonless waiver is itself a violation). Wire `node architecture/guards/check.mjs` into CI and the rules a
|
|
536
|
+
reviewer "might notice" become deterministic tests that run on every future slice.
|
|
537
|
+
|
|
531
538
|
### The `Model` / `Fable?` columns — read this before swapping models
|
|
532
539
|
|
|
533
540
|
The `Model` column is the **default recommendation, fully overridable** — the routing rule is
|
package/bin/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dzhechkov/skills-feature-adr",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.62",
|
|
4
4
|
"description": "Adaptive Feature Development skill pack for Claude Code — 11-step pipeline with Complexity Router (S/M/L/XL), ADR-driven architecture, 15 agentic-qe skills, multi-agent fleet QE. Supports --full-qe, --full-qe-extended, --with-learning, and --knowledge-extractor modes.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"skills-feature-adr": "./bin/cli.js"
|
|
@@ -13,6 +13,10 @@
|
|
|
13
13
|
"CHANGELOG.md",
|
|
14
14
|
"docs/"
|
|
15
15
|
],
|
|
16
|
+
"scripts": {
|
|
17
|
+
"test": "node --test \"test/**/*.test.js\"",
|
|
18
|
+
"prepack": "node -e \"const fs=require('fs');const bad=['.claude','.skills-feature-adr.json'].filter(p=>fs.existsSync(p));if(bad.length){console.error('prepack guard: stray init artifacts in package dir: '+bad.join(', ')+' — remove before packing');process.exit(1)}\""
|
|
19
|
+
},
|
|
16
20
|
"keywords": [
|
|
17
21
|
"claude",
|
|
18
22
|
"claude-code",
|
|
@@ -57,8 +61,5 @@
|
|
|
57
61
|
},
|
|
58
62
|
"publishConfig": {
|
|
59
63
|
"access": "public"
|
|
60
|
-
},
|
|
61
|
-
"scripts": {
|
|
62
|
-
"test": "node --test \"test/**/*.test.js\""
|
|
63
64
|
}
|
|
64
|
-
}
|
|
65
|
+
}
|