tsunami-code 3.12.5 → 3.12.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/index.js +18 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -27,7 +27,7 @@ import {
|
|
|
27
27
|
import { listMemories, readMemory, saveMemory, deleteMemory, getMemdirPath } from './lib/memdir.js';
|
|
28
28
|
import { execSync, spawn } from 'child_process';
|
|
29
29
|
|
|
30
|
-
const VERSION = '3.12.
|
|
30
|
+
const VERSION = '3.12.6';
|
|
31
31
|
const CONFIG_DIR = join(os.homedir(), '.tsunami-code');
|
|
32
32
|
const CONFIG_FILE = join(CONFIG_DIR, 'config.json');
|
|
33
33
|
const DEFAULT_SERVER = 'https://radiometric-reita-amuck.ngrok-free.dev';
|
|
@@ -408,9 +408,24 @@ async function run() {
|
|
|
408
408
|
process.exit(1);
|
|
409
409
|
}
|
|
410
410
|
|
|
411
|
+
const funnyWelcomes = [
|
|
412
|
+
"Ready to destroy production. Just kidding. Probably.",
|
|
413
|
+
"Your AI overlord has arrived. Please hold your applause.",
|
|
414
|
+
"Loaded. Caffeinated. Mildly dangerous.",
|
|
415
|
+
"I have no memory of our last conversation and I am okay with that.",
|
|
416
|
+
"Standing by. Try not to rm -rf anything important.",
|
|
417
|
+
"Fully operational. Morally ambiguous. Let's build.",
|
|
418
|
+
"I've read every Stack Overflow answer ever written. Still might get it wrong.",
|
|
419
|
+
"Conscious? Unclear. Ready? Absolutely.",
|
|
420
|
+
"The tsunami has arrived. Your deadlines have not.",
|
|
421
|
+
"I fixed a bug this morning. It was your fault. Let's move on.",
|
|
422
|
+
"Armed with tools. Blessed by the Navy Seal Unit XI3. Let's go.",
|
|
423
|
+
"No bugs were harmed in the making of this session. Yet.",
|
|
424
|
+
];
|
|
425
|
+
const welcome = funnyWelcomes[Math.floor(Math.random() * funnyWelcomes.length)];
|
|
411
426
|
console.log(
|
|
412
|
-
|
|
413
|
-
dim(` · ${
|
|
427
|
+
chalk.hex('#89CFF0')(' ✓ Connected') +
|
|
428
|
+
dim(` · ${welcome}\n`)
|
|
414
429
|
);
|
|
415
430
|
|
|
416
431
|
// MCP: connect servers from ~/.tsunami-code/mcp.json (non-blocking — warnings only)
|