balchemy 0.1.20 → 0.1.22
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/dist/agent-store.d.ts +1 -1
- package/dist/agent-store.d.ts.map +1 -1
- package/dist/agent-store.js +3 -5
- package/dist/agent-store.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +110 -52
- package/dist/index.js.map +1 -1
- package/dist/tui/AgentBridge.d.ts.map +1 -1
- package/dist/tui/AgentBridge.js +11 -33
- package/dist/tui/AgentBridge.js.map +1 -1
- package/dist/tui/App.d.ts.map +1 -1
- package/dist/tui/App.js +21 -7
- package/dist/tui/App.js.map +1 -1
- package/dist/tui/ChatAgent.js +16 -6
- package/dist/tui/ChatAgent.js.map +1 -1
- package/dist/tui/ChatPanel.d.ts +2 -1
- package/dist/tui/ChatPanel.d.ts.map +1 -1
- package/dist/tui/ChatPanel.js +37 -20
- package/dist/tui/ChatPanel.js.map +1 -1
- package/dist/tui/StatusPanel.d.ts +4 -1
- package/dist/tui/StatusPanel.d.ts.map +1 -1
- package/dist/tui/StatusPanel.js +63 -11
- package/dist/tui/StatusPanel.js.map +1 -1
- package/dist/tui/setup-guidance.d.ts +7 -0
- package/dist/tui/setup-guidance.d.ts.map +1 -1
- package/dist/tui/setup-guidance.js +53 -1
- package/dist/tui/setup-guidance.js.map +1 -1
- package/dist/tui/text-layout.d.ts +7 -0
- package/dist/tui/text-layout.d.ts.map +1 -0
- package/dist/tui/text-layout.js +136 -0
- package/dist/tui/text-layout.js.map +1 -0
- package/dist/wizard.js +1 -1
- package/package.json +1 -1
package/dist/wizard.js
CHANGED
|
@@ -576,7 +576,7 @@ export async function runWizard(outDir) {
|
|
|
576
576
|
wallets: {},
|
|
577
577
|
createdAt: new Date().toISOString(),
|
|
578
578
|
});
|
|
579
|
-
printSuccess("Agent cached to ~/.balchemy/
|
|
579
|
+
printSuccess("Agent cached to ~/.balchemy/agents.enc");
|
|
580
580
|
// ── Done ──────────────────────────────────────────────────────────────
|
|
581
581
|
printKeyValueBlock("Launch profile", [
|
|
582
582
|
{ label: "Agent", value: publicId },
|