UNPKG

@stackmemoryai/stackmemory

Version:

Project-scoped memory for AI coding tools. Durable context across sessions with MCP integration, frames, smart retrieval, Claude Code skills, and automatic hooks.

16 lines (15 loc) 549 B
import { fileURLToPath as __fileURLToPath } from 'url'; import { dirname as __pathDirname } from 'path'; const __filename = __fileURLToPath(import.meta.url); const __dirname = __pathDirname(__filename); const DEFAULT_DIFFMEM_CONFIG = { endpoint: process.env.DIFFMEM_ENDPOINT || "http://localhost:8000", userId: process.env.DIFFMEM_USER_ID || "default", timeout: 5e3, maxRetries: 3, enabled: process.env.DIFFMEM_ENABLED === "true" || !!process.env.DIFFMEM_ENDPOINT }; export { DEFAULT_DIFFMEM_CONFIG }; //# sourceMappingURL=config.js.map