UNPKG

packfs-core

Version:

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

11 lines 715 B
/** * Semantic filesystem interface for PackFS * Based on LSFS research: intent-driven operations instead of traditional POSIX methods */ export { SemanticFileSystemInterface, SemanticIntentValidator } from './interface.js'; export { MemorySemanticBackend } from './memory-semantic-backend.js'; export { DiskSemanticBackend } from './disk-semantic-backend.js'; export { SemanticCompatibilityAdapter, createSemanticFileSystem, createEnhancedFileSystem } from './compatibility-adapter.js'; export { TraditionalToSemanticConverter, SemanticIntentOptimizer, FileTargetProcessor, NaturalLanguageProcessor, WorkflowBuilder } from './intent-processor.js'; export * from './types.js'; //# sourceMappingURL=index.d.ts.map