( agentName: string | undefined, options: NormalizedWorkflowOptions, )
| 119 | } |
| 120 | |
| 121 | export function shouldInjectFullPlanningPrompt( |
| 122 | agentName: string | undefined, |
| 123 | options: NormalizedWorkflowOptions, |
| 124 | ): boolean { |
| 125 | return shouldModifyPrompts(options) && isPlanningAgent(agentName, options); |
| 126 | } |
| 127 | |
| 128 | export function shouldInjectGenericPlanReminder( |
| 129 | agentName: string | undefined, |
no test coverage detected