junecoder 1.0.8 → 1.0.9

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 (2) hide show
  1. package/package.json +1 -1
  2. package/tui.mjs +3 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "junecoder",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "Zero Npm Dependencies Agent Framework",
5
5
  "main": "agent.mjs",
6
6
  "type": "module",
package/tui.mjs CHANGED
@@ -332,14 +332,9 @@ export async function startTUI(agent, opts = {}) {
332
332
  let setupMode = opts.needsSetup;
333
333
  if (setupMode) {
334
334
  pushLine("", C.dim);
335
- pushLine("\u250c\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2510", C.assistant);
336
- pushLine("\u2502 Welcome to JuneCoder! \u2502", C.assistant);
337
- pushLine("\u2502 \u2502", C.assistant);
338
- pushLine("\u2502 Before you start, you need a DeepSeek API key. \u2502", C.assistant);
339
- pushLine("\u2502 Get one at: https://platform.deepseek.com/api_keys \u2502", C.assistant);
340
- pushLine("\u2502 \u2502", C.assistant);
341
- pushLine("\u2502 Paste your key below and press Enter. \u2502", C.assistant);
342
- pushLine("\u2514\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2500\u2518", C.assistant);
335
+ pushLine("Welcome to JuneCoder!", ansi.bold + C.assistant);
336
+ pushLine("Before you start, you need a DeepSeek API key.", C.text);
337
+ pushLine("Get one at: https://platform.deepseek.com/api_keys", C.dim);
343
338
  pushLine("", C.dim);
344
339
  state.status = "Paste your DeepSeek API key and press Enter (https://platform.deepseek.com/api_keys)";
345
340
  }