paqad-ai 1.22.2 → 1.23.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/CHANGELOG.md +11 -0
- package/dist/cli/index.js +1 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +8 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/runtime/base/skills/module-health-update/SKILL.md +92 -0
- package/runtime/base/skills/module-health-update/agents/openai.yaml +6 -0
- package/runtime/base/skills/module-health-update/assets/templates/update-summary.md +22 -0
- package/runtime/base/skills/module-health-update/references/update-vs-rollup.md +17 -0
- package/runtime/base/skills/module-health-update/scripts/is-blocked.sh +31 -0
- package/runtime/base/skills/module-health-update/scripts/list-blocked-metrics.sh +33 -0
- package/runtime/base/skills/module-health-update/scripts/list-unattributed.sh +28 -0
- package/runtime/base/skills/module-health-update/scripts/list-updated.sh +27 -0
- package/runtime/base/skills/module-health-update/scripts/refresh.sh +38 -0
- package/runtime/base/skills/workflow-router/assets/routing-rules.txt +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# paqad-ai
|
|
2
2
|
|
|
3
|
+
## 1.23.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#179](https://github.com/Eliyce/paqad-ai/pull/179) [`c53d01d`](https://github.com/Eliyce/paqad-ai/commit/c53d01da5468042cb0e7160e2192922052db9aca) Thanks [@HLasani](https://github.com/HLasani)! - Module health now updates instead of staying frozen at the onboarding stub.
|
|
8
|
+
|
|
9
|
+
Two changes close the gap that left every module's `.paqad/module-health/<slug>.json` reading `tier: unknown` with all metrics null after onboarding:
|
|
10
|
+
|
|
11
|
+
- The verification backstop (`runRepositoryVerification`) now folds verification reality into each touched module's health profile on every completion. This is the agent-independent chokepoint behind the Claude Stop hook and the git/CI backstop, so profiles refresh automatically with no change required in onboarded projects.
|
|
12
|
+
- A new `update module health` workflow (routed like `create documentation`) refreshes every module on demand. It runs a rollup then a sync across all declared modules and reports each module's resulting tier. It wraps the existing `module-health rollup` and `module-health sync` commands and adds no new CLI command.
|
|
13
|
+
|
|
3
14
|
## 1.22.2
|
|
4
15
|
|
|
5
16
|
### Patch Changes
|
package/dist/cli/index.js
CHANGED
|
@@ -35036,7 +35036,7 @@ init_esm_shims();
|
|
|
35036
35036
|
init_esm_shims();
|
|
35037
35037
|
|
|
35038
35038
|
// src/index.ts
|
|
35039
|
-
var VERSION = "1.
|
|
35039
|
+
var VERSION = "1.23.0";
|
|
35040
35040
|
|
|
35041
35041
|
// src/cli/commands/audit.ts
|
|
35042
35042
|
init_esm_shims();
|