@davidorex/pi-agent-dispatch 0.30.0 → 0.31.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 +7 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@ All notable changes to this package are documented here. Format follows [Keep a
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [0.31.0] - 2026-06-13
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- The auth-gate's canonical authorization-required set now includes `context-install` (the `pi-context` reflected install-ceremony op): invoking it requires user authorization at the pi-dispatch auth-gate (interactive confirm, or `--yes`/`--force` on the CLI). Membership is derived from the op-registries' `authGated` flags, so the set picked it up automatically from the op's `authGated: true`; the canonical-membership pin test is extended to 20 names to track the derived set.
|
|
11
|
+
- The auth-gate's canonical authorization-required set now includes `resolve-blocked` (the `pi-context` blocked-resolution commit op): invoking it requires user authorization at the pi-dispatch auth-gate (interactive confirm, or `--yes`/`--force` on the CLI). Membership is derived from the op-registries' `authGated` flags, so the set picked it up automatically; the canonical-membership pin test is extended to 19 names to track the derived set.
|
|
12
|
+
- Extended the `AUTH_REQUIRED_TOOLS` canonical-membership pin test to 18 names, adding `resolve-conflict`. The runtime `AUTH_REQUIRED_TOOLS` set is derived from the op-registries' `authGated` flags and already carries `resolve-conflict` (the `pi-context` reconciliation-commit op); the deliberate canon-drift assertion is updated to match the derived set (the gate's purpose is to surface membership drift as a test failure, so the explicit list tracks the derived one).
|
|
13
|
+
|
|
7
14
|
## [0.30.0] - 2026-06-04
|
|
8
15
|
|
|
9
16
|
## [0.29.0] - 2026-06-04
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@davidorex/pi-agent-dispatch",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.31.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -45,10 +45,10 @@
|
|
|
45
45
|
"test": "tsx --test src/*.test.ts"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@davidorex/pi-behavior-monitors": "^0.
|
|
49
|
-
"@davidorex/pi-context": "^0.
|
|
50
|
-
"@davidorex/pi-jit-agents": "^0.
|
|
51
|
-
"@davidorex/pi-workflows": "^0.
|
|
48
|
+
"@davidorex/pi-behavior-monitors": "^0.31.0",
|
|
49
|
+
"@davidorex/pi-context": "^0.31.0",
|
|
50
|
+
"@davidorex/pi-jit-agents": "^0.31.0",
|
|
51
|
+
"@davidorex/pi-workflows": "^0.31.0",
|
|
52
52
|
"@earendil-works/pi-ai": "^0.75.4",
|
|
53
53
|
"@earendil-works/pi-coding-agent": "^0.75.4",
|
|
54
54
|
"yaml": "^2.7.1"
|