chore: Update license information and add user settings manager script

This commit is contained in:
Alex Newman
2025-10-21 15:12:34 -04:00
parent 861cd20adf
commit 1ea692e0b0
7 changed files with 119 additions and 5 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ import type { SDKSession } from '../sdk/prompts.js';
import { logger } from '../utils/logger.js';
import { ensureAllDataDirs } from '../shared/paths.js';
const MODEL = 'claude-sonnet-4-5';
const MODEL = process.env.CLAUDE_MEM_MODEL || 'claude-sonnet-4-5';
const DISALLOWED_TOOLS = ['Glob', 'Grep', 'ListMcpResourcesTool', 'WebSearch'];
const FIXED_PORT = parseInt(process.env.CLAUDE_MEM_WORKER_PORT || '37777', 10);