/** * CLI Main Entry Point * Modernized CLI for Monomind * * github.com/monoes/monomind */ export declare const VERSION: string; export interface CLIOptions { name?: string; description?: string; version?: string; interactive?: boolean; } /** * CLI Application */ export declare class CLI { private name; private description; private version; private parser; private output; private interactive; constructor(options?: CLIOptions); /** * Run the CLI with given arguments */ run(args?: string[]): Promise; /** * Show main help */ private showHelp; /** * Show command-specific help */ private showCommandHelp; /** * Show version. `--version --json` emits the Agent Exec Protocol * capability handshake (doc/agent-exec-protocol.md §2) — machine callers * handshake before using `agent exec`/`agent scan`/org `--json`. */ private showVersion; /** * Check for updates on startup (non-blocking) * Shows notification if updates are available */ private checkForUpdatesOnStartup; /** * Load configuration file */ private loadConfig; /** * Initialize optional subsystems at startup (non-blocking, all failures are silent). * Starts the @monoes/hooks WorkerManager, wires MonoswarmCheckpointer, and builds * the unified agent registry so that packages/@monomind/* actually contribute * to the live runtime. */ private initSubsystems; /** * Handle errors */ private handleError; } export * from './commands/index.js'; export { createMCPServerManager, getMCPServerStatus, getServerManager, MCPServerManager, type MCPServerOptions, type MCPServerStatus, startMCPServer, stopMCPServer, } from './mcp-server.js'; export { benchmarkAdaptation, clearAllPatterns, clearIntelligence, deletePattern, distillLearning, endTrajectoryWithVerdict, findSimilarPatterns, flushPatterns, getAllPatterns, getIntelligenceStats, getNeuralDataDir, getPatternsByType, getPersistenceStatus, getReasoningBank, getSonaCoordinator, type IntelligenceStats, initializeIntelligence, type Pattern, recordStep, recordTrajectory, type SonaConfig, type TrajectoryStep, } from './memory/intelligence.js'; export { batchCosineSim, dequantizeInt8, flashAttentionSearch, forceBuildHNSWIndex, generateBatchEmbeddings, generateEmbedding, getHNSWStatus, getQuantizationStats, initializeMemoryDatabase, type MemoryInitResult, quantizedCosineSim, quantizeInt8, searchEntries, softmaxAttention, storeEntry, topKIndices, } from './memory/memory-initializer.js'; export { OutputFormatter, output, Progress, Spinner, type VerbosityLevel } from './output.js'; export { CommandParser, commandParser } from './parser.js'; export * from './prompt.js'; export * from './types.js'; export default CLI; //# sourceMappingURL=index.d.ts.map