pi-delegation-policy 0.2.0 → 0.2.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 +6 -0
- package/README.md +2 -2
- package/SECURITY.md +1 -1
- package/package.json +1 -1
- package/src/index.ts +1 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
A local Pi extension that lets you choose delegation intensity and exact model references for Small, Medium, Large, and an optional UI Design role. It guides the main agent; it does not run, route, or enforce delegated work.
|
|
4
4
|
|
|
5
|
-
> **Status:** Version 0.2.
|
|
5
|
+
> **Status:** Version 0.2.1 is available from npm.
|
|
6
6
|
>
|
|
7
7
|
> **Documentation:** Read the [documentation site](https://yivas.github.io/pi-delegation-policy/).
|
|
8
8
|
|
|
@@ -39,7 +39,7 @@ It supports Pi `0.84.1`. Restart Pi or run `/reload` after installation. To inst
|
|
|
39
39
|
/delegate reset Reset this session branch to off
|
|
40
40
|
```
|
|
41
41
|
|
|
42
|
-
`
|
|
42
|
+
`Alt+G` opens the selector when the shortcut is available. There is no separate off shortcut; use `/delegate off` or choose `off` in the selector. Changes apply to the next agent run. An agent already running keeps the system prompt it started with.
|
|
43
43
|
|
|
44
44
|
The footer shows `D:OFF`, `D:NORM`, `D:AGG`, or `D:ERR` without replacing Pi's own status.
|
|
45
45
|
|
package/SECURITY.md
CHANGED
|
@@ -14,4 +14,4 @@ Include the affected version or commit, operating system, Pi version, reproducti
|
|
|
14
14
|
|
|
15
15
|
## Supported versions
|
|
16
16
|
|
|
17
|
-
Only the latest published version is supported. Version 0.2.
|
|
17
|
+
Only the latest published version is supported. Version 0.2.1 is the current supported release.
|
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -125,7 +125,7 @@ export default function piDelegationPolicy(pi: ExtensionAPI): void {
|
|
|
125
125
|
},
|
|
126
126
|
});
|
|
127
127
|
|
|
128
|
-
pi.registerShortcut("
|
|
128
|
+
pi.registerShortcut("alt+g", {
|
|
129
129
|
description: "Open delegation policy",
|
|
130
130
|
handler: async (ctx) => openEditor(pi, ctx),
|
|
131
131
|
});
|