/** * Direct fragment addition - mutate current memory without evolution * * Usage: * prose add decision "What was decided" --why "Reasoning" * prose add gotcha "The issue" --solution "How to fix" * prose add insight "What was learned" --context "Situation" * prose add focus "Current goal" */ export type FragmentType = 'decision' | 'gotcha' | 'insight' | 'focus'; export interface AddOptions { why?: string; solution?: string; context?: string; } /** * Add a fragment directly to the current project memory */ export declare function addFragment(projectName: string, type: FragmentType, content: string, options?: AddOptions): void; /** * Detect project from current working directory */ export declare function detectProject(cwd: string): string | null; //# sourceMappingURL=add.d.ts.map