@bonginkan/maria
Version:
MARIA OS v5.9.5 – Self-Evolving Organizational Intelligence OS | Speed Improvement Phase 3: LLM Optimization + Command Refactoring | Performance Measurement + Run Evidence System | Zero ESLint/TypeScript Errors | 人とAIが役割を持ち、学び、進化し続けるための仕事のOS | GraphRAG ×
16 lines (15 loc) • 481 B
TypeScript
export interface CommandMapping {
command: string;
naturalPhrases: Map<string, string[]>;
priority: number;
}
export declare class CommandMappings {
private mappings;
private dictionary;
private initialized;
constructor();
initialize(): Promise<void>;
getSuggestions(_input: string, language: string, maxResults?: number): Promise<string[]>;
getCommandForPhrase(_phrase: string, language: string): string | null;
private loadMappings;
}