pi-agent-flow 0.1.0-alpha.1 → 0.1.0-alpha.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.
Files changed (2) hide show
  1. package/index.ts +0 -10
  2. package/package.json +1 -1
package/index.ts CHANGED
@@ -352,16 +352,6 @@ export default function (pi: ExtensionAPI) {
352
352
 
353
353
  const discovery = discoverFlows(ctx.cwd, "all");
354
354
  discoveredFlows = discovery.flows;
355
-
356
- if (discoveredFlows.length > 0 && ctx.hasUI) {
357
- const list = discoveredFlows
358
- .map((f) => ` - ${f.name} (${f.source})`)
359
- .join("\n");
360
- ctx.ui.notify(
361
- `Found ${discoveredFlows.length} flow(s):\n${list}`,
362
- "info",
363
- );
364
- }
365
355
  });
366
356
 
367
357
  // Inject available flows into the system prompt
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-agent-flow",
3
- "version": "0.1.0-alpha.1",
3
+ "version": "0.1.0-alpha.2",
4
4
  "description": "Flow-state delegation extension for Pi coding agent.",
5
5
  "type": "module",
6
6
  "main": "index.ts",