@arhen/pi-core-subagent 1.1.17 → 1.1.18

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/README.md CHANGED
@@ -100,7 +100,7 @@ Background + intercom:
100
100
  | `send_agent_message` | message to a sibling subagent's mailbox (`to` = its task id, or `"leader"`) |
101
101
  | `poll_agent_messages` | drain this subagent's mailbox |
102
102
 
103
- ## Peek — `/peek` or `ctrl+shift+s`
103
+ ## Peek — `/peek` or `ctrl+shift+a`
104
104
 
105
105
  Read-only pane over the session's subagents:
106
106
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@arhen/pi-core-subagent",
3
- "version": "1.1.17",
3
+ "version": "1.1.18",
4
4
  "type": "module",
5
5
  "description": "pi extension: fast in-process subagents with single/parallel/chain, background runs, intercom and agent-to-agent mailbox. Leader defines agents inline.",
6
6
  "license": "MIT",
package/src/index.ts CHANGED
@@ -1238,7 +1238,8 @@ export default function (pi: ExtensionAPI) {
1238
1238
  );
1239
1239
  };
1240
1240
  pi.registerCommand("peek", { description: "Peek at running subagents (↑↓ move, enter tails)", handler: (_args, ctx) => openPeek(ctx) });
1241
- pi.registerShortcut("ctrl+shift+s", { description: "Peek at running subagents", handler: openPeek });
1241
+ // ctrl+shift+s belongs to pi-web-access (search curator); 'a' for agents is free.
1242
+ pi.registerShortcut("ctrl+shift+a", { description: "Peek at running subagents", handler: openPeek });
1242
1243
 
1243
1244
  pi.on("agent_start", (_event, ctx) => {
1244
1245
  if (!manager.turnActivity && !manager.hasActiveRun()) manager.clearWidget(ctx);