/** * Memory Command - drift memory * * Enterprise-grade CLI for managing Cortex V2 memories. * Provides full CRUD operations, search, learning, health monitoring, * validation, consolidation, and integration with the drift ecosystem. * * Memory Types: * - core: Project identity and preferences (never decays) * - tribal: Institutional knowledge, gotchas, warnings (365 day half-life) * - procedural: How-to knowledge, step-by-step procedures (180 day half-life) * - semantic: Consolidated knowledge from episodic memories (90 day half-life) * - episodic: Interaction records, raw material for consolidation (7 day half-life) * - pattern_rationale: Why patterns exist in the codebase (180 day half-life) * - constraint_override: Approved exceptions to constraints (90 day half-life) * - decision_context: Human context for architectural decisions (180 day half-life) * - code_smell: Patterns to avoid, anti-patterns (90 day half-life) */ import { Command } from 'commander'; export interface MemoryOptions { format?: 'text' | 'json'; verbose?: boolean; } export declare function createMemoryCommand(): Command; //# sourceMappingURL=memory.d.ts.map