- Move core agent engine to packages/core/ - Add packages/types/ for shared TypeScript types - Add packages/utils/ for utility functions - Add apps/cli/ for command-line interface - Add apps/gateway/ for NestJS WebSocket gateway - Add apps/server/ for REST API server - Restructure desktop app (electron/ → src/main/, src/preload/) - Update pnpm workspace configuration - Remove legacy src/ directory Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
8 lines
290 B
TypeScript
8 lines
290 B
TypeScript
import { join } from "node:path";
|
|
import { homedir } from "node:os";
|
|
|
|
/** Root data directory: ~/.super-multica */
|
|
export const DATA_DIR = join(homedir(), ".super-multica");
|
|
|
|
/** Cache directory for downloaded media files */
|
|
export const MEDIA_CACHE_DIR = join(DATA_DIR, "cache", "media");
|