mandrel 1.69.0 → 1.70.0
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/.agents/README.md +1 -1
- package/.agents/docs/workflows.md +1 -1
- package/.agents/scripts/agents-update-preflight.js +235 -0
- package/.agents/scripts/apply-quality-bootstrap.js +79 -0
- package/.agents/scripts/audit-labels-bootstrap.js +52 -30
- package/.agents/scripts/audit-to-stories.js +54 -0
- package/.agents/scripts/bootstrap.js +13 -3
- package/.agents/scripts/generate-config-docs.js +189 -94
- package/.agents/scripts/lib/audit-suite/findings.js +0 -4
- package/.agents/scripts/lib/audit-to-stories/audit-lenses.js +99 -0
- package/.agents/scripts/lib/audit-to-stories/build-story-body.js +13 -5
- package/.agents/scripts/lib/baseline-snapshot.js +163 -4
- package/.agents/scripts/lib/baselines/refresh-service.js +0 -4
- package/.agents/scripts/lib/config/baselines.js +0 -20
- package/.agents/scripts/lib/config/temp-paths.js +0 -31
- package/.agents/scripts/lib/crap-utils.js +281 -0
- package/.agents/scripts/lib/orchestration/dispatch-engine.js +0 -2
- package/.agents/scripts/lib/orchestration/epic-runner/progress-reporter/composition.js +0 -84
- package/.agents/scripts/lib/orchestration/epic-runner/progress-reporter/signals.js +3 -4
- package/.agents/scripts/lib/orchestration/lifecycle/trace-logger.js +0 -4
- package/.agents/scripts/lib/orchestration/retro/phases/compose-body.js +101 -70
- package/.agents/scripts/lib/orchestration/spec-renderer.js +42 -14
- package/.agents/scripts/lib/orchestration/ticket-lease.js +3 -0
- package/.agents/scripts/lib/story-body/story-body.js +110 -65
- package/.agents/scripts/lib/test-tiers.js +13 -7
- package/.agents/scripts/lib/wave-runner/tick.js +177 -53
- package/.agents/scripts/lib/workers/combined-mi-crap-worker.js +226 -0
- package/.agents/scripts/providers/github/issues.js +48 -0
- package/.agents/scripts/providers/github.js +1 -0
- package/.agents/workflows/agents-update.md +205 -28
- package/README.md +20 -0
- package/docs/CHANGELOG.md +32 -0
- package/lib/cli/registry.js +49 -6
- package/lib/cli/update.js +335 -332
- package/package.json +16 -11
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mandrel",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.70.0",
|
|
4
4
|
"description": "Claude Code-first opinionated workflow framework: instructions, personas, skills, and SDLC workflows that govern AI coding assistants.",
|
|
5
5
|
"files": [
|
|
6
6
|
".agents/",
|
|
7
7
|
"bin/",
|
|
8
8
|
"docs/CHANGELOG.md",
|
|
9
9
|
"lib/",
|
|
10
|
-
"!lib/**/__tests__"
|
|
10
|
+
"!lib/**/__tests__",
|
|
11
|
+
"!.agents/**/__tests__"
|
|
11
12
|
],
|
|
12
13
|
"publishConfig": {
|
|
13
14
|
"access": "public",
|
|
@@ -74,24 +75,24 @@
|
|
|
74
75
|
"node": ">=22.22.1 <25"
|
|
75
76
|
},
|
|
76
77
|
"devDependencies": {
|
|
77
|
-
"@biomejs/biome": "^2.
|
|
78
|
-
"@commitlint/cli": "^21.0.
|
|
79
|
-
"@commitlint/config-conventional": "^21.0.
|
|
78
|
+
"@biomejs/biome": "^2.5.0",
|
|
79
|
+
"@commitlint/cli": "^21.0.2",
|
|
80
|
+
"@commitlint/config-conventional": "^21.0.2",
|
|
80
81
|
"c8": "^11.0.0",
|
|
81
82
|
"chokidar": "^5.0.0",
|
|
82
83
|
"husky": "^9.1.7",
|
|
83
|
-
"jscpd": "^4.2.
|
|
84
|
-
"knip": "^6.
|
|
85
|
-
"lint-staged": "^17.0.
|
|
86
|
-
"markdownlint-cli2": "^0.
|
|
87
|
-
"memfs": "^4.57.
|
|
84
|
+
"jscpd": "^4.2.5",
|
|
85
|
+
"knip": "^6.17.1",
|
|
86
|
+
"lint-staged": "^17.0.7",
|
|
87
|
+
"markdownlint-cli2": "^0.22.1",
|
|
88
|
+
"memfs": "^4.57.7",
|
|
88
89
|
"node-pty": "^1.0.0",
|
|
89
90
|
"typescript": ">=5.0.0"
|
|
90
91
|
},
|
|
91
92
|
"dependencies": {
|
|
92
93
|
"ajv": "^8.20.0",
|
|
93
94
|
"ajv-formats": "^3.0.1",
|
|
94
|
-
"js-yaml": "^4.
|
|
95
|
+
"js-yaml": "^4.2.0",
|
|
95
96
|
"minimatch": "^10.0.0",
|
|
96
97
|
"picomatch": "^4.0.4",
|
|
97
98
|
"string-argv": "^0.3.2",
|
|
@@ -104,5 +105,9 @@
|
|
|
104
105
|
"typescript": {
|
|
105
106
|
"optional": true
|
|
106
107
|
}
|
|
108
|
+
},
|
|
109
|
+
"overrides": {
|
|
110
|
+
"js-yaml": "^4.2.0",
|
|
111
|
+
"markdown-it": "^14.2.0"
|
|
107
112
|
}
|
|
108
113
|
}
|