paqad-ai 1.26.2 → 1.28.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 +38 -0
- package/dist/cli/index.js +878 -849
- package/dist/cli/index.js.map +1 -1
- package/dist/index.d.ts +15 -4
- package/dist/index.js +720 -724
- package/dist/index.js.map +1 -1
- package/dist/rule-scripts/index.js +0 -7
- package/dist/rule-scripts/index.js.map +1 -1
- package/package.json +5 -5
- package/runtime/hooks/agent-entry-gate.sh +7 -0
- package/runtime/hooks/agent-entry-prompt-gate.sh +8 -0
- package/runtime/hooks/decision-pause-gate.sh +9 -0
- package/runtime/hooks/lib/agent-entry-sentinel.sh +7 -0
- package/runtime/hooks/lib/paqad-disabled.mjs +62 -0
- package/runtime/hooks/lib/paqad-disabled.sh +49 -0
- package/runtime/hooks/silent-update.mjs +274 -0
- package/runtime/scripts/verify-backstop.mjs +10 -0
- package/runtime/templates/agent-configs/agents.md.hbs +2 -0
- package/runtime/templates/agent-configs/aider.md.hbs +2 -0
- package/runtime/templates/agent-configs/antigravity.md.hbs +2 -0
- package/runtime/templates/agent-configs/claude.md.hbs +2 -0
- package/runtime/templates/agent-configs/continue.md.hbs +2 -0
- package/runtime/templates/agent-configs/copilot.md.hbs +2 -0
- package/runtime/templates/agent-configs/cursor.md.hbs +2 -0
- package/runtime/templates/agent-configs/gemini.md.hbs +2 -0
- package/runtime/templates/agent-configs/junie.md.hbs +2 -0
- package/runtime/templates/agent-configs/windsurf.md.hbs +2 -0
- package/runtime/hooks/silent-update.sh +0 -194
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# paqad-ai
|
|
2
2
|
|
|
3
|
+
## 1.28.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#221](https://github.com/Eliyce/paqad-ai/pull/221) [`d0e93dd`](https://github.com/Eliyce/paqad-ai/commit/d0e93dd0d66dc27321ea7819b4736ff969ce072d) Thanks [@HLasani](https://github.com/HLasani)! - Add a global enable/disable toggle with graceful degradation ([#220](https://github.com/Eliyce/paqad-ai/issues/220))
|
|
8
|
+
|
|
9
|
+
Teams can now turn paqad fully off for a fair A/B baseline, and an
|
|
10
|
+
absent or disabled install can no longer hard-fail an IDE.
|
|
11
|
+
|
|
12
|
+
- **One off-signal, read everywhere.** A committed `paqad.enabled: false`
|
|
13
|
+
in `.paqad/project-profile.yaml`, or a per-run `PAQAD_DISABLED=1`
|
|
14
|
+
override (which wins), turns paqad off. Absent means on, so existing
|
|
15
|
+
projects are unchanged. The signal is read three dist-less ways that
|
|
16
|
+
agree: a TS predicate, a shell primitive, and an `.mjs` primitive.
|
|
17
|
+
- **Off is a pure no-op.** Both entry gates, the decision-pause gate, the
|
|
18
|
+
completion hooks, the verification backstop, and silent-update all
|
|
19
|
+
early-exit when off. No block, no `[paqad]` stdout injection, and zero
|
|
20
|
+
`.paqad/` writes, so a disabled turn leaves a clean tree.
|
|
21
|
+
- **No IDE dead-ends.** Every host entry file now carries a graceful
|
|
22
|
+
fallback clause: if the framework pointer cannot be resolved or paqad is
|
|
23
|
+
disabled, the agent proceeds as a normal assistant instead of blocking.
|
|
24
|
+
- **`paqad-ai enable` / `paqad-ai disable`** flip the durable flag with no
|
|
25
|
+
re-onboarding, and `paqad-ai doctor` reports the disabled (vanilla mode)
|
|
26
|
+
state as healthy.
|
|
27
|
+
|
|
28
|
+
## 1.27.0
|
|
29
|
+
|
|
30
|
+
### Minor Changes
|
|
31
|
+
|
|
32
|
+
- [#207](https://github.com/Eliyce/paqad-ai/pull/207) [`c004f78`](https://github.com/Eliyce/paqad-ai/commit/c004f7805fd5af05ed9a03a6ccdb3072afb84143) Thanks [@HLasani](https://github.com/HLasani)! - Make an onboarded `.paqad/` directory lighter and the auto-update hook cross-platform.
|
|
33
|
+
|
|
34
|
+
- **Cross-platform silent-update.** The session-start auto-update hook is now a Node `silent-update.mjs` that runs from the framework install, instead of a `silent-update.sh` copied into every project. The shell version needed bash, python3, and GNU coreutils; the Node version needs only Node, so auto-update works on minimal images and Windows. On re-onboard the old `.sh` entry is pruned from the provider config and the committed copy is removed.
|
|
35
|
+
- **Stop churning the tracked manifest.** `onboarding-manifest.json` no longer carries `framework_version` (the one field that changed on every version bump). The file stays tracked for its auto-update policy and onboarded-sentinel role.
|
|
36
|
+
- **Drop zero-reader artifacts.** `.paqad/version`, `.paqad/classifier-config.json`, and `.paqad/next-steps.md` are no longer written (the next-steps guidance is printed to the terminal at the end of onboarding). Repos onboarded before this change have these untracked and removed on re-onboard.
|
|
37
|
+
- **Quieter module health.** Profiles are created on demand as modules accrue evidence instead of seeding an empty profile per module at onboard, and consumed evidence files are deleted after they fold into a profile, so they no longer grow unbounded.
|
|
38
|
+
- **Close .gitignore gaps.** Per-machine runtime state created on first use of a later workflow (`patterns/`, `crs/`, `attachments/`, `traceability/`, module-map drift/events, and more) is now ignored so it never churns a team repo.
|
|
39
|
+
- **Fewer false health warnings.** The decision-workspace check no longer requires the git-ignored audit log, and a missing module-health directory is treated as healthy.
|
|
40
|
+
|
|
3
41
|
## 1.26.2
|
|
4
42
|
|
|
5
43
|
### Patch Changes
|