@trim21/personal-pi-extensions 0.0.353 → 0.0.354

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trim21/personal-pi-extensions",
3
- "version": "0.0.353",
3
+ "version": "0.0.354",
4
4
  "type": "module",
5
5
  "description": "Custom pi coding-agent extensions: bwrap sandbox, workspace guard, opencode edit, and more",
6
6
  "keywords": [
package/src/talk/index.ts CHANGED
@@ -226,7 +226,7 @@ export default function talk(pi: ExtensionAPI) {
226
226
  "Ask another pi agent a question and block until it responds (or times out). Before asking, it checks whether that agent already sent you something; if so, you are told to read and respond first instead of asking.",
227
227
  promptSnippet: "Ask another pi agent a question and wait for a response",
228
228
  parameters: Type.Object({
229
- to: Type.String({ description: "Target agent (name/address/@alias)" }),
229
+ to: Type.String({ description: "Target agent id (from talk-list-agents)" }),
230
230
  message: Type.String({ description: "The question" }),
231
231
  timeoutMs: Type.Optional(
232
232
  Type.Number({ description: `Wait cap in ms; default ${ASK_TIMEOUT_MS}` }),