UNPKG

@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 ×

21 lines (20 loc) 2.04 kB
/** * MARIA v3.6.0 - Minimal Public API + Multimodal * * Core exports for maximum stability and focused functionality. * Everything else is internal implementation detail. */ export { IntelligentRouterService } from "./services/intelligent-router/app/IntelligentRouterService"; export type { RoutingDecision } from "./services/routing/model-routing"; export { System1MemoryManager } from "./services/memory-system/system1-memory"; export { System2MemoryManager } from "./services/memory-system/system2-memory"; export { FileSystemService } from "./services/file-system/FileSystemService"; export { EnterpriseSecurityIntegration, SecureSlashCommandAdapter, RBACCommandGuard, createEnterpriseSecurityIntegration, type SecurityIntegrationConfig, type SecurityMetrics, type SecurityReport, type AuthenticatedUser, type PermissionSet, } from "./services/security"; export { MemoryPortabilityFramework, createMemoryPortabilityFramework, type PortabilityConfig, type ExportRequest, type ImportRequest, type PortabilityResult, } from "./services/memory-system/data-porter-system/MemoryPortabilityFramework"; export { autoSaveDocument, autoSaveMultipleDocuments, classifyDocument, DocumentType, generateDocumentFilename, saveDocumentToFile } from "./services/document-auto-save"; export { IntelligentDocumentSaveService, intelligentSave, autoSaveIntelligently, autoSaveMultipleIntelligently, type IntelligentSaveOptions, type IntelligentSaveResult } from "./services/intelligent-document-save"; export { FilenameInferenceService } from "./services/code-intent/FilenameInferenceService"; export { EnterpriseDataPorter, type DataPorterConfig, } from "./services/memory-system/data-porter-system/enterprise-data-porter"; export { AccessControlManager, type User, type Role, type PermissionSet as AccessControlPermissionSet, } from "./services/memory-system/enterprise/access-control-manager"; export { commandInfo, commandCategories, commandGroups, allCommands, categories } from './lib/command-groups'; export declare const MARIA_VERSION = "3.6.0";