paqad-ai 1.22.2 → 1.23.1
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 +17 -0
- package/dist/cli/index.js +419 -433
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +254 -263
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/runtime/base/rules/testing.md +1 -0
- 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/runtime/capabilities/coding/rules/code-quality.md +2 -0
- package/runtime/capabilities/coding/rules/code-review.md +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# paqad-ai
|
|
2
2
|
|
|
3
|
+
## 1.23.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#181](https://github.com/Eliyce/paqad-ai/pull/181) [`21c2d82`](https://github.com/Eliyce/paqad-ai/commit/21c2d82227e23c9228c127bf029053573fba9c82) Thanks [@HLasani](https://github.com/HLasani)! - Fix `module-health rollup` resolving zero stack packs. `source-roots.ts` shipped a local `resolveRuntimeRoot()` that returned the _parent_ of `runtime/` instead of `runtime/` itself, so `StackPackLoader` looked under `<packageRoot>/capabilities` (which does not exist), loaded no packs, and every `discoverModuleHealth`/`discoverSourceRoots` call returned `null` — hard-blocking the rollup with `module_health_unknown`. It now uses the canonical `getRuntimeRoot()`, matching every other framework caller, so module-health refresh resolves the active pack's `module_health` block correctly.
|
|
8
|
+
|
|
9
|
+
## 1.23.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#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.
|
|
14
|
+
|
|
15
|
+
Two changes close the gap that left every module's `.paqad/module-health/<slug>.json` reading `tier: unknown` with all metrics null after onboarding:
|
|
16
|
+
|
|
17
|
+
- 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.
|
|
18
|
+
- 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.
|
|
19
|
+
|
|
3
20
|
## 1.22.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|