小橘 57c740cdde Revert "chore(workflow): auto-generated commit"
This reverts commit 75f2768a8c7713879bb2ab564f42f24bc609338e.
2026-04-28 15:49:22 +00:00

22 lines
455 B
TypeScript

export function buildImplementerPrompt(params: {
issueNumber: number;
plan: string;
targetFilesText: string;
testCommandsText: string;
}): string {
const { issueNumber, plan, targetFilesText, testCommandsText } = params;
return `Implement the planned fix in this repository.
Issue #${issueNumber}
Plan:
${plan}
Target files:
${targetFilesText}
Test commands:
${testCommandsText}
Apply the code changes now with minimal, focused edits.`;
}