@vandeepunk/pi-coding-agent 0.0.5 → 0.0.6

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 (35) hide show
  1. package/CHANGELOG.md +32 -1
  2. package/README.md +8 -0
  3. package/dist/cli/args.d.ts.map +1 -1
  4. package/dist/cli/args.js +6 -6
  5. package/dist/cli/args.js.map +1 -1
  6. package/dist/core/agent-session.d.ts +3 -6
  7. package/dist/core/agent-session.d.ts.map +1 -1
  8. package/dist/core/agent-session.js +2 -1
  9. package/dist/core/agent-session.js.map +1 -1
  10. package/dist/core/export-html/index.d.ts.map +1 -1
  11. package/dist/core/export-html/index.js +1 -1
  12. package/dist/core/export-html/index.js.map +1 -1
  13. package/dist/core/export-html/template.css +59 -0
  14. package/dist/core/export-html/template.js +21 -1
  15. package/dist/core/extensions/types.d.ts +2 -2
  16. package/dist/core/extensions/types.d.ts.map +1 -1
  17. package/dist/core/extensions/types.js.map +1 -1
  18. package/dist/core/package-manager.d.ts.map +1 -1
  19. package/dist/core/package-manager.js +1 -2
  20. package/dist/core/package-manager.js.map +1 -1
  21. package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
  22. package/dist/modes/interactive/interactive-mode.js +4 -2
  23. package/dist/modes/interactive/interactive-mode.js.map +1 -1
  24. package/docs/custom-provider.md +9 -0
  25. package/docs/extensions.md +1 -1
  26. package/docs/providers.md +24 -19
  27. package/docs/rpc.md +7 -1
  28. package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
  29. package/examples/extensions/custom-provider-anthropic/package.json +1 -1
  30. package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
  31. package/examples/extensions/custom-provider-qwen-cli/package.json +1 -1
  32. package/examples/extensions/subagent/index.ts +2 -1
  33. package/examples/extensions/with-deps/package-lock.json +2 -2
  34. package/examples/extensions/with-deps/package.json +1 -1
  35. package/package.json +4 -4
@@ -231,8 +231,10 @@ export class InteractiveMode {
231
231
  return;
232
232
  // Load changelog (only show new entries, skip for resumed sessions)
233
233
  this.changelogMarkdown = this.getChangelogForDisplay();
234
- // Setup autocomplete with fd tool for file path completion
235
- this.fdPath = await ensureTool("fd");
234
+ // Ensure fd and rg are available (downloads if missing, adds to PATH via getBinDir)
235
+ // Both are needed: fd for autocomplete, rg for grep tool and bash commands
236
+ const [fdPath] = await Promise.all([ensureTool("fd"), ensureTool("rg")]);
237
+ this.fdPath = fdPath;
236
238
  // Add header container as first child
237
239
  this.ui.addChild(this.headerContainer);
238
240
  // Add header with keybindings from config (unless silenced)