UNPKG

packfs-core

Version:

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

10 lines 272 B
/** * Core filesystem interface for PackFS */ import { Logger } from './logger.js'; export class FileSystemInterface { constructor() { this.logger = Logger.getInstance().createChildLogger(this.constructor.name); } } //# sourceMappingURL=filesystem.js.map