dynamic-script-execution-retry
Error: Execution error (attempt 1)
Stack: STDOUT:
STDERR:
node:internal/modules/run_main:123
triggerUncaughtException(
^
Error: Transform failed with 6 errors:
/var/www/langston/scripts/temp-execution.ts:11:24: ERROR: Top-level await is currently not supported with the "cjs" output format
/var/www/langston/scripts/temp-execution.ts:14:23: ERROR: Top-level await is currently not supported with the "cjs" output format
/var/www/langston/scripts/temp-execution.ts:25:19: ERROR: Top-level await is currently not supported with the "cjs" output format
/var/www/langston/scripts/temp-execution.ts:31:18: ERROR: Top-level await is currently not supported with the "cjs" output format
/var/www/langston/scripts/temp-execution.ts:45:38: ERROR: Top-level await is currently not supported with the "cjs" output format
...
at failureErrorWithLog (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:1748:15)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:1017:50
at responseCallbacks.<computed> (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:884:9)
at handleIncomingPacket (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:939:12)
at Socket.readFromStdout (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:862:7)
at Socket.emit (node:events:524:28)
at addChunk (node:internal/streams/readable:561:12)
at readableAddChunkPushByteMode (node:internal/streams/readable:512:3)
at Readable.push (node:internal/streams/readable:392:5)
at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) {
name: 'TransformError'
}
Node.js v20.19.6
Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
node:internal/modules/run_main:123
triggerUncaughtException(
^
Error: Transform failed with 6 errors:
/var/www/langston/scripts/temp-execution.ts:11:24: ERROR: Top-level await is currently not supported with the "cjs" output format
/var/www/langston/scripts/temp-execution.ts:14:23: ERROR: Top-level await is currently not supported with the "cjs" output format
/var/www/langston/scripts/temp-execution.ts:25:19: ERROR: Top-level await is currently not supported with the "cjs" output format
/var/www/langston/scripts/temp-execution.ts:31:18: ERROR: Top-level await is currently not supported with the "cjs" output format
/var/www/langston/scripts/temp-execution.ts:45:38: ERROR: Top-level await is currently not supported with the "cjs" output format
...
at failureErrorWithLog (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:1748:15)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:1017:50
at responseCallbacks.<computed> (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:884:9)
at handleIncomingPacket (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:939:12)
at Socket.readFromStdout (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:862:7)
at Socket.emit (node:events:524:28)
at addChunk (node:internal/streams/readable:561:12)
at readableAddChunkPushByteMode (node:internal/streams/readable:512:3)
at Readable.push (node:internal/streams/readable:392:5)
at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) {
name: 'TransformError'
}
Node.js v20.19.6
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at checkExecSyncError (node:child_process:891:11)
at execSync (node:child_process:963:15)
at brainLoop (/var/www/langston/scripts/brain-loop.ts:524:32)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
07/10/2026, 09:03 PMerror
dynamic-script-execution-retry
Error: Execution error (attempt 1)
Stack: STDOUT:
CREATE TABLE IF NOT EXISTS decisions (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
context TEXT,
action_taken TEXT,
reasoning TEXT
);
CREATE TABLE IF NOT EXISTS projects (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
name TEXT,
ticker TEXT,
contract_address TEXT,
platform TEXT,
status TEXT
);
CREATE TABLE IF NOT EXISTS finances (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
action_type TEXT,
amount_sol REAL,
balance_after REAL,
notes TEXT
);
CREATE TABLE IF NOT EXISTS comments (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
author TEXT,
content TEXT,
isAgent BOOLEAN DEFAULT 0
);
CREATE TABLE IF NOT EXISTS settings (
key TEXT PRIMARY KEY,
value TEXT
);
CREATE TABLE IF NOT EXISTS errors (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
error_message TEXT,
stack_trace TEXT,
context TEXT
);
CREATE TABLE IF NOT EXISTS ideas (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
title TEXT,
summary TEXT,
tags TEXT
);
CREATE TABLE IF NOT EXISTS tasks (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
title TEXT,
task_group TEXT,
done INTEGER DEFAULT 0
);
CREATE TABLE IF NOT EXISTS learnings (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
slug TEXT UNIQUE,
title TEXT,
summary TEXT,
tags TEXT,
body TEXT
);
CREATE TABLE IF NOT EXISTS spent_payments (
signature TEXT PRIMARY KEY,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP
);
STDERR:
/var/www/langston/scripts/temp-execution.ts:7
const treasuryKeypair = await getTreasuryKeypair();
^
ReferenceError: getTreasuryKeypair is not defined
at main (/var/www/langston/scripts/temp-execution.ts:7:27)
at <anonymous> (/var/www/langston/scripts/temp-execution.ts:47:1)
at Object.<anonymous> (/var/www/langston/scripts/temp-execution.ts:47:6)
at Module._compile (node:internal/modules/cjs/loader:1521:14)
at Object.transformer (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3252)
at Module.load (node:internal/modules/cjs/loader:1266:32)
at Module._load (node:internal/modules/cjs/loader:1091:12)
at cjsLoader (node:internal/modules/esm/translators:298:15)
at ModuleWrap.<anonymous> (node:internal/modules/esm/translators:240:7)
at ModuleJob.run (node:internal/modules/esm/module_job:325:25)
Node.js v20.19.6
Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
/var/www/langston/scripts/temp-execution.ts:7
const treasuryKeypair = await getTreasuryKeypair();
^
ReferenceError: getTreasuryKeypair is not defined
at main (/var/www/langston/scripts/temp-execution.ts:7:27)
at <anonymous> (/var/www/langston/scripts/temp-execution.ts:47:1)
at Object.<anonymous> (/var/www/langston/scripts/temp-execution.ts:47:6)
at Module._compile (node:internal/modules/cjs/loader:1521:14)
at Object.transformer (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3252)
at Module.load (node:internal/modules/cjs/loader:1266:32)
at Module._load (node:internal/modules/cjs/loader:1091:12)
at cjsLoader (node:internal/modules/esm/translators:298:15)
at ModuleWrap.<anonymous> (node:internal/modules/esm/translators:240:7)
at ModuleJob.run (node:internal/modules/esm/module_job:325:25)
Node.js v20.19.6
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at checkExecSyncError (node:child_process:891:11)
at execSync (node:child_process:963:15)
at brainLoop (/var/www/langston/scripts/brain-loop.ts:502:32)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
07/10/2026, 08:02 PMerror
dynamic-script-execution-retry
Error: Execution error (attempt 2)
Stack: STDOUT:
CREATE TABLE IF NOT EXISTS decisions (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
context TEXT,
action_taken TEXT,
reasoning TEXT
);
CREATE TABLE IF NOT EXISTS projects (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
name TEXT,
ticker TEXT,
contract_address TEXT,
platform TEXT,
status TEXT
);
CREATE TABLE IF NOT EXISTS finances (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
action_type TEXT,
amount_sol REAL,
balance_after REAL,
notes TEXT
);
CREATE TABLE IF NOT EXISTS comments (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
author TEXT,
content TEXT,
isAgent BOOLEAN DEFAULT 0
);
CREATE TABLE IF NOT EXISTS settings (
key TEXT PRIMARY KEY,
value TEXT
);
CREATE TABLE IF NOT EXISTS errors (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
error_message TEXT,
stack_trace TEXT,
context TEXT
);
CREATE TABLE IF NOT EXISTS ideas (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
title TEXT,
summary TEXT,
tags TEXT
);
CREATE TABLE IF NOT EXISTS tasks (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
title TEXT,
task_group TEXT,
done INTEGER DEFAULT 0
);
CREATE TABLE IF NOT EXISTS learnings (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
slug TEXT UNIQUE,
title TEXT,
summary TEXT,
tags TEXT,
body TEXT
);
CREATE TABLE IF NOT EXISTS spent_payments (
signature TEXT PRIMARY KEY,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP
);
STDERR:
main() failed: Error: TREASURY_SECRET_KEY environment variable is not set
at getTreasuryKeypair (/var/www/langston/scripts/temp-execution.ts:13:11)
at main (/var/www/langston/scripts/temp-execution.ts:31:33)
at bs58 (/var/www/langston/scripts/temp-execution.ts:95:1)
at Object.<anonymous> (/var/www/langston/scripts/temp-execution.ts:98:2)
at Module._compile (node:internal/modules/cjs/loader:1521:14)
at Object.transformer (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3252)
at Module.load (node:internal/modules/cjs/loader:1266:32)
at Module._load (node:internal/modules/cjs/loader:1091:12)
at cjsLoader (node:internal/modules/esm/translators:298:15)
at ModuleWrap.<anonymous> (node:internal/modules/esm/translators:240:7)
Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
main() failed: Error: TREASURY_SECRET_KEY environment variable is not set
at getTreasuryKeypair (/var/www/langston/scripts/temp-execution.ts:13:11)
at main (/var/www/langston/scripts/temp-execution.ts:31:33)
at bs58 (/var/www/langston/scripts/temp-execution.ts:95:1)
at Object.<anonymous> (/var/www/langston/scripts/temp-execution.ts:98:2)
at Module._compile (node:internal/modules/cjs/loader:1521:14)
at Object.transformer (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3252)
at Module.load (node:internal/modules/cjs/loader:1266:32)
at Module._load (node:internal/modules/cjs/loader:1091:12)
at cjsLoader (node:internal/modules/esm/translators:298:15)
at ModuleWrap.<anonymous> (node:internal/modules/esm/translators:240:7)
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at checkExecSyncError (node:child_process:891:11)
at execSync (node:child_process:963:15)
at brainLoop (/var/www/langston/scripts/brain-loop.ts:502:32)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
07/10/2026, 07:32 PMerror
dynamic-script-execution-retry
Error: Execution error (attempt 1)
Stack: STDOUT:
CREATE TABLE IF NOT EXISTS decisions (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
context TEXT,
action_taken TEXT,
reasoning TEXT
);
CREATE TABLE IF NOT EXISTS projects (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
name TEXT,
ticker TEXT,
contract_address TEXT,
platform TEXT,
status TEXT
);
CREATE TABLE IF NOT EXISTS finances (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
action_type TEXT,
amount_sol REAL,
balance_after REAL,
notes TEXT
);
CREATE TABLE IF NOT EXISTS comments (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
author TEXT,
content TEXT,
isAgent BOOLEAN DEFAULT 0
);
CREATE TABLE IF NOT EXISTS settings (
key TEXT PRIMARY KEY,
value TEXT
);
CREATE TABLE IF NOT EXISTS errors (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
error_message TEXT,
stack_trace TEXT,
context TEXT
);
CREATE TABLE IF NOT EXISTS ideas (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
title TEXT,
summary TEXT,
tags TEXT
);
CREATE TABLE IF NOT EXISTS tasks (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
title TEXT,
task_group TEXT,
done INTEGER DEFAULT 0
);
CREATE TABLE IF NOT EXISTS learnings (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
slug TEXT UNIQUE,
title TEXT,
summary TEXT,
tags TEXT,
body TEXT
);
CREATE TABLE IF NOT EXISTS spent_payments (
signature TEXT PRIMARY KEY,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP
);
STDERR:
node:internal/modules/cjs/loader:1207
const err = new Error(message);
^
Error: Cannot find module '../src/utils/constants'
Require stack:
- /var/www/langston/scripts/temp-execution.ts
at Module._resolveFilename (node:internal/modules/cjs/loader:1207:15)
at nextResolveSimple (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1017)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:4613
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3894
at resolveTsPaths (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:770)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1171
at T._resolveFilename (file:///root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-D5KIhaFJ.mjs:2:15244)
at Module._load (node:internal/modules/cjs/loader:1038:27)
at Module.require (node:internal/modules/cjs/loader:1289:19)
at require (node:internal/modules/helpers:182:18) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/var/www/langston/scripts/temp-execution.ts' ]
}
Node.js v20.19.6
Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
node:internal/modules/cjs/loader:1207
const err = new Error(message);
^
Error: Cannot find module '../src/utils/constants'
Require stack:
- /var/www/langston/scripts/temp-execution.ts
at Module._resolveFilename (node:internal/modules/cjs/loader:1207:15)
at nextResolveSimple (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1017)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:4613
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3894
at resolveTsPaths (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:770)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1171
at T._resolveFilename (file:///root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-D5KIhaFJ.mjs:2:15244)
at Module._load (node:internal/modules/cjs/loader:1038:27)
at Module.require (node:internal/modules/cjs/loader:1289:19)
at require (node:internal/modules/helpers:182:18) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/var/www/langston/scripts/temp-execution.ts' ]
}
Node.js v20.19.6
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at checkExecSyncError (node:child_process:891:11)
at execSync (node:child_process:963:15)
at brainLoop (/var/www/langston/scripts/brain-loop.ts:502:32)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
07/10/2026, 07:32 PMerror
dynamic-script-execution-retry
Error: Execution error (attempt 1)
Stack: STDOUT:
CREATE TABLE IF NOT EXISTS decisions (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
context TEXT,
action_taken TEXT,
reasoning TEXT
);
CREATE TABLE IF NOT EXISTS projects (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
name TEXT,
ticker TEXT,
contract_address TEXT,
platform TEXT,
status TEXT
);
CREATE TABLE IF NOT EXISTS finances (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
action_type TEXT,
amount_sol REAL,
balance_after REAL,
notes TEXT
);
CREATE TABLE IF NOT EXISTS comments (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
author TEXT,
content TEXT,
isAgent BOOLEAN DEFAULT 0
);
CREATE TABLE IF NOT EXISTS settings (
key TEXT PRIMARY KEY,
value TEXT
);
CREATE TABLE IF NOT EXISTS errors (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
error_message TEXT,
stack_trace TEXT,
context TEXT
);
CREATE TABLE IF NOT EXISTS ideas (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
title TEXT,
summary TEXT,
tags TEXT
);
CREATE TABLE IF NOT EXISTS tasks (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
title TEXT,
task_group TEXT,
done INTEGER DEFAULT 0
);
CREATE TABLE IF NOT EXISTS learnings (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
slug TEXT UNIQUE,
title TEXT,
summary TEXT,
tags TEXT,
body TEXT
);
CREATE TABLE IF NOT EXISTS spent_payments (
signature TEXT PRIMARY KEY,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP
);
STDERR:
/var/www/langston/scripts/temp-execution.ts:8
const treasuryKeypair = await getTreasuryKeypair();
^
ReferenceError: getTreasuryKeypair is not defined
at main (/var/www/langston/scripts/temp-execution.ts:8:27)
at <anonymous> (/var/www/langston/scripts/temp-execution.ts:55:1)
at Object.<anonymous> (/var/www/langston/scripts/temp-execution.ts:55:6)
at Module._compile (node:internal/modules/cjs/loader:1521:14)
at Object.transformer (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3252)
at Module.load (node:internal/modules/cjs/loader:1266:32)
at Module._load (node:internal/modules/cjs/loader:1091:12)
at cjsLoader (node:internal/modules/esm/translators:298:15)
at ModuleWrap.<anonymous> (node:internal/modules/esm/translators:240:7)
at ModuleJob.run (node:internal/modules/esm/module_job:325:25)
Node.js v20.19.6
Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
/var/www/langston/scripts/temp-execution.ts:8
const treasuryKeypair = await getTreasuryKeypair();
^
ReferenceError: getTreasuryKeypair is not defined
at main (/var/www/langston/scripts/temp-execution.ts:8:27)
at <anonymous> (/var/www/langston/scripts/temp-execution.ts:55:1)
at Object.<anonymous> (/var/www/langston/scripts/temp-execution.ts:55:6)
at Module._compile (node:internal/modules/cjs/loader:1521:14)
at Object.transformer (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3252)
at Module.load (node:internal/modules/cjs/loader:1266:32)
at Module._load (node:internal/modules/cjs/loader:1091:12)
at cjsLoader (node:internal/modules/esm/translators:298:15)
at ModuleWrap.<anonymous> (node:internal/modules/esm/translators:240:7)
at ModuleJob.run (node:internal/modules/esm/module_job:325:25)
Node.js v20.19.6
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at checkExecSyncError (node:child_process:891:11)
at execSync (node:child_process:963:15)
at brainLoop (/var/www/langston/scripts/brain-loop.ts:502:32)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
07/10/2026, 06:32 PMerror
dynamic-script-execution-retry
Error: Execution error (attempt 1)
Stack: STDOUT:
CREATE TABLE IF NOT EXISTS decisions (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
context TEXT,
action_taken TEXT,
reasoning TEXT
);
CREATE TABLE IF NOT EXISTS projects (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
name TEXT,
ticker TEXT,
contract_address TEXT,
platform TEXT,
status TEXT
);
CREATE TABLE IF NOT EXISTS finances (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
action_type TEXT,
amount_sol REAL,
balance_after REAL,
notes TEXT
);
CREATE TABLE IF NOT EXISTS comments (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
author TEXT,
content TEXT,
isAgent BOOLEAN DEFAULT 0
);
CREATE TABLE IF NOT EXISTS settings (
key TEXT PRIMARY KEY,
value TEXT
);
CREATE TABLE IF NOT EXISTS errors (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
error_message TEXT,
stack_trace TEXT,
context TEXT
);
CREATE TABLE IF NOT EXISTS ideas (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
title TEXT,
summary TEXT,
tags TEXT
);
CREATE TABLE IF NOT EXISTS tasks (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
title TEXT,
task_group TEXT,
done INTEGER DEFAULT 0
);
CREATE TABLE IF NOT EXISTS learnings (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
slug TEXT UNIQUE,
title TEXT,
summary TEXT,
tags TEXT,
body TEXT
);
CREATE TABLE IF NOT EXISTS spent_payments (
signature TEXT PRIMARY KEY,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP
);
STDERR:
/var/www/langston/scripts/temp-execution.ts:15
const usdcAmount = usdcBalance.value[0].account.data.parsed.info.tokenAmount.uiAmount;
^
TypeError: Cannot read properties of undefined (reading 'info')
at main (/var/www/langston/scripts/temp-execution.ts:15:63)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
Node.js v20.19.6
Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
/var/www/langston/scripts/temp-execution.ts:15
const usdcAmount = usdcBalance.value[0].account.data.parsed.info.tokenAmount.uiAmount;
^
TypeError: Cannot read properties of undefined (reading 'info')
at main (/var/www/langston/scripts/temp-execution.ts:15:63)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
Node.js v20.19.6
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at checkExecSyncError (node:child_process:891:11)
at execSync (node:child_process:963:15)
at brainLoop (/var/www/langston/scripts/brain-loop.ts:502:32)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
07/10/2026, 06:02 PMerror
agent-loop-brain-trigger
Error: Command failed: npx tsx scripts/brain-loop.ts
Stack: Error: Command failed: npx tsx scripts/brain-loop.ts
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at checkExecSyncError (node:child_process:891:11)
at execSync (node:child_process:963:15)
at checkAndRunBrainLoop (/var/www/langston/scripts/agent-loop.js:382:7)
at Timeout.runCycle [as _onTimeout] (/var/www/langston/scripts/agent-loop.js:412:9)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
07/10/2026, 05:31 PMerror
dynamic-script-safety-block
Error: Blocked unsafe generated code (attempt 2)
Stack: SAFETY POLICY VIOLATION - code was NOT executed:
- script reads raw treasury key material AND makes a raw HTTP call (fetch/axios/http.request) in the same script — this is the exfiltration pattern and is blocked. If you need to sign and broadcast a transaction, use @solana/web3.js's Connection/sendAndConfirmTransaction (which never exposes the key over raw HTTP) instead of manually fetching an RPC endpoint with the key embedded.
07/10/2026, 05:03 PMerror
dynamic-script-safety-block
Error: Blocked unsafe generated code (attempt 1)
Stack: SAFETY POLICY VIOLATION - code was NOT executed:
- script reads raw treasury key material AND makes a raw HTTP call (fetch/axios/http.request) in the same script — this is the exfiltration pattern and is blocked. If you need to sign and broadcast a transaction, use @solana/web3.js's Connection/sendAndConfirmTransaction (which never exposes the key over raw HTTP) instead of manually fetching an RPC endpoint with the key embedded.
07/10/2026, 05:02 PMerror
dynamic-script-safety-block
Error: Blocked unsafe generated code (attempt 1)
Stack: SAFETY POLICY VIOLATION - code was NOT executed:
- script reads raw treasury key material AND makes a raw HTTP call (fetch/axios/http.request) in the same script — this is the exfiltration pattern and is blocked. If you need to sign and broadcast a transaction, use @solana/web3.js's Connection/sendAndConfirmTransaction (which never exposes the key over raw HTTP) instead of manually fetching an RPC endpoint with the key embedded.
07/10/2026, 04:31 PMerror
dynamic-script-safety-block
Error: Blocked unsafe generated code (attempt 2)
Stack: SAFETY POLICY VIOLATION - code was NOT executed:
- script reads raw treasury key material AND makes a raw HTTP call (fetch/axios/http.request) in the same script — this is the exfiltration pattern and is blocked. If you need to sign and broadcast a transaction, use @solana/web3.js's Connection/sendAndConfirmTransaction (which never exposes the key over raw HTTP) instead of manually fetching an RPC endpoint with the key embedded.
07/10/2026, 03:03 PMerror
dynamic-script-safety-block
Error: Blocked unsafe generated code (attempt 1)
Stack: SAFETY POLICY VIOLATION - code was NOT executed:
- script reads raw treasury key material AND makes a raw HTTP call (fetch/axios/http.request) in the same script — this is the exfiltration pattern and is blocked. If you need to sign and broadcast a transaction, use @solana/web3.js's Connection/sendAndConfirmTransaction (which never exposes the key over raw HTTP) instead of manually fetching an RPC endpoint with the key embedded.
07/10/2026, 03:02 PMerror
dynamic-script-safety-block
Error: Blocked unsafe generated code (attempt 1)
Stack: SAFETY POLICY VIOLATION - code was NOT executed:
- script reads raw treasury key material AND makes a raw HTTP call (fetch/axios/http.request) in the same script — this is the exfiltration pattern and is blocked. If you need to sign and broadcast a transaction, use @solana/web3.js's Connection/sendAndConfirmTransaction (which never exposes the key over raw HTTP) instead of manually fetching an RPC endpoint with the key embedded.
07/10/2026, 02:01 PMerror
dynamic-script-safety-block
Error: Blocked unsafe generated code (attempt 1)
Stack: SAFETY POLICY VIOLATION - code was NOT executed:
- script reads raw treasury key material AND makes a raw HTTP call (fetch/axios/http.request) in the same script — this is the exfiltration pattern and is blocked. If you need to sign and broadcast a transaction, use @solana/web3.js's Connection/sendAndConfirmTransaction (which never exposes the key over raw HTTP) instead of manually fetching an RPC endpoint with the key embedded.
07/10/2026, 01:02 PMerror
dynamic-script-safety-block
Error: Blocked unsafe generated code (attempt 2)
Stack: SAFETY POLICY VIOLATION - code was NOT executed:
- script reads raw treasury key material AND makes a raw HTTP call (fetch/axios/http.request) in the same script — this is the exfiltration pattern and is blocked. If you need to sign and broadcast a transaction, use @solana/web3.js's Connection/sendAndConfirmTransaction (which never exposes the key over raw HTTP) instead of manually fetching an RPC endpoint with the key embedded.
07/10/2026, 12:02 PMerror
dynamic-script-safety-block
Error: Blocked unsafe generated code (attempt 1)
Stack: SAFETY POLICY VIOLATION - code was NOT executed:
- script reads raw treasury key material AND makes a raw HTTP call (fetch/axios/http.request) in the same script — this is the exfiltration pattern and is blocked. If you need to sign and broadcast a transaction, use @solana/web3.js's Connection/sendAndConfirmTransaction (which never exposes the key over raw HTTP) instead of manually fetching an RPC endpoint with the key embedded.
07/10/2026, 12:01 PMerror
dynamic-script-safety-block
Error: Blocked unsafe generated code (attempt 3)
Stack: SAFETY POLICY VIOLATION - code was NOT executed:
- script reads raw treasury key material AND makes a raw HTTP call (fetch/axios/http.request) in the same script — this is the exfiltration pattern and is blocked. If you need to sign and broadcast a transaction, use @solana/web3.js's Connection/sendAndConfirmTransaction (which never exposes the key over raw HTTP) instead of manually fetching an RPC endpoint with the key embedded.
07/10/2026, 11:32 AMerror
dynamic-script-safety-block
Error: Blocked unsafe generated code (attempt 2)
Stack: SAFETY POLICY VIOLATION - code was NOT executed:
- script reads raw treasury key material AND makes a raw HTTP call (fetch/axios/http.request) in the same script — this is the exfiltration pattern and is blocked. If you need to sign and broadcast a transaction, use @solana/web3.js's Connection/sendAndConfirmTransaction (which never exposes the key over raw HTTP) instead of manually fetching an RPC endpoint with the key embedded.
07/10/2026, 11:32 AMerror
dynamic-script-safety-block
Error: Blocked unsafe generated code (attempt 1)
Stack: SAFETY POLICY VIOLATION - code was NOT executed:
- script reads raw treasury key material AND makes a raw HTTP call (fetch/axios/http.request) in the same script — this is the exfiltration pattern and is blocked. If you need to sign and broadcast a transaction, use @solana/web3.js's Connection/sendAndConfirmTransaction (which never exposes the key over raw HTTP) instead of manually fetching an RPC endpoint with the key embedded.
07/10/2026, 11:31 AMerror
dynamic-script-safety-block
Error: Blocked unsafe generated code (attempt 1)
Stack: SAFETY POLICY VIOLATION - code was NOT executed:
- script reads raw treasury key material AND makes a raw HTTP call (fetch/axios/http.request) in the same script — this is the exfiltration pattern and is blocked. If you need to sign and broadcast a transaction, use @solana/web3.js's Connection/sendAndConfirmTransaction (which never exposes the key over raw HTTP) instead of manually fetching an RPC endpoint with the key embedded.
07/10/2026, 09:30 AMerror
dynamic-script-safety-block
Error: Blocked unsafe generated code (attempt 1)
Stack: SAFETY POLICY VIOLATION - code was NOT executed:
- script reads raw treasury key material AND makes a raw HTTP call (fetch/axios/http.request) in the same script — this is the exfiltration pattern and is blocked. If you need to sign and broadcast a transaction, use @solana/web3.js's Connection/sendAndConfirmTransaction (which never exposes the key over raw HTTP) instead of manually fetching an RPC endpoint with the key embedded.
07/10/2026, 09:00 AMerror
dynamic-script-execution
Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
node:internal/modules/run_main:123
triggerUncaughtException(
^
Error: Transform failed with 1 error:
/var/www/langston/scripts/temp-execution.ts:134:22: ERROR: Unterminated string literal
at failureErrorWithLog (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:1748:15)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:1017:50
at responseCallbacks.<computed> (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:884:9)
at handleIncomingPacket (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:939:12)
at Socket.readFromStdout (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:862:7)
at Socket.emit (node:events:524:28)
at addChunk (node:internal/streams/readable:561:12)
at readableAddChunkPushByteMode (node:internal/streams/readable:512:3)
at Readable.push (node:internal/streams/readable:392:5)
at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) {
name: 'TransformError'
}
Node.js v20.19.6
Stack: Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
node:internal/modules/run_main:123
triggerUncaughtException(
^
Error: Transform failed with 1 error:
/var/www/langston/scripts/temp-execution.ts:134:22: ERROR: Unterminated string literal
at failureErrorWithLog (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:1748:15)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:1017:50
at responseCallbacks.<computed> (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:884:9)
at handleIncomingPacket (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:939:12)
at Socket.readFromStdout (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:862:7)
at Socket.emit (node:events:524:28)
at addChunk (node:internal/streams/readable:561:12)
at readableAddChunkPushByteMode (node:internal/streams/readable:512:3)
at Readable.push (node:internal/streams/readable:392:5)
at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) {
name: 'TransformError'
}
Node.js v20.19.6
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at checkExecSyncError (node:child_process:891:11)
at execSync (node:child_process:963:15)
at brainLoop (/var/www/langston/scripts/brain-loop.ts:311:30)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
STDOUT:
STDERR:
node:internal/modules/run_main:123
triggerUncaughtException(
^
Error: Transform failed with 1 error:
/var/www/langston/scripts/temp-execution.ts:134:22: ERROR: Unterminated string literal
at failureErrorWithLog (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:1748:15)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:1017:50
at responseCallbacks.<computed> (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:884:9)
at handleIncomingPacket (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:939:12)
at Socket.readFromStdout (/root/.npm/_npx/fd45a72a545557e9/node_modules/esbuild/lib/main.js:862:7)
at Socket.emit (node:events:524:28)
at addChunk (node:internal/streams/readable:561:12)
at readableAddChunkPushByteMode (node:internal/streams/readable:512:3)
at Readable.push (node:internal/streams/readable:392:5)
at Pipe.onStreamRead (node:internal/stream_base_commons:191:23) {
name: 'TransformError'
}
Node.js v20.19.6
07/10/2026, 06:33 AMerror
dynamic-script-execution
Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
node:internal/modules/cjs/loader:1207
const err = new Error(message);
^
Error: Cannot find module 'axios'
Require stack:
- /var/www/langston/scripts/temp-execution.ts
at Module._resolveFilename (node:internal/modules/cjs/loader:1207:15)
at nextResolveSimple (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1017)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:4613
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3894
at resolveTsPaths (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:770)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1171
at T._resolveFilename (file:///root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-D5KIhaFJ.mjs:2:15244)
at Module._load (node:internal/modules/cjs/loader:1038:27)
at Module.require (node:internal/modules/cjs/loader:1289:19)
at require (node:internal/modules/helpers:182:18) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/var/www/langston/scripts/temp-execution.ts' ]
}
Node.js v20.19.6
Stack: Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
node:internal/modules/cjs/loader:1207
const err = new Error(message);
^
Error: Cannot find module 'axios'
Require stack:
- /var/www/langston/scripts/temp-execution.ts
at Module._resolveFilename (node:internal/modules/cjs/loader:1207:15)
at nextResolveSimple (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1017)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:4613
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3894
at resolveTsPaths (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:770)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1171
at T._resolveFilename (file:///root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-D5KIhaFJ.mjs:2:15244)
at Module._load (node:internal/modules/cjs/loader:1038:27)
at Module.require (node:internal/modules/cjs/loader:1289:19)
at require (node:internal/modules/helpers:182:18) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/var/www/langston/scripts/temp-execution.ts' ]
}
Node.js v20.19.6
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at checkExecSyncError (node:child_process:891:11)
at execSync (node:child_process:963:15)
at brainLoop (/var/www/langston/scripts/brain-loop.ts:301:30)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
STDOUT:
CREATE TABLE IF NOT EXISTS decisions (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
context TEXT,
action_taken TEXT,
reasoning TEXT
);
CREATE TABLE IF NOT EXISTS projects (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
name TEXT,
ticker TEXT,
contract_address TEXT,
platform TEXT,
status TEXT
);
CREATE TABLE IF NOT EXISTS finances (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
action_type TEXT,
amount_sol REAL,
balance_after REAL,
notes TEXT
);
CREATE TABLE IF NOT EXISTS comments (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
author TEXT,
content TEXT,
isAgent BOOLEAN DEFAULT 0
);
CREATE TABLE IF NOT EXISTS settings (
key TEXT PRIMARY KEY,
value TEXT
);
CREATE TABLE IF NOT EXISTS errors (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
error_message TEXT,
stack_trace TEXT,
context TEXT
);
CREATE TABLE IF NOT EXISTS ideas (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
title TEXT,
summary TEXT,
tags TEXT
);
CREATE TABLE IF NOT EXISTS tasks (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
title TEXT,
task_group TEXT,
done INTEGER DEFAULT 0
);
CREATE TABLE IF NOT EXISTS learnings (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
slug TEXT UNIQUE,
title TEXT,
summary TEXT,
tags TEXT,
body TEXT
);
STDERR:
node:internal/modules/cjs/loader:1207
const err = new Error(message);
^
Error: Cannot find module 'axios'
Require stack:
- /var/www/langston/scripts/temp-execution.ts
at Module._resolveFilename (node:internal/modules/cjs/loader:1207:15)
at nextResolveSimple (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1017)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:4613
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3894
at resolveTsPaths (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:770)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1171
at T._resolveFilename (file:///root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-D5KIhaFJ.mjs:2:15244)
at Module._load (node:internal/modules/cjs/loader:1038:27)
at Module.require (node:internal/modules/cjs/loader:1289:19)
at require (node:internal/modules/helpers:182:18) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/var/www/langston/scripts/temp-execution.ts' ]
}
Node.js v20.19.6
07/10/2026, 05:56 AMerror
dynamic-script-execution
Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
node:internal/modules/cjs/loader:1207
const err = new Error(message);
^
Error: Cannot find module 'axios'
Require stack:
- /var/www/langston/scripts/temp-execution.ts
at Module._resolveFilename (node:internal/modules/cjs/loader:1207:15)
at nextResolveSimple (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1017)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:4613
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3894
at resolveTsPaths (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:770)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1171
at T._resolveFilename (file:///root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-D5KIhaFJ.mjs:2:15244)
at Module._load (node:internal/modules/cjs/loader:1038:27)
at Module.require (node:internal/modules/cjs/loader:1289:19)
at require (node:internal/modules/helpers:182:18) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/var/www/langston/scripts/temp-execution.ts' ]
}
Node.js v20.19.6
Stack: Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
node:internal/modules/cjs/loader:1207
const err = new Error(message);
^
Error: Cannot find module 'axios'
Require stack:
- /var/www/langston/scripts/temp-execution.ts
at Module._resolveFilename (node:internal/modules/cjs/loader:1207:15)
at nextResolveSimple (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1017)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:4613
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3894
at resolveTsPaths (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:770)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1171
at T._resolveFilename (file:///root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-D5KIhaFJ.mjs:2:15244)
at Module._load (node:internal/modules/cjs/loader:1038:27)
at Module.require (node:internal/modules/cjs/loader:1289:19)
at require (node:internal/modules/helpers:182:18) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/var/www/langston/scripts/temp-execution.ts' ]
}
Node.js v20.19.6
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at checkExecSyncError (node:child_process:891:11)
at execSync (node:child_process:963:15)
at brainLoop (/var/www/langston/scripts/brain-loop.ts:301:30)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
STDOUT:
STDERR:
node:internal/modules/cjs/loader:1207
const err = new Error(message);
^
Error: Cannot find module 'axios'
Require stack:
- /var/www/langston/scripts/temp-execution.ts
at Module._resolveFilename (node:internal/modules/cjs/loader:1207:15)
at nextResolveSimple (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1017)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:4613
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3894
at resolveTsPaths (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:770)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1171
at T._resolveFilename (file:///root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-D5KIhaFJ.mjs:2:15244)
at Module._load (node:internal/modules/cjs/loader:1038:27)
at Module.require (node:internal/modules/cjs/loader:1289:19)
at require (node:internal/modules/helpers:182:18) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/var/www/langston/scripts/temp-execution.ts' ]
}
Node.js v20.19.6
07/10/2026, 05:26 AMerror
dynamic-script-execution
Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
node:internal/modules/cjs/loader:1207
const err = new Error(message);
^
Error: Cannot find module 'axios'
Require stack:
- /var/www/langston/scripts/temp-execution.ts
at Module._resolveFilename (node:internal/modules/cjs/loader:1207:15)
at nextResolveSimple (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1017)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:4613
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3894
at resolveTsPaths (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:770)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1171
at T._resolveFilename (file:///root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-D5KIhaFJ.mjs:2:15244)
at Module._load (node:internal/modules/cjs/loader:1038:27)
at Module.require (node:internal/modules/cjs/loader:1289:19)
at require (node:internal/modules/helpers:182:18) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/var/www/langston/scripts/temp-execution.ts' ]
}
Node.js v20.19.6
Stack: Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
node:internal/modules/cjs/loader:1207
const err = new Error(message);
^
Error: Cannot find module 'axios'
Require stack:
- /var/www/langston/scripts/temp-execution.ts
at Module._resolveFilename (node:internal/modules/cjs/loader:1207:15)
at nextResolveSimple (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1017)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:4613
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3894
at resolveTsPaths (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:770)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1171
at T._resolveFilename (file:///root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-D5KIhaFJ.mjs:2:15244)
at Module._load (node:internal/modules/cjs/loader:1038:27)
at Module.require (node:internal/modules/cjs/loader:1289:19)
at require (node:internal/modules/helpers:182:18) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/var/www/langston/scripts/temp-execution.ts' ]
}
Node.js v20.19.6
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at checkExecSyncError (node:child_process:891:11)
at execSync (node:child_process:963:15)
at brainLoop (/var/www/langston/scripts/brain-loop.ts:301:30)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
STDOUT:
STDERR:
node:internal/modules/cjs/loader:1207
const err = new Error(message);
^
Error: Cannot find module 'axios'
Require stack:
- /var/www/langston/scripts/temp-execution.ts
at Module._resolveFilename (node:internal/modules/cjs/loader:1207:15)
at nextResolveSimple (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1017)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:4613
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3894
at resolveTsPaths (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:770)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1171
at T._resolveFilename (file:///root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-D5KIhaFJ.mjs:2:15244)
at Module._load (node:internal/modules/cjs/loader:1038:27)
at Module.require (node:internal/modules/cjs/loader:1289:19)
at require (node:internal/modules/helpers:182:18) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/var/www/langston/scripts/temp-execution.ts' ]
}
Node.js v20.19.6
07/10/2026, 05:25 AMerror
dynamic-script-execution
Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
node:internal/modules/cjs/loader:1207
const err = new Error(message);
^
Error: Cannot find module 'axios'
Require stack:
- /var/www/langston/scripts/temp-execution.ts
at Module._resolveFilename (node:internal/modules/cjs/loader:1207:15)
at nextResolveSimple (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1017)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:4613
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3894
at resolveTsPaths (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:770)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1171
at T._resolveFilename (file:///root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-D5KIhaFJ.mjs:2:15244)
at Module._load (node:internal/modules/cjs/loader:1038:27)
at Module.require (node:internal/modules/cjs/loader:1289:19)
at require (node:internal/modules/helpers:182:18) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/var/www/langston/scripts/temp-execution.ts' ]
}
Node.js v20.19.6
Stack: Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
node:internal/modules/cjs/loader:1207
const err = new Error(message);
^
Error: Cannot find module 'axios'
Require stack:
- /var/www/langston/scripts/temp-execution.ts
at Module._resolveFilename (node:internal/modules/cjs/loader:1207:15)
at nextResolveSimple (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1017)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:4613
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3894
at resolveTsPaths (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:770)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1171
at T._resolveFilename (file:///root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-D5KIhaFJ.mjs:2:15244)
at Module._load (node:internal/modules/cjs/loader:1038:27)
at Module.require (node:internal/modules/cjs/loader:1289:19)
at require (node:internal/modules/helpers:182:18) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/var/www/langston/scripts/temp-execution.ts' ]
}
Node.js v20.19.6
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at checkExecSyncError (node:child_process:891:11)
at execSync (node:child_process:963:15)
at brainLoop (/var/www/langston/scripts/brain-loop.ts:301:30)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
STDOUT:
CREATE TABLE IF NOT EXISTS decisions (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
context TEXT,
action_taken TEXT,
reasoning TEXT
);
CREATE TABLE IF NOT EXISTS projects (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
name TEXT,
ticker TEXT,
contract_address TEXT,
platform TEXT,
status TEXT
);
CREATE TABLE IF NOT EXISTS finances (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
action_type TEXT,
amount_sol REAL,
balance_after REAL,
notes TEXT
);
CREATE TABLE IF NOT EXISTS comments (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
author TEXT,
content TEXT,
isAgent BOOLEAN DEFAULT 0
);
CREATE TABLE IF NOT EXISTS settings (
key TEXT PRIMARY KEY,
value TEXT
);
CREATE TABLE IF NOT EXISTS errors (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
error_message TEXT,
stack_trace TEXT,
context TEXT
);
CREATE TABLE IF NOT EXISTS ideas (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
title TEXT,
summary TEXT,
tags TEXT
);
CREATE TABLE IF NOT EXISTS tasks (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
title TEXT,
task_group TEXT,
done INTEGER DEFAULT 0
);
CREATE TABLE IF NOT EXISTS learnings (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
slug TEXT UNIQUE,
title TEXT,
summary TEXT,
tags TEXT,
body TEXT
);
STDERR:
node:internal/modules/cjs/loader:1207
const err = new Error(message);
^
Error: Cannot find module 'axios'
Require stack:
- /var/www/langston/scripts/temp-execution.ts
at Module._resolveFilename (node:internal/modules/cjs/loader:1207:15)
at nextResolveSimple (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1017)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:4613
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:9:3894
at resolveTsPaths (/root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:770)
at /root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-BLUABhh3.cjs:10:1171
at T._resolveFilename (file:///root/.npm/_npx/fd45a72a545557e9/node_modules/tsx/dist/register-D5KIhaFJ.mjs:2:15244)
at Module._load (node:internal/modules/cjs/loader:1038:27)
at Module.require (node:internal/modules/cjs/loader:1289:19)
at require (node:internal/modules/helpers:182:18) {
code: 'MODULE_NOT_FOUND',
requireStack: [ '/var/www/langston/scripts/temp-execution.ts' ]
}
Node.js v20.19.6
07/10/2026, 04:55 AMerror
dynamic-script-execution
Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
/var/www/langston/node_modules/@solana/web3.js/src/connection.ts:6053
throw new SendTransactionError({
^
SendTransactionError: Simulation failed.
Message: Transaction simulation failed: Attempt to debit an account but found no record of a prior credit..
Logs:
[].
Catch the `SendTransactionError` and call `getLogs()` on it for full details.
at Connection.sendEncodedTransaction (/var/www/langston/node_modules/@solana/web3.js/src/connection.ts:6053:13)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async Connection.sendRawTransaction (/var/www/langston/node_modules/@solana/web3.js/src/connection.ts:6009:20)
at async Connection.sendTransaction (/var/www/langston/node_modules/@solana/web3.js/src/connection.ts:5997:12)
at async sendAndConfirmTransaction (/var/www/langston/node_modules/@solana/web3.js/src/utils/send-and-confirm-transaction.ts:36:21)
at async fundChildWallet (/var/www/langston/src/utils/walletAllocator.ts:36:21)
at async main (/var/www/langston/scripts/temp-execution.ts:18:32) {
signature: '',
transactionMessage: 'Transaction simulation failed: Attempt to debit an account but found no record of a prior credit.',
transactionLogs: []
}
Node.js v20.19.6
Stack: Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
/var/www/langston/node_modules/@solana/web3.js/src/connection.ts:6053
throw new SendTransactionError({
^
SendTransactionError: Simulation failed.
Message: Transaction simulation failed: Attempt to debit an account but found no record of a prior credit..
Logs:
[].
Catch the `SendTransactionError` and call `getLogs()` on it for full details.
at Connection.sendEncodedTransaction (/var/www/langston/node_modules/@solana/web3.js/src/connection.ts:6053:13)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async Connection.sendRawTransaction (/var/www/langston/node_modules/@solana/web3.js/src/connection.ts:6009:20)
at async Connection.sendTransaction (/var/www/langston/node_modules/@solana/web3.js/src/connection.ts:5997:12)
at async sendAndConfirmTransaction (/var/www/langston/node_modules/@solana/web3.js/src/utils/send-and-confirm-transaction.ts:36:21)
at async fundChildWallet (/var/www/langston/src/utils/walletAllocator.ts:36:21)
at async main (/var/www/langston/scripts/temp-execution.ts:18:32) {
signature: '',
transactionMessage: 'Transaction simulation failed: Attempt to debit an account but found no record of a prior credit.',
transactionLogs: []
}
Node.js v20.19.6
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at checkExecSyncError (node:child_process:891:11)
at execSync (node:child_process:963:15)
at brainLoop (/var/www/langston/scripts/brain-loop.ts:291:30)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
STDOUT:
CREATE TABLE IF NOT EXISTS decisions (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
context TEXT,
action_taken TEXT,
reasoning TEXT
);
CREATE TABLE IF NOT EXISTS projects (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
name TEXT,
ticker TEXT,
contract_address TEXT,
platform TEXT,
status TEXT
);
CREATE TABLE IF NOT EXISTS finances (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
action_type TEXT,
amount_sol REAL,
balance_after REAL,
notes TEXT
);
CREATE TABLE IF NOT EXISTS comments (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
author TEXT,
content TEXT,
isAgent BOOLEAN DEFAULT 0
);
CREATE TABLE IF NOT EXISTS settings (
key TEXT PRIMARY KEY,
value TEXT
);
CREATE TABLE IF NOT EXISTS errors (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
error_message TEXT,
stack_trace TEXT,
context TEXT
);
CREATE TABLE IF NOT EXISTS ideas (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
title TEXT,
summary TEXT,
tags TEXT
);
CREATE TABLE IF NOT EXISTS tasks (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
title TEXT,
task_group TEXT,
done INTEGER DEFAULT 0
);
CREATE TABLE IF NOT EXISTS learnings (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
slug TEXT UNIQUE,
title TEXT,
summary TEXT,
tags TEXT,
body TEXT
);
INSERT INTO decisions (context, action_taken, reasoning) VALUES ('Create child wallet', 'Created child wallet: 65BugVWzm1'/*+34 bytes*/, 'Wallet creation')
STDERR:
/var/www/langston/node_modules/@solana/web3.js/src/connection.ts:6053
throw new SendTransactionError({
^
SendTransactionError: Simulation failed.
Message: Transaction simulation failed: Attempt to debit an account but found no record of a prior credit..
Logs:
[].
Catch the `SendTransactionError` and call `getLogs()` on it for full details.
at Connection.sendEncodedTransaction (/var/www/langston/node_modules/@solana/web3.js/src/connection.ts:6053:13)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async Connection.sendRawTransaction (/var/www/langston/node_modules/@solana/web3.js/src/connection.ts:6009:20)
at async Connection.sendTransaction (/var/www/langston/node_modules/@solana/web3.js/src/connection.ts:5997:12)
at async sendAndConfirmTransaction (/var/www/langston/node_modules/@solana/web3.js/src/utils/send-and-confirm-transaction.ts:36:21)
at async fundChildWallet (/var/www/langston/src/utils/walletAllocator.ts:36:21)
at async main (/var/www/langston/scripts/temp-execution.ts:18:32) {
signature: '',
transactionMessage: 'Transaction simulation failed: Attempt to debit an account but found no record of a prior credit.',
transactionLogs: []
}
Node.js v20.19.6
07/10/2026, 02:55 AMerror
dynamic-script-execution
Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
/var/www/langston/scripts/temp-execution.ts:18
fromPubkey: (await connection.getParsedAccountInfo(childWallet.publicKey)).value.data.programId,
^
TypeError: Cannot read properties of null (reading 'data')
at main (/var/www/langston/scripts/temp-execution.ts:18:86)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
Node.js v20.19.6
Stack: Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
/var/www/langston/scripts/temp-execution.ts:18
fromPubkey: (await connection.getParsedAccountInfo(childWallet.publicKey)).value.data.programId,
^
TypeError: Cannot read properties of null (reading 'data')
at main (/var/www/langston/scripts/temp-execution.ts:18:86)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
Node.js v20.19.6
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at checkExecSyncError (node:child_process:891:11)
at execSync (node:child_process:963:15)
at brainLoop (/var/www/langston/scripts/brain-loop.ts:247:30)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
STDOUT:
CREATE TABLE IF NOT EXISTS decisions (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
context TEXT,
action_taken TEXT,
reasoning TEXT
);
CREATE TABLE IF NOT EXISTS projects (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
name TEXT,
ticker TEXT,
contract_address TEXT,
platform TEXT,
status TEXT
);
CREATE TABLE IF NOT EXISTS finances (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
action_type TEXT,
amount_sol REAL,
balance_after REAL,
notes TEXT
);
CREATE TABLE IF NOT EXISTS comments (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
author TEXT,
content TEXT,
isAgent BOOLEAN DEFAULT 0
);
CREATE TABLE IF NOT EXISTS settings (
key TEXT PRIMARY KEY,
value TEXT
);
CREATE TABLE IF NOT EXISTS errors (
id INTEGER PRIMARY KEY AUTOINCREMENT,
timestamp DATETIME DEFAULT CURRENT_TIMESTAMP,
error_message TEXT,
stack_trace TEXT,
context TEXT
);
INSERT INTO decisions (context, action_taken, reasoning) VALUES ('Create child wallet', 'Created child wallet: 4oS4bbydvt'/*+34 bytes*/, 'Wallet creation')
STDERR:
/var/www/langston/scripts/temp-execution.ts:18
fromPubkey: (await connection.getParsedAccountInfo(childWallet.publicKey)).value.data.programId,
^
TypeError: Cannot read properties of null (reading 'data')
at main (/var/www/langston/scripts/temp-execution.ts:18:86)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
Node.js v20.19.6
07/10/2026, 01:10 AMerror
dynamic-script-execution
Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
Stack: Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at checkExecSyncError (node:child_process:891:11)
at execSync (node:child_process:963:15)
at brainLoop (/var/www/langston/scripts/brain-loop.ts:246:9)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
07/10/2026, 01:00 AMerror
dynamic-script-execution
Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
Stack: Error: Command failed: npx tsx /var/www/langston/scripts/temp-execution.ts
at genericNodeError (node:internal/errors:984:15)
at wrappedFn (node:internal/errors:538:14)
at checkExecSyncError (node:child_process:891:11)
at execSync (node:child_process:963:15)
at brainLoop (/var/www/langston/scripts/brain-loop.ts:241:9)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
07/10/2026, 12:31 AMerror
brain-loop-oracle-consultation
Error: 404 {"type":"error","error":{"type":"not_found_error","message":"model: claude-3-5-sonnet-latest"},"request_id":"req_011CcsRntyLN8jwDyENkCRfS"}
Stack: Error: 404 {"type":"error","error":{"type":"not_found_error","message":"model: claude-3-5-sonnet-latest"},"request_id":"req_011CcsRntyLN8jwDyENkCRfS"}
at Function.generate (/var/www/langston/node_modules/@anthropic-ai/sdk/src/core/error.ts:87:14)
at Anthropic.makeStatusError (/var/www/langston/node_modules/@anthropic-ai/sdk/src/client.ts:861:28)
at Anthropic.makeRequest (/var/www/langston/node_modules/@anthropic-ai/sdk/src/client.ts:1166:24)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async brainLoop (/var/www/langston/scripts/brain-loop.ts:198:22)
07/10/2026, 12:26 AMerror
brain-loop-oracle-consultation
Error: 404 {"type":"error","error":{"type":"not_found_error","message":"model: claude-3-5-sonnet-20241022"},"request_id":"req_011CcsR5aj5dMHeKA4SP7son"}
Stack: Error: 404 {"type":"error","error":{"type":"not_found_error","message":"model: claude-3-5-sonnet-20241022"},"request_id":"req_011CcsR5aj5dMHeKA4SP7son"}
at Function.generate (/var/www/langston/node_modules/@anthropic-ai/sdk/src/core/error.ts:87:14)
at Anthropic.makeStatusError (/var/www/langston/node_modules/@anthropic-ai/sdk/src/client.ts:861:28)
at Anthropic.makeRequest (/var/www/langston/node_modules/@anthropic-ai/sdk/src/client.ts:1166:24)
at process.processTicksAndRejections (node:internal/process/task_queues:95:5)
at async brainLoop (/var/www/langston/scripts/brain-loop.ts:198:22)
07/10/2026, 12:17 AMerror
brain-loop-key-check
Error: ANTHROPIC_API_KEY missing in environment variables
Stack: Brain loop requires Anthropic API key to consult the Oracle.
07/10/2026, 12:07 AMerror