@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.
18 lines (17 loc) • 708 B
JavaScript
import { fileURLToPath as __fileURLToPath } from 'url';
import { dirname as __pathDirname } from 'path';
const __filename = __fileURLToPath(import.meta.url);
const __dirname = __pathDirname(__filename);
const DEFAULT_PLANNER_MODEL = process.env.STACKMEMORY_MM_PLANNER_MODEL || "claude-sonnet-4-20250514";
const DEFAULT_REVIEWER_MODEL = process.env.STACKMEMORY_MM_REVIEWER_MODEL || DEFAULT_PLANNER_MODEL;
const DEFAULT_IMPLEMENTER = process.env.STACKMEMORY_MM_IMPLEMENTER || "codex";
const DEFAULT_MAX_ITERS = Number(
process.env.STACKMEMORY_MM_MAX_ITERS || 2
);
export {
DEFAULT_IMPLEMENTER,
DEFAULT_MAX_ITERS,
DEFAULT_PLANNER_MODEL,
DEFAULT_REVIEWER_MODEL
};
//# sourceMappingURL=constants.js.map