paqad-ai 1.78.0 → 1.78.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 +10 -1
- package/dist/cli/index.js.map +1 -1
- package/dist/index.js +84 -3
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# paqad-ai
|
|
2
2
|
|
|
3
|
+
## 1.78.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- a9db95e: Skip end-of-change enforcement and all completion checks when the session never
|
|
8
|
+
routed to feature-development (#499). Previously a dirty working tree (for
|
|
9
|
+
example a file hand-edited before the session) was swept up by the `git status`
|
|
10
|
+
fallback, classified as a feature-development change by file path alone, and the
|
|
11
|
+
in-session completion seam blocked the turn demanding planning/spec/review/checks
|
|
12
|
+
stages the session never owed. The completion backstop now consults the per-message
|
|
13
|
+
route: for a question, pentest, docs task, RCA, or small-talk session it runs no
|
|
14
|
+
gate, mints no inferred-git record, writes no evidence, and never blocks — it
|
|
15
|
+
returns an ok "verification not applicable" verdict and records one audit row.
|
|
16
|
+
An absent/unknown route still runs the full pass (fail-closed), and a session that
|
|
17
|
+
recorded any agent-authored code edit re-arms full enforcement. The git/CI
|
|
18
|
+
backstop and the pre-mutation gates are unchanged.
|
|
19
|
+
|
|
3
20
|
## 1.78.0
|
|
4
21
|
|
|
5
22
|
### Minor Changes
|
package/dist/cli/index.js
CHANGED
|
@@ -36019,6 +36019,15 @@ var CAPABILITY_IMPLS = /* @__PURE__ */ new Map([
|
|
|
36019
36019
|
[decisionPauseSelfArmCapability.id, decisionPauseSelfArmCapability]
|
|
36020
36020
|
]);
|
|
36021
36021
|
|
|
36022
|
+
// src/pipeline/route-enforcement.ts
|
|
36023
|
+
init_esm_shims();
|
|
36024
|
+
init_session();
|
|
36025
|
+
|
|
36026
|
+
// src/session-ledger/non-feature-skip-audit.ts
|
|
36027
|
+
init_esm_shims();
|
|
36028
|
+
init_session();
|
|
36029
|
+
init_ledger();
|
|
36030
|
+
|
|
36022
36031
|
// src/verification/repository/run-repository-verification.ts
|
|
36023
36032
|
init_session();
|
|
36024
36033
|
|
|
@@ -36256,7 +36265,7 @@ init_cancelled_error();
|
|
|
36256
36265
|
init_events();
|
|
36257
36266
|
|
|
36258
36267
|
// src/index.ts
|
|
36259
|
-
var VERSION = "1.78.
|
|
36268
|
+
var VERSION = "1.78.1";
|
|
36260
36269
|
|
|
36261
36270
|
// src/cli/commands/audit.ts
|
|
36262
36271
|
init_esm_shims();
|