(text: string)
| 27 | * Check if text contains the "ultrathink" keyword. |
| 28 | */ |
| 29 | export function hasUltrathinkKeyword(text: string): boolean { |
| 30 | return /\bultrathink\b/i.test(text) |
| 31 | } |
| 32 | |
| 33 | /** |
| 34 | * Find positions of "ultrathink" keyword in text (for UI highlighting/notification) |
no outgoing calls
no test coverage detected