@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.
- package/CHANGELOG.md +32 -1
- package/README.md +8 -0
- package/dist/cli/args.d.ts.map +1 -1
- package/dist/cli/args.js +6 -6
- package/dist/cli/args.js.map +1 -1
- package/dist/core/agent-session.d.ts +3 -6
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +2 -1
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/export-html/index.d.ts.map +1 -1
- package/dist/core/export-html/index.js +1 -1
- package/dist/core/export-html/index.js.map +1 -1
- package/dist/core/export-html/template.css +59 -0
- package/dist/core/export-html/template.js +21 -1
- package/dist/core/extensions/types.d.ts +2 -2
- package/dist/core/extensions/types.d.ts.map +1 -1
- package/dist/core/extensions/types.js.map +1 -1
- package/dist/core/package-manager.d.ts.map +1 -1
- package/dist/core/package-manager.js +1 -2
- package/dist/core/package-manager.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +4 -2
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/docs/custom-provider.md +9 -0
- package/docs/extensions.md +1 -1
- package/docs/providers.md +24 -19
- package/docs/rpc.md +7 -1
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/custom-provider-qwen-cli/package.json +1 -1
- package/examples/extensions/subagent/index.ts +2 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- 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
|
-
//
|
|
235
|
-
|
|
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)
|