pi-agent-extensions 0.3.1 → 0.3.2

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * /context
2
+ * /context-simple
3
3
  *
4
4
  * Small TUI view showing what's loaded/available:
5
5
  * - extensions (best-effort from registered extension slash commands)
@@ -470,8 +470,8 @@ export default function contextExtension(pi: ExtensionAPI) {
470
470
  }
471
471
  });
472
472
 
473
- pi.registerCommand("context", {
474
- description: "Show loaded context overview",
473
+ pi.registerCommand("context-simple", {
474
+ description: "Show loaded context overview",
475
475
  handler: async (_args, ctx: ExtensionCommandContext) => {
476
476
  const commands = pi.getCommands();
477
477
  const extensionCmds = commands.filter((c) => c.source === "extension");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-agent-extensions",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Collection of extensions for pi coding agent",
5
5
  "type": "module",
6
6
  "repository": {