@vandeepunk/pi-coding-agent 0.0.2 → 0.0.3
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 +9 -0
- package/README.md +6 -6
- package/dist/config.d.ts +1 -1
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +2 -2
- package/dist/config.js.map +1 -1
- package/dist/core/extensions/loader.d.ts.map +1 -1
- package/dist/core/extensions/loader.js.map +1 -1
- package/dist/core/package-manager.d.ts +1 -1
- package/dist/core/package-manager.d.ts.map +1 -1
- package/dist/core/package-manager.js +12 -12
- package/dist/core/package-manager.js.map +1 -1
- package/dist/core/prompt-templates.d.ts +3 -3
- package/dist/core/prompt-templates.d.ts.map +1 -1
- package/dist/core/prompt-templates.js +15 -15
- package/dist/core/prompt-templates.js.map +1 -1
- package/dist/core/resource-loader.d.ts.map +1 -1
- package/dist/core/resource-loader.js +6 -6
- package/dist/core/resource-loader.js.map +1 -1
- package/dist/core/settings-manager.d.ts +2 -2
- package/dist/core/settings-manager.d.ts.map +1 -1
- package/dist/core/settings-manager.js +4 -4
- package/dist/core/settings-manager.js.map +1 -1
- package/dist/core/slash-commands.d.ts.map +1 -1
- package/dist/core/slash-commands.js +1 -1
- package/dist/core/slash-commands.js.map +1 -1
- package/dist/migrations.d.ts.map +1 -1
- package/dist/migrations.js +11 -11
- package/dist/migrations.js.map +1 -1
- package/dist/modes/interactive/components/config-selector.d.ts +1 -1
- package/dist/modes/interactive/components/config-selector.d.ts.map +1 -1
- package/dist/modes/interactive/components/config-selector.js +6 -6
- package/dist/modes/interactive/components/config-selector.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +2 -2
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/docs/packages.md +3 -3
- package/docs/prompt-templates.md +6 -6
- package/docs/rpc.md +1 -1
- package/docs/sdk.md +5 -3
- package/docs/settings.md +2 -2
- package/examples/extensions/subagent/README.md +4 -4
- package/examples/sdk/08-prompt-templates.ts +2 -2
- package/package.json +1 -1
- /package/examples/extensions/subagent/{prompts → commands}/implement-and-review.md +0 -0
- /package/examples/extensions/subagent/{prompts → commands}/implement.md +0 -0
- /package/examples/extensions/subagent/{prompts → commands}/scout-and-plan.md +0 -0
|
@@ -3097,7 +3097,7 @@ export class InteractiveMode {
|
|
|
3097
3097
|
return;
|
|
3098
3098
|
}
|
|
3099
3099
|
this.resetExtensionUI();
|
|
3100
|
-
const loader = new BorderedLoader(this.ui, theme, "Reloading extensions, skills,
|
|
3100
|
+
const loader = new BorderedLoader(this.ui, theme, "Reloading extensions, skills, commands, themes...", {
|
|
3101
3101
|
cancellable: false,
|
|
3102
3102
|
});
|
|
3103
3103
|
const previousEditor = this.editor;
|
|
@@ -3143,7 +3143,7 @@ export class InteractiveMode {
|
|
|
3143
3143
|
if (modelsJsonError) {
|
|
3144
3144
|
this.showError(`models.json error: ${modelsJsonError}`);
|
|
3145
3145
|
}
|
|
3146
|
-
this.showStatus("Reloaded extensions, skills,
|
|
3146
|
+
this.showStatus("Reloaded extensions, skills, commands, themes");
|
|
3147
3147
|
}
|
|
3148
3148
|
catch (error) {
|
|
3149
3149
|
dismissLoader(previousEditor);
|