2083cb0710
Extract hardcoded GPT apply_patch permission logic into a reusable module
to ensure consistent behavior across all agents. This prevents GPT models
from using the unreliable apply_patch tool while allowing other models.
- Add gpt-apply-patch-guard.ts with GPT_APPLY_PATCH_GUIDANCE and getGptApplyPatchPermission
- Update Hephaestus agent to use centralized permission logic
- Update Sisyphus-Junior agent to use centralized permission logic
- Update all GPT prompt builders to reference shared guidance constant
🤖 Generated with assistance of OhMyOpenCode
8 lines
382 B
TypeScript
8 lines
382 B
TypeScript
import { isGptModel } from "./types"
|
|
|
|
export const GPT_APPLY_PATCH_GUIDANCE = "Use the `edit` and `write` tools for file changes. Do not use `apply_patch` on GPT models - it is unreliable here and can hang during verification."
|
|
|
|
export function getGptApplyPatchPermission(model: string): Record<string, "deny"> {
|
|
return isGptModel(model) ? { apply_patch: "deny" as const } : {}
|
|
}
|