(goal: string)
| 67 | ]; |
| 68 | |
| 69 | function verifiedPrPrompt(goal: string): string { |
| 70 | return [...UNATTENDED_HEADER, '', `GOAL: ${goal.trim()}`, '', ...VERIFIED_PR_PROTOCOL].join('\n'); |
| 71 | } |
| 72 | |
| 73 | /** The self-improving `maintain` recipe has SCOPES — each a conservative, provable cleanup. */ |
| 74 | export type MaintainScope = 'dead-code' | 'unused-imports' | 'unused-locals' | 'unused-params' | 'lint-fix' | 'dep-bump' | 'consolidate-dupes' | 'extract-helper'; |