/** * @path file reference resolver for skills and chat. * * Supported patterns: * - @path/to/file — relative to project root (process.cwd()) * - @zoe_documents/file — resolves to ~/zoe_documents/file * - @~/path/to/file — explicit home directory path * * Resolution flow: * 1. Scan text for @reference patterns * 2. Resolve each path * 3. Read file content * 4. Replace @reference with inlined content */ /** * Resolve all @path references in a text string, inlining file contents. * Returns the text with references replaced by file contents. */ export declare function resolveReferences(text: string, projectRoot?: string): Promise;