@vandeepunk/pi-coding-agent 0.0.1
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 +2564 -0
- package/README.md +555 -0
- package/dist/cli/args.d.ts +47 -0
- package/dist/cli/args.d.ts.map +1 -0
- package/dist/cli/args.js +286 -0
- package/dist/cli/args.js.map +1 -0
- package/dist/cli/config-selector.d.ts +14 -0
- package/dist/cli/config-selector.d.ts.map +1 -0
- package/dist/cli/config-selector.js +31 -0
- package/dist/cli/config-selector.js.map +1 -0
- package/dist/cli/file-processor.d.ts +15 -0
- package/dist/cli/file-processor.d.ts.map +1 -0
- package/dist/cli/file-processor.js +79 -0
- package/dist/cli/file-processor.js.map +1 -0
- package/dist/cli/list-models.d.ts +9 -0
- package/dist/cli/list-models.d.ts.map +1 -0
- package/dist/cli/list-models.js +92 -0
- package/dist/cli/list-models.js.map +1 -0
- package/dist/cli/session-picker.d.ts +9 -0
- package/dist/cli/session-picker.d.ts.map +1 -0
- package/dist/cli/session-picker.js +34 -0
- package/dist/cli/session-picker.js.map +1 -0
- package/dist/cli.d.ts +3 -0
- package/dist/cli.d.ts.map +1 -0
- package/dist/cli.js +11 -0
- package/dist/cli.js.map +1 -0
- package/dist/config.d.ts +68 -0
- package/dist/config.d.ts.map +1 -0
- package/dist/config.js +203 -0
- package/dist/config.js.map +1 -0
- package/dist/core/agent-session.d.ts +574 -0
- package/dist/core/agent-session.d.ts.map +1 -0
- package/dist/core/agent-session.js +2260 -0
- package/dist/core/agent-session.js.map +1 -0
- package/dist/core/auth-storage.d.ts +102 -0
- package/dist/core/auth-storage.d.ts.map +1 -0
- package/dist/core/auth-storage.js +282 -0
- package/dist/core/auth-storage.js.map +1 -0
- package/dist/core/bash-executor.d.ts +47 -0
- package/dist/core/bash-executor.d.ts.map +1 -0
- package/dist/core/bash-executor.js +212 -0
- package/dist/core/bash-executor.js.map +1 -0
- package/dist/core/compaction/branch-summarization.d.ts +86 -0
- package/dist/core/compaction/branch-summarization.d.ts.map +1 -0
- package/dist/core/compaction/branch-summarization.js +242 -0
- package/dist/core/compaction/branch-summarization.js.map +1 -0
- package/dist/core/compaction/compaction.d.ts +121 -0
- package/dist/core/compaction/compaction.d.ts.map +1 -0
- package/dist/core/compaction/compaction.js +607 -0
- package/dist/core/compaction/compaction.js.map +1 -0
- package/dist/core/compaction/index.d.ts +7 -0
- package/dist/core/compaction/index.d.ts.map +1 -0
- package/dist/core/compaction/index.js +7 -0
- package/dist/core/compaction/index.js.map +1 -0
- package/dist/core/compaction/utils.d.ts +35 -0
- package/dist/core/compaction/utils.d.ts.map +1 -0
- package/dist/core/compaction/utils.js +138 -0
- package/dist/core/compaction/utils.js.map +1 -0
- package/dist/core/defaults.d.ts +3 -0
- package/dist/core/defaults.d.ts.map +1 -0
- package/dist/core/defaults.js +2 -0
- package/dist/core/defaults.js.map +1 -0
- package/dist/core/diagnostics.d.ts +15 -0
- package/dist/core/diagnostics.d.ts.map +1 -0
- package/dist/core/diagnostics.js +2 -0
- package/dist/core/diagnostics.js.map +1 -0
- package/dist/core/event-bus.d.ts +9 -0
- package/dist/core/event-bus.d.ts.map +1 -0
- package/dist/core/event-bus.js +25 -0
- package/dist/core/event-bus.js.map +1 -0
- package/dist/core/exec.d.ts +29 -0
- package/dist/core/exec.d.ts.map +1 -0
- package/dist/core/exec.js +71 -0
- package/dist/core/exec.js.map +1 -0
- package/dist/core/export-html/ansi-to-html.d.ts +22 -0
- package/dist/core/export-html/ansi-to-html.d.ts.map +1 -0
- package/dist/core/export-html/ansi-to-html.js +249 -0
- package/dist/core/export-html/ansi-to-html.js.map +1 -0
- package/dist/core/export-html/index.d.ts +34 -0
- package/dist/core/export-html/index.d.ts.map +1 -0
- package/dist/core/export-html/index.js +222 -0
- package/dist/core/export-html/index.js.map +1 -0
- package/dist/core/export-html/template.css +909 -0
- package/dist/core/export-html/template.html +54 -0
- package/dist/core/export-html/template.js +1549 -0
- package/dist/core/export-html/tool-renderer.d.ts +35 -0
- package/dist/core/export-html/tool-renderer.d.ts.map +1 -0
- package/dist/core/export-html/tool-renderer.js +57 -0
- package/dist/core/export-html/tool-renderer.js.map +1 -0
- package/dist/core/export-html/vendor/highlight.min.js +1213 -0
- package/dist/core/export-html/vendor/marked.min.js +6 -0
- package/dist/core/extensions/index.d.ts +11 -0
- package/dist/core/extensions/index.d.ts.map +1 -0
- package/dist/core/extensions/index.js +9 -0
- package/dist/core/extensions/index.js.map +1 -0
- package/dist/core/extensions/loader.d.ts +25 -0
- package/dist/core/extensions/loader.d.ts.map +1 -0
- package/dist/core/extensions/loader.js +400 -0
- package/dist/core/extensions/loader.js.map +1 -0
- package/dist/core/extensions/runner.d.ts +129 -0
- package/dist/core/extensions/runner.d.ts.map +1 -0
- package/dist/core/extensions/runner.js +576 -0
- package/dist/core/extensions/runner.js.map +1 -0
- package/dist/core/extensions/types.d.ts +928 -0
- package/dist/core/extensions/types.d.ts.map +1 -0
- package/dist/core/extensions/types.js +35 -0
- package/dist/core/extensions/types.js.map +1 -0
- package/dist/core/extensions/wrapper.d.ts +27 -0
- package/dist/core/extensions/wrapper.d.ts.map +1 -0
- package/dist/core/extensions/wrapper.js +102 -0
- package/dist/core/extensions/wrapper.js.map +1 -0
- package/dist/core/footer-data-provider.d.ts +32 -0
- package/dist/core/footer-data-provider.d.ts.map +1 -0
- package/dist/core/footer-data-provider.js +134 -0
- package/dist/core/footer-data-provider.js.map +1 -0
- package/dist/core/index.d.ts +9 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/index.js +9 -0
- package/dist/core/index.js.map +1 -0
- package/dist/core/keybindings.d.ts +55 -0
- package/dist/core/keybindings.d.ts.map +1 -0
- package/dist/core/keybindings.js +153 -0
- package/dist/core/keybindings.js.map +1 -0
- package/dist/core/messages.d.ts +77 -0
- package/dist/core/messages.d.ts.map +1 -0
- package/dist/core/messages.js +123 -0
- package/dist/core/messages.js.map +1 -0
- package/dist/core/model-registry.d.ts +100 -0
- package/dist/core/model-registry.d.ts.map +1 -0
- package/dist/core/model-registry.js +419 -0
- package/dist/core/model-registry.js.map +1 -0
- package/dist/core/model-resolver.d.ts +76 -0
- package/dist/core/model-resolver.d.ts.map +1 -0
- package/dist/core/model-resolver.js +313 -0
- package/dist/core/model-resolver.js.map +1 -0
- package/dist/core/package-manager.d.ts +131 -0
- package/dist/core/package-manager.d.ts.map +1 -0
- package/dist/core/package-manager.js +1290 -0
- package/dist/core/package-manager.js.map +1 -0
- package/dist/core/prompt-templates.d.ts +50 -0
- package/dist/core/prompt-templates.d.ts.map +1 -0
- package/dist/core/prompt-templates.js +251 -0
- package/dist/core/prompt-templates.js.map +1 -0
- package/dist/core/resolve-config-value.d.ts +17 -0
- package/dist/core/resolve-config-value.d.ts.map +1 -0
- package/dist/core/resolve-config-value.js +59 -0
- package/dist/core/resolve-config-value.js.map +1 -0
- package/dist/core/resource-loader.d.ts +184 -0
- package/dist/core/resource-loader.d.ts.map +1 -0
- package/dist/core/resource-loader.js +673 -0
- package/dist/core/resource-loader.js.map +1 -0
- package/dist/core/sdk.d.ts +90 -0
- package/dist/core/sdk.d.ts.map +1 -0
- package/dist/core/sdk.js +234 -0
- package/dist/core/sdk.js.map +1 -0
- package/dist/core/session-manager.d.ts +323 -0
- package/dist/core/session-manager.d.ts.map +1 -0
- package/dist/core/session-manager.js +1091 -0
- package/dist/core/session-manager.js.map +1 -0
- package/dist/core/settings-manager.d.ts +187 -0
- package/dist/core/settings-manager.d.ts.map +1 -0
- package/dist/core/settings-manager.js +552 -0
- package/dist/core/settings-manager.js.map +1 -0
- package/dist/core/skills.d.ts +58 -0
- package/dist/core/skills.d.ts.map +1 -0
- package/dist/core/skills.js +310 -0
- package/dist/core/skills.js.map +1 -0
- package/dist/core/slash-commands.d.ts +15 -0
- package/dist/core/slash-commands.d.ts.map +1 -0
- package/dist/core/slash-commands.js +21 -0
- package/dist/core/slash-commands.js.map +1 -0
- package/dist/core/system-prompt.d.ts +24 -0
- package/dist/core/system-prompt.d.ts.map +1 -0
- package/dist/core/system-prompt.js +137 -0
- package/dist/core/system-prompt.js.map +1 -0
- package/dist/core/timings.d.ts +7 -0
- package/dist/core/timings.d.ts.map +1 -0
- package/dist/core/timings.js +25 -0
- package/dist/core/timings.js.map +1 -0
- package/dist/core/tools/bash.d.ts +55 -0
- package/dist/core/tools/bash.d.ts.map +1 -0
- package/dist/core/tools/bash.js +242 -0
- package/dist/core/tools/bash.js.map +1 -0
- package/dist/core/tools/edit-diff.d.ts +63 -0
- package/dist/core/tools/edit-diff.d.ts.map +1 -0
- package/dist/core/tools/edit-diff.js +243 -0
- package/dist/core/tools/edit-diff.js.map +1 -0
- package/dist/core/tools/edit.d.ts +39 -0
- package/dist/core/tools/edit.d.ts.map +1 -0
- package/dist/core/tools/edit.js +146 -0
- package/dist/core/tools/edit.js.map +1 -0
- package/dist/core/tools/find.d.ts +39 -0
- package/dist/core/tools/find.d.ts.map +1 -0
- package/dist/core/tools/find.js +206 -0
- package/dist/core/tools/find.js.map +1 -0
- package/dist/core/tools/grep.d.ts +45 -0
- package/dist/core/tools/grep.d.ts.map +1 -0
- package/dist/core/tools/grep.js +239 -0
- package/dist/core/tools/grep.js.map +1 -0
- package/dist/core/tools/index.d.ts +73 -0
- package/dist/core/tools/index.d.ts.map +1 -0
- package/dist/core/tools/index.js +61 -0
- package/dist/core/tools/index.js.map +1 -0
- package/dist/core/tools/ls.d.ts +40 -0
- package/dist/core/tools/ls.d.ts.map +1 -0
- package/dist/core/tools/ls.js +118 -0
- package/dist/core/tools/ls.js.map +1 -0
- package/dist/core/tools/path-utils.d.ts +8 -0
- package/dist/core/tools/path-utils.d.ts.map +1 -0
- package/dist/core/tools/path-utils.js +81 -0
- package/dist/core/tools/path-utils.js.map +1 -0
- package/dist/core/tools/read.d.ts +39 -0
- package/dist/core/tools/read.d.ts.map +1 -0
- package/dist/core/tools/read.js +166 -0
- package/dist/core/tools/read.js.map +1 -0
- package/dist/core/tools/truncate.d.ts +70 -0
- package/dist/core/tools/truncate.d.ts.map +1 -0
- package/dist/core/tools/truncate.js +205 -0
- package/dist/core/tools/truncate.js.map +1 -0
- package/dist/core/tools/write.d.ts +29 -0
- package/dist/core/tools/write.d.ts.map +1 -0
- package/dist/core/tools/write.js +78 -0
- package/dist/core/tools/write.js.map +1 -0
- package/dist/index.d.ts +27 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +42 -0
- package/dist/index.js.map +1 -0
- package/dist/main.d.ts +8 -0
- package/dist/main.d.ts.map +1 -0
- package/dist/main.js +623 -0
- package/dist/main.js.map +1 -0
- package/dist/migrations.d.ts +33 -0
- package/dist/migrations.d.ts.map +1 -0
- package/dist/migrations.js +261 -0
- package/dist/migrations.js.map +1 -0
- package/dist/modes/index.d.ts +9 -0
- package/dist/modes/index.d.ts.map +1 -0
- package/dist/modes/index.js +8 -0
- package/dist/modes/index.js.map +1 -0
- package/dist/modes/interactive/components/armin.d.ts +34 -0
- package/dist/modes/interactive/components/armin.d.ts.map +1 -0
- package/dist/modes/interactive/components/armin.js +333 -0
- package/dist/modes/interactive/components/armin.js.map +1 -0
- package/dist/modes/interactive/components/assistant-message.d.ts +16 -0
- package/dist/modes/interactive/components/assistant-message.d.ts.map +1 -0
- package/dist/modes/interactive/components/assistant-message.js +91 -0
- package/dist/modes/interactive/components/assistant-message.js.map +1 -0
- package/dist/modes/interactive/components/bash-execution.d.ts +35 -0
- package/dist/modes/interactive/components/bash-execution.d.ts.map +1 -0
- package/dist/modes/interactive/components/bash-execution.js +162 -0
- package/dist/modes/interactive/components/bash-execution.js.map +1 -0
- package/dist/modes/interactive/components/bordered-loader.d.ts +16 -0
- package/dist/modes/interactive/components/bordered-loader.d.ts.map +1 -0
- package/dist/modes/interactive/components/bordered-loader.js +51 -0
- package/dist/modes/interactive/components/bordered-loader.js.map +1 -0
- package/dist/modes/interactive/components/branch-summary-message.d.ts +16 -0
- package/dist/modes/interactive/components/branch-summary-message.d.ts.map +1 -0
- package/dist/modes/interactive/components/branch-summary-message.js +44 -0
- package/dist/modes/interactive/components/branch-summary-message.js.map +1 -0
- package/dist/modes/interactive/components/compaction-summary-message.d.ts +16 -0
- package/dist/modes/interactive/components/compaction-summary-message.d.ts.map +1 -0
- package/dist/modes/interactive/components/compaction-summary-message.js +45 -0
- package/dist/modes/interactive/components/compaction-summary-message.js.map +1 -0
- package/dist/modes/interactive/components/config-selector.d.ts +71 -0
- package/dist/modes/interactive/components/config-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/config-selector.js +479 -0
- package/dist/modes/interactive/components/config-selector.js.map +1 -0
- package/dist/modes/interactive/components/countdown-timer.d.ts +14 -0
- package/dist/modes/interactive/components/countdown-timer.d.ts.map +1 -0
- package/dist/modes/interactive/components/countdown-timer.js +33 -0
- package/dist/modes/interactive/components/countdown-timer.js.map +1 -0
- package/dist/modes/interactive/components/custom-editor.d.ts +21 -0
- package/dist/modes/interactive/components/custom-editor.d.ts.map +1 -0
- package/dist/modes/interactive/components/custom-editor.js +70 -0
- package/dist/modes/interactive/components/custom-editor.js.map +1 -0
- package/dist/modes/interactive/components/custom-message.d.ts +20 -0
- package/dist/modes/interactive/components/custom-message.d.ts.map +1 -0
- package/dist/modes/interactive/components/custom-message.js +79 -0
- package/dist/modes/interactive/components/custom-message.js.map +1 -0
- package/dist/modes/interactive/components/daxnuts.d.ts +23 -0
- package/dist/modes/interactive/components/daxnuts.d.ts.map +1 -0
- package/dist/modes/interactive/components/daxnuts.js +140 -0
- package/dist/modes/interactive/components/daxnuts.js.map +1 -0
- package/dist/modes/interactive/components/diff.d.ts +12 -0
- package/dist/modes/interactive/components/diff.d.ts.map +1 -0
- package/dist/modes/interactive/components/diff.js +133 -0
- package/dist/modes/interactive/components/diff.js.map +1 -0
- package/dist/modes/interactive/components/dynamic-border.d.ts +15 -0
- package/dist/modes/interactive/components/dynamic-border.d.ts.map +1 -0
- package/dist/modes/interactive/components/dynamic-border.js +21 -0
- package/dist/modes/interactive/components/dynamic-border.js.map +1 -0
- package/dist/modes/interactive/components/extension-editor.d.ts +17 -0
- package/dist/modes/interactive/components/extension-editor.d.ts.map +1 -0
- package/dist/modes/interactive/components/extension-editor.js +102 -0
- package/dist/modes/interactive/components/extension-editor.js.map +1 -0
- package/dist/modes/interactive/components/extension-input.d.ts +23 -0
- package/dist/modes/interactive/components/extension-input.d.ts.map +1 -0
- package/dist/modes/interactive/components/extension-input.js +61 -0
- package/dist/modes/interactive/components/extension-input.js.map +1 -0
- package/dist/modes/interactive/components/extension-selector.d.ts +24 -0
- package/dist/modes/interactive/components/extension-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/extension-selector.js +78 -0
- package/dist/modes/interactive/components/extension-selector.js.map +1 -0
- package/dist/modes/interactive/components/footer.d.ts +26 -0
- package/dist/modes/interactive/components/footer.d.ts.map +1 -0
- package/dist/modes/interactive/components/footer.js +220 -0
- package/dist/modes/interactive/components/footer.js.map +1 -0
- package/dist/modes/interactive/components/index.d.ts +32 -0
- package/dist/modes/interactive/components/index.d.ts.map +1 -0
- package/dist/modes/interactive/components/index.js +33 -0
- package/dist/modes/interactive/components/index.js.map +1 -0
- package/dist/modes/interactive/components/keybinding-hints.d.ts +41 -0
- package/dist/modes/interactive/components/keybinding-hints.d.ts.map +1 -0
- package/dist/modes/interactive/components/keybinding-hints.js +61 -0
- package/dist/modes/interactive/components/keybinding-hints.js.map +1 -0
- package/dist/modes/interactive/components/login-dialog.d.ts +42 -0
- package/dist/modes/interactive/components/login-dialog.d.ts.map +1 -0
- package/dist/modes/interactive/components/login-dialog.js +145 -0
- package/dist/modes/interactive/components/login-dialog.js.map +1 -0
- package/dist/modes/interactive/components/model-selector.d.ts +47 -0
- package/dist/modes/interactive/components/model-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/model-selector.js +266 -0
- package/dist/modes/interactive/components/model-selector.js.map +1 -0
- package/dist/modes/interactive/components/oauth-selector.d.ts +19 -0
- package/dist/modes/interactive/components/oauth-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/oauth-selector.js +97 -0
- package/dist/modes/interactive/components/oauth-selector.js.map +1 -0
- package/dist/modes/interactive/components/scoped-models-selector.d.ts +49 -0
- package/dist/modes/interactive/components/scoped-models-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/scoped-models-selector.js +270 -0
- package/dist/modes/interactive/components/scoped-models-selector.js.map +1 -0
- package/dist/modes/interactive/components/session-selector-search.d.ts +23 -0
- package/dist/modes/interactive/components/session-selector-search.d.ts.map +1 -0
- package/dist/modes/interactive/components/session-selector-search.js +155 -0
- package/dist/modes/interactive/components/session-selector-search.js.map +1 -0
- package/dist/modes/interactive/components/session-selector.d.ts +95 -0
- package/dist/modes/interactive/components/session-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/session-selector.js +851 -0
- package/dist/modes/interactive/components/session-selector.js.map +1 -0
- package/dist/modes/interactive/components/settings-selector.d.ts +53 -0
- package/dist/modes/interactive/components/settings-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/settings-selector.js +277 -0
- package/dist/modes/interactive/components/settings-selector.js.map +1 -0
- package/dist/modes/interactive/components/show-images-selector.d.ts +10 -0
- package/dist/modes/interactive/components/show-images-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/show-images-selector.js +35 -0
- package/dist/modes/interactive/components/show-images-selector.js.map +1 -0
- package/dist/modes/interactive/components/skill-invocation-message.d.ts +17 -0
- package/dist/modes/interactive/components/skill-invocation-message.d.ts.map +1 -0
- package/dist/modes/interactive/components/skill-invocation-message.js +47 -0
- package/dist/modes/interactive/components/skill-invocation-message.js.map +1 -0
- package/dist/modes/interactive/components/theme-selector.d.ts +11 -0
- package/dist/modes/interactive/components/theme-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/theme-selector.js +46 -0
- package/dist/modes/interactive/components/theme-selector.js.map +1 -0
- package/dist/modes/interactive/components/thinking-selector.d.ts +11 -0
- package/dist/modes/interactive/components/thinking-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/thinking-selector.js +47 -0
- package/dist/modes/interactive/components/thinking-selector.js.map +1 -0
- package/dist/modes/interactive/components/tool-execution.d.ts +70 -0
- package/dist/modes/interactive/components/tool-execution.d.ts.map +1 -0
- package/dist/modes/interactive/components/tool-execution.js +621 -0
- package/dist/modes/interactive/components/tool-execution.js.map +1 -0
- package/dist/modes/interactive/components/tree-selector.d.ts +68 -0
- package/dist/modes/interactive/components/tree-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/tree-selector.js +934 -0
- package/dist/modes/interactive/components/tree-selector.js.map +1 -0
- package/dist/modes/interactive/components/user-message-selector.d.ts +30 -0
- package/dist/modes/interactive/components/user-message-selector.d.ts.map +1 -0
- package/dist/modes/interactive/components/user-message-selector.js +113 -0
- package/dist/modes/interactive/components/user-message-selector.js.map +1 -0
- package/dist/modes/interactive/components/user-message.d.ts +8 -0
- package/dist/modes/interactive/components/user-message.d.ts.map +1 -0
- package/dist/modes/interactive/components/user-message.js +16 -0
- package/dist/modes/interactive/components/user-message.js.map +1 -0
- package/dist/modes/interactive/components/visual-truncate.d.ts +24 -0
- package/dist/modes/interactive/components/visual-truncate.d.ts.map +1 -0
- package/dist/modes/interactive/components/visual-truncate.js +33 -0
- package/dist/modes/interactive/components/visual-truncate.js.map +1 -0
- package/dist/modes/interactive/interactive-mode.d.ts +313 -0
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -0
- package/dist/modes/interactive/interactive-mode.js +3664 -0
- package/dist/modes/interactive/interactive-mode.js.map +1 -0
- package/dist/modes/interactive/theme/dark.json +85 -0
- package/dist/modes/interactive/theme/light.json +84 -0
- package/dist/modes/interactive/theme/theme-schema.json +335 -0
- package/dist/modes/interactive/theme/theme.d.ts +78 -0
- package/dist/modes/interactive/theme/theme.d.ts.map +1 -0
- package/dist/modes/interactive/theme/theme.js +944 -0
- package/dist/modes/interactive/theme/theme.js.map +1 -0
- package/dist/modes/print-mode.d.ts +28 -0
- package/dist/modes/print-mode.d.ts.map +1 -0
- package/dist/modes/print-mode.js +98 -0
- package/dist/modes/print-mode.js.map +1 -0
- package/dist/modes/rpc/rpc-client.d.ts +217 -0
- package/dist/modes/rpc/rpc-client.d.ts.map +1 -0
- package/dist/modes/rpc/rpc-client.js +405 -0
- package/dist/modes/rpc/rpc-client.js.map +1 -0
- package/dist/modes/rpc/rpc-mode.d.ts +20 -0
- package/dist/modes/rpc/rpc-mode.d.ts.map +1 -0
- package/dist/modes/rpc/rpc-mode.js +500 -0
- package/dist/modes/rpc/rpc-mode.js.map +1 -0
- package/dist/modes/rpc/rpc-types.d.ts +409 -0
- package/dist/modes/rpc/rpc-types.d.ts.map +1 -0
- package/dist/modes/rpc/rpc-types.js +8 -0
- package/dist/modes/rpc/rpc-types.js.map +1 -0
- package/dist/utils/changelog.d.ts +21 -0
- package/dist/utils/changelog.d.ts.map +1 -0
- package/dist/utils/changelog.js +87 -0
- package/dist/utils/changelog.js.map +1 -0
- package/dist/utils/clipboard-image.d.ts +11 -0
- package/dist/utils/clipboard-image.d.ts.map +1 -0
- package/dist/utils/clipboard-image.js +162 -0
- package/dist/utils/clipboard-image.js.map +1 -0
- package/dist/utils/clipboard-native.d.ts +7 -0
- package/dist/utils/clipboard-native.d.ts.map +1 -0
- package/dist/utils/clipboard-native.js +14 -0
- package/dist/utils/clipboard-native.js.map +1 -0
- package/dist/utils/clipboard.d.ts +2 -0
- package/dist/utils/clipboard.d.ts.map +1 -0
- package/dist/utils/clipboard.js +67 -0
- package/dist/utils/clipboard.js.map +1 -0
- package/dist/utils/frontmatter.d.ts +8 -0
- package/dist/utils/frontmatter.d.ts.map +1 -0
- package/dist/utils/frontmatter.js +26 -0
- package/dist/utils/frontmatter.js.map +1 -0
- package/dist/utils/git.d.ts +2 -0
- package/dist/utils/git.d.ts.map +1 -0
- package/dist/utils/git.js +6 -0
- package/dist/utils/git.js.map +1 -0
- package/dist/utils/image-convert.d.ts +9 -0
- package/dist/utils/image-convert.d.ts.map +1 -0
- package/dist/utils/image-convert.js +35 -0
- package/dist/utils/image-convert.js.map +1 -0
- package/dist/utils/image-resize.d.ts +36 -0
- package/dist/utils/image-resize.d.ts.map +1 -0
- package/dist/utils/image-resize.js +181 -0
- package/dist/utils/image-resize.js.map +1 -0
- package/dist/utils/mime.d.ts +2 -0
- package/dist/utils/mime.d.ts.map +1 -0
- package/dist/utils/mime.js +26 -0
- package/dist/utils/mime.js.map +1 -0
- package/dist/utils/photon.d.ts +21 -0
- package/dist/utils/photon.d.ts.map +1 -0
- package/dist/utils/photon.js +121 -0
- package/dist/utils/photon.js.map +1 -0
- package/dist/utils/shell.d.ts +26 -0
- package/dist/utils/shell.d.ts.map +1 -0
- package/dist/utils/shell.js +186 -0
- package/dist/utils/shell.js.map +1 -0
- package/dist/utils/sleep.d.ts +5 -0
- package/dist/utils/sleep.d.ts.map +1 -0
- package/dist/utils/sleep.js +17 -0
- package/dist/utils/sleep.js.map +1 -0
- package/dist/utils/tools-manager.d.ts +3 -0
- package/dist/utils/tools-manager.d.ts.map +1 -0
- package/dist/utils/tools-manager.js +201 -0
- package/dist/utils/tools-manager.js.map +1 -0
- package/docs/compaction.md +390 -0
- package/docs/custom-provider.md +539 -0
- package/docs/development.md +69 -0
- package/docs/extensions.md +1827 -0
- package/docs/images/doom-extension.png +0 -0
- package/docs/images/exy.png +0 -0
- package/docs/images/interactive-mode.png +0 -0
- package/docs/images/tree-view.png +0 -0
- package/docs/json.md +79 -0
- package/docs/keybindings.md +174 -0
- package/docs/models.md +254 -0
- package/docs/packages.md +191 -0
- package/docs/prompt-templates.md +67 -0
- package/docs/providers.md +168 -0
- package/docs/rpc.md +1311 -0
- package/docs/sdk.md +957 -0
- package/docs/session.md +412 -0
- package/docs/settings.md +221 -0
- package/docs/shell-aliases.md +13 -0
- package/docs/skills.md +227 -0
- package/docs/terminal-setup.md +70 -0
- package/docs/termux.md +127 -0
- package/docs/themes.md +295 -0
- package/docs/tree.md +219 -0
- package/docs/tui.md +887 -0
- package/docs/windows.md +17 -0
- package/examples/README.md +25 -0
- package/examples/extensions/README.md +202 -0
- package/examples/extensions/antigravity-image-gen.ts +413 -0
- package/examples/extensions/auto-commit-on-exit.ts +49 -0
- package/examples/extensions/bash-spawn-hook.ts +30 -0
- package/examples/extensions/bookmark.ts +50 -0
- package/examples/extensions/claude-rules.ts +86 -0
- package/examples/extensions/commands.ts +72 -0
- package/examples/extensions/confirm-destructive.ts +59 -0
- package/examples/extensions/custom-compaction.ts +114 -0
- package/examples/extensions/custom-footer.ts +64 -0
- package/examples/extensions/custom-header.ts +73 -0
- package/examples/extensions/custom-provider-anthropic/index.ts +604 -0
- package/examples/extensions/custom-provider-anthropic/package-lock.json +24 -0
- package/examples/extensions/custom-provider-anthropic/package.json +19 -0
- package/examples/extensions/custom-provider-gitlab-duo/index.ts +349 -0
- package/examples/extensions/custom-provider-gitlab-duo/package.json +16 -0
- package/examples/extensions/custom-provider-gitlab-duo/test.ts +82 -0
- package/examples/extensions/custom-provider-qwen-cli/index.ts +345 -0
- package/examples/extensions/custom-provider-qwen-cli/package.json +16 -0
- package/examples/extensions/dirty-repo-guard.ts +56 -0
- package/examples/extensions/doom-overlay/README.md +46 -0
- package/examples/extensions/doom-overlay/doom/build/doom.js +21 -0
- package/examples/extensions/doom-overlay/doom/build/doom.wasm +0 -0
- package/examples/extensions/doom-overlay/doom/build.sh +152 -0
- package/examples/extensions/doom-overlay/doom/doomgeneric_pi.c +72 -0
- package/examples/extensions/doom-overlay/doom-component.ts +132 -0
- package/examples/extensions/doom-overlay/doom-engine.ts +173 -0
- package/examples/extensions/doom-overlay/doom-keys.ts +104 -0
- package/examples/extensions/doom-overlay/index.ts +74 -0
- package/examples/extensions/doom-overlay/wad-finder.ts +51 -0
- package/examples/extensions/dynamic-resources/SKILL.md +8 -0
- package/examples/extensions/dynamic-resources/dynamic.json +79 -0
- package/examples/extensions/dynamic-resources/dynamic.md +5 -0
- package/examples/extensions/dynamic-resources/index.ts +15 -0
- package/examples/extensions/event-bus.ts +43 -0
- package/examples/extensions/file-trigger.ts +41 -0
- package/examples/extensions/git-checkpoint.ts +53 -0
- package/examples/extensions/handoff.ts +150 -0
- package/examples/extensions/hello.ts +25 -0
- package/examples/extensions/inline-bash.ts +94 -0
- package/examples/extensions/input-transform.ts +43 -0
- package/examples/extensions/interactive-shell.ts +196 -0
- package/examples/extensions/mac-system-theme.ts +47 -0
- package/examples/extensions/message-renderer.ts +59 -0
- package/examples/extensions/minimal-mode.ts +426 -0
- package/examples/extensions/modal-editor.ts +85 -0
- package/examples/extensions/model-status.ts +31 -0
- package/examples/extensions/notify.ts +55 -0
- package/examples/extensions/overlay-qa-tests.ts +881 -0
- package/examples/extensions/overlay-test.ts +150 -0
- package/examples/extensions/permission-gate.ts +34 -0
- package/examples/extensions/pirate.ts +47 -0
- package/examples/extensions/plan-mode/README.md +65 -0
- package/examples/extensions/plan-mode/index.ts +340 -0
- package/examples/extensions/plan-mode/utils.ts +168 -0
- package/examples/extensions/preset.ts +398 -0
- package/examples/extensions/protected-paths.ts +30 -0
- package/examples/extensions/qna.ts +119 -0
- package/examples/extensions/question.ts +264 -0
- package/examples/extensions/questionnaire.ts +427 -0
- package/examples/extensions/rainbow-editor.ts +88 -0
- package/examples/extensions/rpc-demo.ts +124 -0
- package/examples/extensions/sandbox/index.ts +318 -0
- package/examples/extensions/sandbox/package-lock.json +92 -0
- package/examples/extensions/sandbox/package.json +19 -0
- package/examples/extensions/send-user-message.ts +97 -0
- package/examples/extensions/session-name.ts +27 -0
- package/examples/extensions/shutdown-command.ts +63 -0
- package/examples/extensions/snake.ts +343 -0
- package/examples/extensions/space-invaders.ts +560 -0
- package/examples/extensions/ssh.ts +220 -0
- package/examples/extensions/status-line.ts +40 -0
- package/examples/extensions/subagent/README.md +172 -0
- package/examples/extensions/subagent/agents/planner.md +37 -0
- package/examples/extensions/subagent/agents/reviewer.md +35 -0
- package/examples/extensions/subagent/agents/scout.md +50 -0
- package/examples/extensions/subagent/agents/worker.md +24 -0
- package/examples/extensions/subagent/agents.ts +127 -0
- package/examples/extensions/subagent/index.ts +963 -0
- package/examples/extensions/subagent/prompts/implement-and-review.md +10 -0
- package/examples/extensions/subagent/prompts/implement.md +10 -0
- package/examples/extensions/subagent/prompts/scout-and-plan.md +9 -0
- package/examples/extensions/summarize.ts +195 -0
- package/examples/extensions/system-prompt-header.ts +17 -0
- package/examples/extensions/timed-confirm.ts +70 -0
- package/examples/extensions/titlebar-spinner.ts +58 -0
- package/examples/extensions/todo.ts +299 -0
- package/examples/extensions/tool-override.ts +143 -0
- package/examples/extensions/tools.ts +146 -0
- package/examples/extensions/trigger-compact.ts +40 -0
- package/examples/extensions/truncated-tool.ts +192 -0
- package/examples/extensions/widget-placement.ts +17 -0
- package/examples/extensions/with-deps/index.ts +36 -0
- package/examples/extensions/with-deps/package-lock.json +31 -0
- package/examples/extensions/with-deps/package.json +22 -0
- package/examples/rpc-extension-ui.ts +632 -0
- package/examples/sdk/01-minimal.ts +22 -0
- package/examples/sdk/02-custom-model.ts +49 -0
- package/examples/sdk/03-custom-prompt.ts +55 -0
- package/examples/sdk/04-skills.ts +46 -0
- package/examples/sdk/05-tools.ts +56 -0
- package/examples/sdk/06-extensions.ts +88 -0
- package/examples/sdk/07-context-files.ts +40 -0
- package/examples/sdk/08-prompt-templates.ts +47 -0
- package/examples/sdk/09-api-keys-and-oauth.ts +48 -0
- package/examples/sdk/10-settings.ts +38 -0
- package/examples/sdk/11-sessions.ts +48 -0
- package/examples/sdk/12-full-control.ts +82 -0
- package/examples/sdk/README.md +144 -0
- package/package.json +97 -0
|
@@ -0,0 +1,632 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* RPC Extension UI Example (TUI)
|
|
3
|
+
*
|
|
4
|
+
* A lightweight TUI chat client that spawns the agent in RPC mode.
|
|
5
|
+
* Demonstrates how to build a custom UI on top of the RPC protocol,
|
|
6
|
+
* including handling extension UI requests (select, confirm, input, editor).
|
|
7
|
+
*
|
|
8
|
+
* Usage: npx tsx examples/rpc-extension-ui.ts
|
|
9
|
+
*
|
|
10
|
+
* Slash commands:
|
|
11
|
+
* /select - demo select dialog
|
|
12
|
+
* /confirm - demo confirm dialog
|
|
13
|
+
* /input - demo input dialog
|
|
14
|
+
* /editor - demo editor dialog
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
import { spawn } from "node:child_process";
|
|
18
|
+
import { dirname, join } from "node:path";
|
|
19
|
+
import * as readline from "node:readline";
|
|
20
|
+
import { fileURLToPath } from "node:url";
|
|
21
|
+
import { type Component, Container, Input, matchesKey, ProcessTerminal, SelectList, TUI } from "@mariozechner/pi-tui";
|
|
22
|
+
|
|
23
|
+
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
24
|
+
|
|
25
|
+
// ============================================================================
|
|
26
|
+
// ANSI helpers
|
|
27
|
+
// ============================================================================
|
|
28
|
+
|
|
29
|
+
const GREEN = "\x1b[32m";
|
|
30
|
+
const YELLOW = "\x1b[33m";
|
|
31
|
+
const BLUE = "\x1b[34m";
|
|
32
|
+
const MAGENTA = "\x1b[35m";
|
|
33
|
+
const RED = "\x1b[31m";
|
|
34
|
+
const DIM = "\x1b[2m";
|
|
35
|
+
const BOLD = "\x1b[1m";
|
|
36
|
+
const RESET = "\x1b[0m";
|
|
37
|
+
|
|
38
|
+
// ============================================================================
|
|
39
|
+
// Extension UI request type (subset of rpc-types.ts)
|
|
40
|
+
// ============================================================================
|
|
41
|
+
|
|
42
|
+
interface ExtensionUIRequest {
|
|
43
|
+
type: "extension_ui_request";
|
|
44
|
+
id: string;
|
|
45
|
+
method: string;
|
|
46
|
+
title?: string;
|
|
47
|
+
options?: string[];
|
|
48
|
+
message?: string;
|
|
49
|
+
placeholder?: string;
|
|
50
|
+
prefill?: string;
|
|
51
|
+
notifyType?: "info" | "warning" | "error";
|
|
52
|
+
statusKey?: string;
|
|
53
|
+
statusText?: string;
|
|
54
|
+
widgetKey?: string;
|
|
55
|
+
widgetLines?: string[];
|
|
56
|
+
text?: string;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
// ============================================================================
|
|
60
|
+
// Output log: accumulates styled lines, renders the tail that fits
|
|
61
|
+
// ============================================================================
|
|
62
|
+
|
|
63
|
+
class OutputLog implements Component {
|
|
64
|
+
private lines: string[] = [];
|
|
65
|
+
private maxLines = 1000;
|
|
66
|
+
private visibleLines = 0;
|
|
67
|
+
|
|
68
|
+
setVisibleLines(n: number): void {
|
|
69
|
+
this.visibleLines = n;
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
append(line: string): void {
|
|
73
|
+
this.lines.push(line);
|
|
74
|
+
if (this.lines.length > this.maxLines) {
|
|
75
|
+
this.lines = this.lines.slice(-this.maxLines);
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
appendRaw(text: string): void {
|
|
80
|
+
if (this.lines.length === 0) {
|
|
81
|
+
this.lines.push(text);
|
|
82
|
+
} else {
|
|
83
|
+
this.lines[this.lines.length - 1] += text;
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
invalidate(): void {}
|
|
88
|
+
|
|
89
|
+
render(width: number): string[] {
|
|
90
|
+
if (this.lines.length === 0) return [""];
|
|
91
|
+
const n = this.visibleLines > 0 ? this.visibleLines : this.lines.length;
|
|
92
|
+
return this.lines.slice(-n).map((l) => l.slice(0, width));
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
// ============================================================================
|
|
97
|
+
// Loading indicator: "Agent: Working." -> ".." -> "..." -> "."
|
|
98
|
+
// ============================================================================
|
|
99
|
+
|
|
100
|
+
class LoadingIndicator implements Component {
|
|
101
|
+
private dots = 1;
|
|
102
|
+
private intervalId: NodeJS.Timeout | null = null;
|
|
103
|
+
private tui: TUI | null = null;
|
|
104
|
+
|
|
105
|
+
start(tui: TUI): void {
|
|
106
|
+
this.tui = tui;
|
|
107
|
+
this.dots = 1;
|
|
108
|
+
this.intervalId = setInterval(() => {
|
|
109
|
+
this.dots = (this.dots % 3) + 1;
|
|
110
|
+
this.tui?.requestRender();
|
|
111
|
+
}, 400);
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
stop(): void {
|
|
115
|
+
if (this.intervalId) {
|
|
116
|
+
clearInterval(this.intervalId);
|
|
117
|
+
this.intervalId = null;
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
invalidate(): void {}
|
|
122
|
+
|
|
123
|
+
render(_width: number): string[] {
|
|
124
|
+
return [`${BLUE}${BOLD}Agent:${RESET} ${DIM}Working${".".repeat(this.dots)}${RESET}`];
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
// ============================================================================
|
|
129
|
+
// Prompt input: label + single-line input
|
|
130
|
+
// ============================================================================
|
|
131
|
+
|
|
132
|
+
class PromptInput implements Component {
|
|
133
|
+
readonly input: Input;
|
|
134
|
+
onCtrlD?: () => void;
|
|
135
|
+
|
|
136
|
+
constructor() {
|
|
137
|
+
this.input = new Input();
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
handleInput(data: string): void {
|
|
141
|
+
if (matchesKey(data, "ctrl+d")) {
|
|
142
|
+
this.onCtrlD?.();
|
|
143
|
+
return;
|
|
144
|
+
}
|
|
145
|
+
this.input.handleInput(data);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
invalidate(): void {
|
|
149
|
+
this.input.invalidate();
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
render(width: number): string[] {
|
|
153
|
+
return [`${GREEN}${BOLD}You:${RESET}`, ...this.input.render(width)];
|
|
154
|
+
}
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// ============================================================================
|
|
158
|
+
// Dialog components: replace the prompt input during interactive requests
|
|
159
|
+
// ============================================================================
|
|
160
|
+
|
|
161
|
+
class SelectDialog implements Component {
|
|
162
|
+
private list: SelectList;
|
|
163
|
+
private title: string;
|
|
164
|
+
onSelect?: (value: string) => void;
|
|
165
|
+
onCancel?: () => void;
|
|
166
|
+
|
|
167
|
+
constructor(title: string, options: string[]) {
|
|
168
|
+
this.title = title;
|
|
169
|
+
const items = options.map((o) => ({ value: o, label: o }));
|
|
170
|
+
this.list = new SelectList(items, Math.min(items.length, 8), {
|
|
171
|
+
selectedPrefix: (t) => `${MAGENTA}${t}${RESET}`,
|
|
172
|
+
selectedText: (t) => `${MAGENTA}${t}${RESET}`,
|
|
173
|
+
description: (t) => `${DIM}${t}${RESET}`,
|
|
174
|
+
scrollInfo: (t) => `${DIM}${t}${RESET}`,
|
|
175
|
+
noMatch: (t) => `${YELLOW}${t}${RESET}`,
|
|
176
|
+
});
|
|
177
|
+
this.list.onSelect = (item) => this.onSelect?.(item.value);
|
|
178
|
+
this.list.onCancel = () => this.onCancel?.();
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
handleInput(data: string): void {
|
|
182
|
+
this.list.handleInput(data);
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
invalidate(): void {
|
|
186
|
+
this.list.invalidate();
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
render(width: number): string[] {
|
|
190
|
+
return [
|
|
191
|
+
`${MAGENTA}${BOLD}${this.title}${RESET}`,
|
|
192
|
+
...this.list.render(width),
|
|
193
|
+
`${DIM}Up/Down, Enter to select, Esc to cancel${RESET}`,
|
|
194
|
+
];
|
|
195
|
+
}
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
class InputDialog implements Component {
|
|
199
|
+
private dialogInput: Input;
|
|
200
|
+
private title: string;
|
|
201
|
+
onCtrlD?: () => void;
|
|
202
|
+
|
|
203
|
+
constructor(title: string, prefill?: string) {
|
|
204
|
+
this.title = title;
|
|
205
|
+
this.dialogInput = new Input();
|
|
206
|
+
if (prefill) this.dialogInput.setValue(prefill);
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
set onSubmit(fn: ((value: string) => void) | undefined) {
|
|
210
|
+
this.dialogInput.onSubmit = fn;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
set onEscape(fn: (() => void) | undefined) {
|
|
214
|
+
this.dialogInput.onEscape = fn;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
get inputComponent(): Input {
|
|
218
|
+
return this.dialogInput;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
handleInput(data: string): void {
|
|
222
|
+
if (matchesKey(data, "ctrl+d")) {
|
|
223
|
+
this.onCtrlD?.();
|
|
224
|
+
return;
|
|
225
|
+
}
|
|
226
|
+
this.dialogInput.handleInput(data);
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
invalidate(): void {
|
|
230
|
+
this.dialogInput.invalidate();
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
render(width: number): string[] {
|
|
234
|
+
return [
|
|
235
|
+
`${MAGENTA}${BOLD}${this.title}${RESET}`,
|
|
236
|
+
...this.dialogInput.render(width),
|
|
237
|
+
`${DIM}Enter to submit, Esc to cancel${RESET}`,
|
|
238
|
+
];
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
// ============================================================================
|
|
243
|
+
// Main
|
|
244
|
+
// ============================================================================
|
|
245
|
+
|
|
246
|
+
async function main() {
|
|
247
|
+
const extensionPath = join(__dirname, "extensions/rpc-demo.ts");
|
|
248
|
+
const cliPath = join(__dirname, "../dist/cli.js");
|
|
249
|
+
|
|
250
|
+
const agent = spawn(
|
|
251
|
+
"node",
|
|
252
|
+
[cliPath, "--mode", "rpc", "--no-session", "--no-extension", "--extension", extensionPath],
|
|
253
|
+
{ stdio: ["pipe", "pipe", "pipe"] },
|
|
254
|
+
);
|
|
255
|
+
|
|
256
|
+
let stderr = "";
|
|
257
|
+
agent.stderr?.on("data", (data: Buffer) => {
|
|
258
|
+
stderr += data.toString();
|
|
259
|
+
});
|
|
260
|
+
|
|
261
|
+
await new Promise((resolve) => setTimeout(resolve, 500));
|
|
262
|
+
if (agent.exitCode !== null) {
|
|
263
|
+
console.error(`Agent exited immediately. Stderr:\n${stderr}`);
|
|
264
|
+
process.exit(1);
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
// -- TUI setup --
|
|
268
|
+
|
|
269
|
+
const terminal = new ProcessTerminal();
|
|
270
|
+
const tui = new TUI(terminal);
|
|
271
|
+
|
|
272
|
+
const outputLog = new OutputLog();
|
|
273
|
+
const loadingIndicator = new LoadingIndicator();
|
|
274
|
+
const promptInput = new PromptInput();
|
|
275
|
+
|
|
276
|
+
const root = new Container();
|
|
277
|
+
root.addChild(outputLog);
|
|
278
|
+
root.addChild(promptInput);
|
|
279
|
+
|
|
280
|
+
tui.addChild(root);
|
|
281
|
+
tui.setFocus(promptInput.input);
|
|
282
|
+
|
|
283
|
+
// -- Agent communication --
|
|
284
|
+
|
|
285
|
+
function send(obj: Record<string, unknown>): void {
|
|
286
|
+
agent.stdin!.write(`${JSON.stringify(obj)}\n`);
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
let isStreaming = false;
|
|
290
|
+
let hasTextOutput = false;
|
|
291
|
+
|
|
292
|
+
function exit(): void {
|
|
293
|
+
tui.stop();
|
|
294
|
+
agent.kill("SIGTERM");
|
|
295
|
+
process.exit(0);
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
// -- Bottom area management --
|
|
299
|
+
// The bottom of the screen is either the prompt input or a dialog.
|
|
300
|
+
// These helpers swap between them.
|
|
301
|
+
|
|
302
|
+
let activeDialog: Component | null = null;
|
|
303
|
+
|
|
304
|
+
function setBottomComponent(component: Component): void {
|
|
305
|
+
root.clear();
|
|
306
|
+
root.addChild(outputLog);
|
|
307
|
+
if (isStreaming) root.addChild(loadingIndicator);
|
|
308
|
+
root.addChild(component);
|
|
309
|
+
tui.setFocus(component);
|
|
310
|
+
tui.requestRender();
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
function showPrompt(): void {
|
|
314
|
+
activeDialog = null;
|
|
315
|
+
setBottomComponent(promptInput);
|
|
316
|
+
tui.setFocus(promptInput.input);
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
function showDialog(dialog: Component): void {
|
|
320
|
+
activeDialog = dialog;
|
|
321
|
+
setBottomComponent(dialog);
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
function showLoading(): void {
|
|
325
|
+
if (!isStreaming) {
|
|
326
|
+
isStreaming = true;
|
|
327
|
+
hasTextOutput = false;
|
|
328
|
+
root.clear();
|
|
329
|
+
root.addChild(outputLog);
|
|
330
|
+
root.addChild(loadingIndicator);
|
|
331
|
+
root.addChild(activeDialog ?? promptInput);
|
|
332
|
+
if (!activeDialog) tui.setFocus(promptInput.input);
|
|
333
|
+
loadingIndicator.start(tui);
|
|
334
|
+
tui.requestRender();
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
function hideLoading(): void {
|
|
339
|
+
loadingIndicator.stop();
|
|
340
|
+
root.clear();
|
|
341
|
+
root.addChild(outputLog);
|
|
342
|
+
root.addChild(activeDialog ?? promptInput);
|
|
343
|
+
if (!activeDialog) tui.setFocus(promptInput.input);
|
|
344
|
+
tui.requestRender();
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
// -- Extension UI dialog handling --
|
|
348
|
+
|
|
349
|
+
function showSelectDialog(title: string, options: string[], onDone: (value: string | undefined) => void): void {
|
|
350
|
+
const dialog = new SelectDialog(title, options);
|
|
351
|
+
dialog.onSelect = (value) => {
|
|
352
|
+
showPrompt();
|
|
353
|
+
onDone(value);
|
|
354
|
+
};
|
|
355
|
+
dialog.onCancel = () => {
|
|
356
|
+
showPrompt();
|
|
357
|
+
onDone(undefined);
|
|
358
|
+
};
|
|
359
|
+
showDialog(dialog);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
function showInputDialog(title: string, prefill?: string, onDone?: (value: string | undefined) => void): void {
|
|
363
|
+
const dialog = new InputDialog(title, prefill);
|
|
364
|
+
dialog.onSubmit = (value) => {
|
|
365
|
+
showPrompt();
|
|
366
|
+
onDone?.(value.trim() || undefined);
|
|
367
|
+
};
|
|
368
|
+
dialog.onEscape = () => {
|
|
369
|
+
showPrompt();
|
|
370
|
+
onDone?.(undefined);
|
|
371
|
+
};
|
|
372
|
+
dialog.onCtrlD = exit;
|
|
373
|
+
showDialog(dialog);
|
|
374
|
+
tui.setFocus(dialog.inputComponent);
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
function handleExtensionUI(req: ExtensionUIRequest): void {
|
|
378
|
+
const { id, method } = req;
|
|
379
|
+
|
|
380
|
+
switch (method) {
|
|
381
|
+
// Dialog methods: replace prompt with interactive component
|
|
382
|
+
case "select": {
|
|
383
|
+
showSelectDialog(req.title ?? "Select", req.options ?? [], (value) => {
|
|
384
|
+
if (value !== undefined) {
|
|
385
|
+
send({ type: "extension_ui_response", id, value });
|
|
386
|
+
} else {
|
|
387
|
+
send({ type: "extension_ui_response", id, cancelled: true });
|
|
388
|
+
}
|
|
389
|
+
});
|
|
390
|
+
break;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
case "confirm": {
|
|
394
|
+
const title = req.message ? `${req.title}: ${req.message}` : (req.title ?? "Confirm");
|
|
395
|
+
showSelectDialog(title, ["Yes", "No"], (value) => {
|
|
396
|
+
send({ type: "extension_ui_response", id, confirmed: value === "Yes" });
|
|
397
|
+
});
|
|
398
|
+
break;
|
|
399
|
+
}
|
|
400
|
+
|
|
401
|
+
case "input": {
|
|
402
|
+
const title = req.placeholder ? `${req.title} (${req.placeholder})` : (req.title ?? "Input");
|
|
403
|
+
showInputDialog(title, undefined, (value) => {
|
|
404
|
+
if (value !== undefined) {
|
|
405
|
+
send({ type: "extension_ui_response", id, value });
|
|
406
|
+
} else {
|
|
407
|
+
send({ type: "extension_ui_response", id, cancelled: true });
|
|
408
|
+
}
|
|
409
|
+
});
|
|
410
|
+
break;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
case "editor": {
|
|
414
|
+
const prefill = req.prefill?.replace(/\n/g, " ");
|
|
415
|
+
showInputDialog(req.title ?? "Editor", prefill, (value) => {
|
|
416
|
+
if (value !== undefined) {
|
|
417
|
+
send({ type: "extension_ui_response", id, value });
|
|
418
|
+
} else {
|
|
419
|
+
send({ type: "extension_ui_response", id, cancelled: true });
|
|
420
|
+
}
|
|
421
|
+
});
|
|
422
|
+
break;
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
// Fire-and-forget methods: display as notification
|
|
426
|
+
case "notify": {
|
|
427
|
+
const notifyType = (req.notifyType as string) ?? "info";
|
|
428
|
+
const color = notifyType === "error" ? RED : notifyType === "warning" ? YELLOW : MAGENTA;
|
|
429
|
+
outputLog.append(`${color}${BOLD}Notification:${RESET} ${req.message}`);
|
|
430
|
+
tui.requestRender();
|
|
431
|
+
break;
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
case "setStatus":
|
|
435
|
+
outputLog.append(
|
|
436
|
+
`${MAGENTA}${BOLD}Notification:${RESET} ${DIM}[status: ${req.statusKey}]${RESET} ${req.statusText ?? "(cleared)"}`,
|
|
437
|
+
);
|
|
438
|
+
tui.requestRender();
|
|
439
|
+
break;
|
|
440
|
+
|
|
441
|
+
case "setWidget": {
|
|
442
|
+
const lines = req.widgetLines;
|
|
443
|
+
if (lines && lines.length > 0) {
|
|
444
|
+
outputLog.append(`${MAGENTA}${BOLD}Notification:${RESET} ${DIM}[widget: ${req.widgetKey}]${RESET}`);
|
|
445
|
+
for (const wl of lines) {
|
|
446
|
+
outputLog.append(` ${DIM}${wl}${RESET}`);
|
|
447
|
+
}
|
|
448
|
+
tui.requestRender();
|
|
449
|
+
}
|
|
450
|
+
break;
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
case "set_editor_text":
|
|
454
|
+
promptInput.input.setValue((req.text as string) ?? "");
|
|
455
|
+
tui.requestRender();
|
|
456
|
+
break;
|
|
457
|
+
}
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
// -- Slash commands (local, not sent to agent) --
|
|
461
|
+
|
|
462
|
+
function handleSlashCommand(cmd: string): boolean {
|
|
463
|
+
switch (cmd) {
|
|
464
|
+
case "/select":
|
|
465
|
+
showSelectDialog("Pick a color", ["Red", "Green", "Blue", "Yellow"], (value) => {
|
|
466
|
+
if (value) {
|
|
467
|
+
outputLog.append(`${MAGENTA}${BOLD}Notification:${RESET} You picked: ${value}`);
|
|
468
|
+
} else {
|
|
469
|
+
outputLog.append(`${MAGENTA}${BOLD}Notification:${RESET} Selection cancelled`);
|
|
470
|
+
}
|
|
471
|
+
tui.requestRender();
|
|
472
|
+
});
|
|
473
|
+
return true;
|
|
474
|
+
|
|
475
|
+
case "/confirm":
|
|
476
|
+
showSelectDialog("Are you sure?", ["Yes", "No"], (value) => {
|
|
477
|
+
const confirmed = value === "Yes";
|
|
478
|
+
outputLog.append(`${MAGENTA}${BOLD}Notification:${RESET} Confirmed: ${confirmed}`);
|
|
479
|
+
tui.requestRender();
|
|
480
|
+
});
|
|
481
|
+
return true;
|
|
482
|
+
|
|
483
|
+
case "/input":
|
|
484
|
+
showInputDialog("Enter your name", undefined, (value) => {
|
|
485
|
+
if (value) {
|
|
486
|
+
outputLog.append(`${MAGENTA}${BOLD}Notification:${RESET} You entered: ${value}`);
|
|
487
|
+
} else {
|
|
488
|
+
outputLog.append(`${MAGENTA}${BOLD}Notification:${RESET} Input cancelled`);
|
|
489
|
+
}
|
|
490
|
+
tui.requestRender();
|
|
491
|
+
});
|
|
492
|
+
return true;
|
|
493
|
+
|
|
494
|
+
case "/editor":
|
|
495
|
+
showInputDialog("Edit text", "Hello, world!", (value) => {
|
|
496
|
+
if (value) {
|
|
497
|
+
outputLog.append(`${MAGENTA}${BOLD}Notification:${RESET} Submitted: ${value}`);
|
|
498
|
+
} else {
|
|
499
|
+
outputLog.append(`${MAGENTA}${BOLD}Notification:${RESET} Editor cancelled`);
|
|
500
|
+
}
|
|
501
|
+
tui.requestRender();
|
|
502
|
+
});
|
|
503
|
+
return true;
|
|
504
|
+
|
|
505
|
+
default:
|
|
506
|
+
return false;
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
// -- Process agent stdout --
|
|
511
|
+
|
|
512
|
+
const stdoutRl = readline.createInterface({ input: agent.stdout!, terminal: false });
|
|
513
|
+
|
|
514
|
+
stdoutRl.on("line", (line) => {
|
|
515
|
+
let data: Record<string, unknown>;
|
|
516
|
+
try {
|
|
517
|
+
data = JSON.parse(line);
|
|
518
|
+
} catch {
|
|
519
|
+
return;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
if (data.type === "response" && !data.success) {
|
|
523
|
+
outputLog.append(`${RED}[error]${RESET} ${data.command}: ${data.error}`);
|
|
524
|
+
tui.requestRender();
|
|
525
|
+
return;
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
if (data.type === "agent_start") {
|
|
529
|
+
showLoading();
|
|
530
|
+
return;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
if (data.type === "extension_ui_request") {
|
|
534
|
+
handleExtensionUI(data as unknown as ExtensionUIRequest);
|
|
535
|
+
return;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
if (data.type === "message_update") {
|
|
539
|
+
const evt = data.assistantMessageEvent as Record<string, unknown> | undefined;
|
|
540
|
+
if (evt?.type === "text_delta") {
|
|
541
|
+
if (!hasTextOutput) {
|
|
542
|
+
hasTextOutput = true;
|
|
543
|
+
outputLog.append("");
|
|
544
|
+
outputLog.append(`${BLUE}${BOLD}Agent:${RESET}`);
|
|
545
|
+
}
|
|
546
|
+
const delta = evt.delta as string;
|
|
547
|
+
const parts = delta.split("\n");
|
|
548
|
+
for (let i = 0; i < parts.length; i++) {
|
|
549
|
+
if (i > 0) outputLog.append("");
|
|
550
|
+
if (parts[i]) outputLog.appendRaw(parts[i]);
|
|
551
|
+
}
|
|
552
|
+
tui.requestRender();
|
|
553
|
+
}
|
|
554
|
+
return;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
if (data.type === "tool_execution_start") {
|
|
558
|
+
outputLog.append(`${DIM}[tool: ${data.toolName}]${RESET}`);
|
|
559
|
+
tui.requestRender();
|
|
560
|
+
return;
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
if (data.type === "tool_execution_end") {
|
|
564
|
+
const result = JSON.stringify(data.result).slice(0, 120);
|
|
565
|
+
outputLog.append(`${DIM}[result: ${result}...]${RESET}`);
|
|
566
|
+
tui.requestRender();
|
|
567
|
+
return;
|
|
568
|
+
}
|
|
569
|
+
|
|
570
|
+
if (data.type === "agent_end") {
|
|
571
|
+
isStreaming = false;
|
|
572
|
+
hideLoading();
|
|
573
|
+
outputLog.append("");
|
|
574
|
+
tui.requestRender();
|
|
575
|
+
return;
|
|
576
|
+
}
|
|
577
|
+
});
|
|
578
|
+
|
|
579
|
+
// -- User input --
|
|
580
|
+
|
|
581
|
+
promptInput.input.onSubmit = (value) => {
|
|
582
|
+
const trimmed = value.trim();
|
|
583
|
+
if (!trimmed) return;
|
|
584
|
+
|
|
585
|
+
promptInput.input.setValue("");
|
|
586
|
+
|
|
587
|
+
if (handleSlashCommand(trimmed)) {
|
|
588
|
+
outputLog.append(`${GREEN}${BOLD}You:${RESET} ${trimmed}`);
|
|
589
|
+
tui.requestRender();
|
|
590
|
+
return;
|
|
591
|
+
}
|
|
592
|
+
|
|
593
|
+
outputLog.append(`${GREEN}${BOLD}You:${RESET} ${trimmed}`);
|
|
594
|
+
send({ type: "prompt", message: trimmed });
|
|
595
|
+
tui.requestRender();
|
|
596
|
+
};
|
|
597
|
+
|
|
598
|
+
promptInput.onCtrlD = exit;
|
|
599
|
+
|
|
600
|
+
promptInput.input.onEscape = () => {
|
|
601
|
+
if (isStreaming) {
|
|
602
|
+
send({ type: "abort" });
|
|
603
|
+
outputLog.append(`${YELLOW}[aborted]${RESET}`);
|
|
604
|
+
tui.requestRender();
|
|
605
|
+
} else {
|
|
606
|
+
exit();
|
|
607
|
+
}
|
|
608
|
+
};
|
|
609
|
+
|
|
610
|
+
// -- Agent exit --
|
|
611
|
+
|
|
612
|
+
agent.on("exit", (code) => {
|
|
613
|
+
tui.stop();
|
|
614
|
+
if (stderr) console.error(stderr);
|
|
615
|
+
console.log(`Agent exited with code ${code}`);
|
|
616
|
+
process.exit(code ?? 0);
|
|
617
|
+
});
|
|
618
|
+
|
|
619
|
+
// -- Start --
|
|
620
|
+
|
|
621
|
+
outputLog.append(`${BOLD}RPC Chat${RESET}`);
|
|
622
|
+
outputLog.append(`${DIM}Type a message and press Enter. Esc to abort or exit. Ctrl+D to quit.${RESET}`);
|
|
623
|
+
outputLog.append(`${DIM}Slash commands: /select /confirm /input /editor${RESET}`);
|
|
624
|
+
outputLog.append("");
|
|
625
|
+
|
|
626
|
+
tui.start();
|
|
627
|
+
}
|
|
628
|
+
|
|
629
|
+
main().catch((err) => {
|
|
630
|
+
console.error(err);
|
|
631
|
+
process.exit(1);
|
|
632
|
+
});
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Minimal SDK Usage
|
|
3
|
+
*
|
|
4
|
+
* Uses all defaults: discovers skills, extensions, tools, context files
|
|
5
|
+
* from cwd and ~/.pi/agent. Model chosen from settings or first available.
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
import { createAgentSession } from "@mariozechner/pi-coding-agent";
|
|
9
|
+
|
|
10
|
+
const { session } = await createAgentSession();
|
|
11
|
+
|
|
12
|
+
session.subscribe((event) => {
|
|
13
|
+
if (event.type === "message_update" && event.assistantMessageEvent.type === "text_delta") {
|
|
14
|
+
process.stdout.write(event.assistantMessageEvent.delta);
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
await session.prompt("What files are in the current directory?");
|
|
19
|
+
session.state.messages.forEach((msg) => {
|
|
20
|
+
console.log(msg);
|
|
21
|
+
});
|
|
22
|
+
console.log();
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Custom Model Selection
|
|
3
|
+
*
|
|
4
|
+
* Shows how to select a specific model and thinking level.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
import { getModel } from "@mariozechner/pi-ai";
|
|
8
|
+
import { AuthStorage, createAgentSession, ModelRegistry } from "@mariozechner/pi-coding-agent";
|
|
9
|
+
|
|
10
|
+
// Set up auth storage and model registry
|
|
11
|
+
const authStorage = new AuthStorage();
|
|
12
|
+
const modelRegistry = new ModelRegistry(authStorage);
|
|
13
|
+
|
|
14
|
+
// Option 1: Find a specific built-in model by provider/id
|
|
15
|
+
const opus = getModel("anthropic", "claude-opus-4-5");
|
|
16
|
+
if (opus) {
|
|
17
|
+
console.log(`Found model: ${opus.provider}/${opus.id}`);
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
// Option 2: Find model via registry (includes custom models from models.json)
|
|
21
|
+
const customModel = modelRegistry.find("my-provider", "my-model");
|
|
22
|
+
if (customModel) {
|
|
23
|
+
console.log(`Found custom model: ${customModel.provider}/${customModel.id}`);
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
// Option 3: Pick from available models (have valid API keys)
|
|
27
|
+
const available = await modelRegistry.getAvailable();
|
|
28
|
+
console.log(
|
|
29
|
+
"Available models:",
|
|
30
|
+
available.map((m) => `${m.provider}/${m.id}`),
|
|
31
|
+
);
|
|
32
|
+
|
|
33
|
+
if (available.length > 0) {
|
|
34
|
+
const { session } = await createAgentSession({
|
|
35
|
+
model: available[0],
|
|
36
|
+
thinkingLevel: "medium", // off, low, medium, high
|
|
37
|
+
authStorage,
|
|
38
|
+
modelRegistry,
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
session.subscribe((event) => {
|
|
42
|
+
if (event.type === "message_update" && event.assistantMessageEvent.type === "text_delta") {
|
|
43
|
+
process.stdout.write(event.assistantMessageEvent.delta);
|
|
44
|
+
}
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
await session.prompt("Say hello in one sentence.");
|
|
48
|
+
console.log();
|
|
49
|
+
}
|