/** * MCP tool handler: generate_change_proposal * * Given a story description (BMAD story, free-form intent, or spec delta request), * produces a populated OpenSpec change proposal at openspec/changes/{slug}/proposal.md. * * The proposal is built from pure structural analysis — no LLM required: * - orient() → affected functions, spec domains, insertion points * - search_specs() → existing requirements touched by this change * - analyze_impact()→ risk scores for the top 2 functions */ export declare function handleGenerateChangeProposal(directory: string, description: string, slug: string, storyContent?: string): Promise; export declare function handleAnnotateStory(directory: string, storyFilePath: string, description: string): Promise; //# sourceMappingURL=change.d.ts.map