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 CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.2.1 - 2026-08-26
6
+
7
+ ### Fixed
8
+
9
+ - Replaced `Ctrl+Alt+D` with the terminal-safe, conflict-free `Alt+G` shortcut.
10
+
5
11
  ## 0.2.0 - 2026-08-26
6
12
 
7
13
  ### Added
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.0 is available from npm.
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
- `Ctrl+Alt+D` 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.
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.0 is the current supported release.
17
+ Only the latest published version is supported. Version 0.2.1 is the current supported release.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-delegation-policy",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "private": false,
5
5
  "description": "A Pi extension for configurable delegation intensity and exact subagent role model references.",
6
6
  "type": "module",
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("ctrl+alt+d", {
128
+ pi.registerShortcut("alt+g", {
129
129
  description: "Open delegation policy",
130
130
  handler: async (ctx) => openEditor(pi, ctx),
131
131
  });