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.
Files changed (35) hide show
  1. package/.agents/README.md +1 -1
  2. package/.agents/docs/workflows.md +1 -1
  3. package/.agents/scripts/agents-update-preflight.js +235 -0
  4. package/.agents/scripts/apply-quality-bootstrap.js +79 -0
  5. package/.agents/scripts/audit-labels-bootstrap.js +52 -30
  6. package/.agents/scripts/audit-to-stories.js +54 -0
  7. package/.agents/scripts/bootstrap.js +13 -3
  8. package/.agents/scripts/generate-config-docs.js +189 -94
  9. package/.agents/scripts/lib/audit-suite/findings.js +0 -4
  10. package/.agents/scripts/lib/audit-to-stories/audit-lenses.js +99 -0
  11. package/.agents/scripts/lib/audit-to-stories/build-story-body.js +13 -5
  12. package/.agents/scripts/lib/baseline-snapshot.js +163 -4
  13. package/.agents/scripts/lib/baselines/refresh-service.js +0 -4
  14. package/.agents/scripts/lib/config/baselines.js +0 -20
  15. package/.agents/scripts/lib/config/temp-paths.js +0 -31
  16. package/.agents/scripts/lib/crap-utils.js +281 -0
  17. package/.agents/scripts/lib/orchestration/dispatch-engine.js +0 -2
  18. package/.agents/scripts/lib/orchestration/epic-runner/progress-reporter/composition.js +0 -84
  19. package/.agents/scripts/lib/orchestration/epic-runner/progress-reporter/signals.js +3 -4
  20. package/.agents/scripts/lib/orchestration/lifecycle/trace-logger.js +0 -4
  21. package/.agents/scripts/lib/orchestration/retro/phases/compose-body.js +101 -70
  22. package/.agents/scripts/lib/orchestration/spec-renderer.js +42 -14
  23. package/.agents/scripts/lib/orchestration/ticket-lease.js +3 -0
  24. package/.agents/scripts/lib/story-body/story-body.js +110 -65
  25. package/.agents/scripts/lib/test-tiers.js +13 -7
  26. package/.agents/scripts/lib/wave-runner/tick.js +177 -53
  27. package/.agents/scripts/lib/workers/combined-mi-crap-worker.js +226 -0
  28. package/.agents/scripts/providers/github/issues.js +48 -0
  29. package/.agents/scripts/providers/github.js +1 -0
  30. package/.agents/workflows/agents-update.md +205 -28
  31. package/README.md +20 -0
  32. package/docs/CHANGELOG.md +32 -0
  33. package/lib/cli/registry.js +49 -6
  34. package/lib/cli/update.js +335 -332
  35. package/package.json +16 -11
package/package.json CHANGED
@@ -1,13 +1,14 @@
1
1
  {
2
2
  "name": "mandrel",
3
- "version": "1.69.0",
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.4.15",
78
- "@commitlint/cli": "^21.0.1",
79
- "@commitlint/config-conventional": "^21.0.1",
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.4",
84
- "knip": "^6.14.0",
85
- "lint-staged": "^17.0.4",
86
- "markdownlint-cli2": "^0.18.1",
87
- "memfs": "^4.57.2",
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.1.1",
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
  }