@trim21/personal-pi-extensions 0.0.339 → 0.0.341

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/aft/tools.ts +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trim21/personal-pi-extensions",
3
- "version": "0.0.339",
3
+ "version": "0.0.341",
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/aft/tools.ts CHANGED
@@ -156,6 +156,7 @@ export function registerOutlineTool(pi: ExtensionAPI, ctx: AftToolContext): void
156
156
  content: [{ type: "text", text }],
157
157
  details: {
158
158
  truncated,
159
+ params,
159
160
  },
160
161
  };
161
162
  },
@@ -220,6 +221,7 @@ export function registerZoomTool(pi: ExtensionAPI, ctx: AftToolContext): void {
220
221
  content: [{ type: "text", text }],
221
222
  details: {
222
223
  truncated,
224
+ params,
223
225
  pendant: {
224
226
  title: "aft_zoom",
225
227
  subtitle,
@@ -229,7 +231,6 @@ export function registerZoomTool(pi: ExtensionAPI, ctx: AftToolContext): void {
229
231
  output: text,
230
232
  truncated,
231
233
  }),
232
- expanded: true,
233
234
  } satisfies ToolPendant,
234
235
  },
235
236
  };