import type { InstructionSize } from './agent-docs.js'; export interface AgentDocsTarget { client: 'opencode' | 'windsurf' | 'pi' | 'omp'; name: string; filePath: string; instructionSize: InstructionSize; /** Content prepended before the managed block when creating the file (e.g. YAML frontmatter for OMP rules) */ preamble?: string; /** Stale file path to clean up when migrating to a new location */ legacyFilePath?: string; } export declare const OMP_AGENT_DOCS_PREAMBLE = "---\nalwaysApply: true\ndescription: Knowledge base (open-zk-kb) persistent memory instructions\n---\n"; export declare function getAgentDocsTargets(): AgentDocsTarget[]; //# sourceMappingURL=agent-docs-targets.d.ts.map