UNPKG

packfs-core

Version:

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

17 lines 455 B
/** * Path validation utilities */ import type { ValidationResult } from './types.js'; export declare class PathValidator { private readonly sandboxPath?; constructor(sandboxPath?: string); /** * Validate and normalize a file path */ validate(inputPath: string): ValidationResult; /** * Check if path is within sandbox */ isInSandbox(inputPath: string): boolean; } //# sourceMappingURL=path-validator.d.ts.map