UNPKG

packfs-core

Version:

Semantic filesystem operations for LLM agent frameworks with natural language understanding. See LLM_AGENT_GUIDE.md for copy-paste examples.

18 lines 1.05 kB
/** * Semantic filesystem interface for PackFS * Based on LSFS research: intent-driven operations instead of traditional POSIX methods */ // Core semantic interface export { SemanticFileSystemInterface, SemanticIntentValidator } from './interface.js'; // Concrete implementations export { MemorySemanticBackend } from './memory-semantic-backend.js'; export { DiskSemanticBackend } from './disk-semantic-backend.js'; // Backward compatibility export { SemanticCompatibilityAdapter, createSemanticFileSystem, createEnhancedFileSystem } from './compatibility-adapter.js'; // Intent processing utilities export { TraditionalToSemanticConverter, SemanticIntentOptimizer, FileTargetProcessor, NaturalLanguageProcessor, WorkflowBuilder } from './intent-processor.js'; // All types export * from './types.js'; // Semantic Search API // export { SemanticSearchEngine, SemanticSearchOptions, SemanticSearchResult, NaturalLanguageQuery } from './SemanticSearchAPI.js'; // Temporarily disabled due to missing dependencies //# sourceMappingURL=index.js.map