( _ruleContent: string | undefined, )
| 12 | export type ClassifierBehavior = 'deny' | 'ask' | 'allow' |
| 13 | |
| 14 | export function extractPromptDescription( |
| 15 | _ruleContent: string | undefined, |
| 16 | ): string | null { |
| 17 | return null |
| 18 | } |
| 19 | |
| 20 | export function createPromptRuleContent(description: string): string { |
| 21 | return `${PROMPT_PREFIX} ${description.trim()}` |
nothing calls this directly
no outgoing calls
no test coverage detected