import type { ProjectMemory } from './memory.js'; /** * Generate usage instructions for agents to use prose */ export declare function generateInstructions(): string; /** * Ensure a CLAUDE.md.template exists, creating it from CLAUDE.md if necessary */ export declare function ensureTemplate(rootPath: string): void; /** * Inject project memory into CLAUDE.md if a template exists */ export declare function injectMemory(rootPath: string, memory: ProjectMemory): void; /** * Generate SKILL.md content from project memory * This creates a Claude Code skill that teaches Claude how to use prose for context */ export declare function generateSkillContent(memory: ProjectMemory, projectName: string): string; /** * Write or update the flash skill file */ export declare function writeSkillFile(rootPath: string, memory: ProjectMemory, projectName: string): void; /** * Create initial skill file structure (for prose init) */ export declare function initSkillFile(rootPath: string, projectName: string): void; //# sourceMappingURL=injector.d.ts.map