File size: 1,444 Bytes
064bfd6 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | // Stub for external builds - classifier permissions feature is ANT-ONLY
export const PROMPT_PREFIX = 'prompt:'
export type ClassifierResult = {
matches: boolean
matchedDescription?: string
confidence: 'high' | 'medium' | 'low'
reason: string
}
export type ClassifierBehavior = 'deny' | 'ask' | 'allow'
export function extractPromptDescription(
_ruleContent: string | undefined,
): string | null {
return null
}
export function createPromptRuleContent(description: string): string {
return `${PROMPT_PREFIX} ${description.trim()}`
}
export function isClassifierPermissionsEnabled(): boolean {
return false
}
export function getBashPromptDenyDescriptions(_context: unknown): string[] {
return []
}
export function getBashPromptAskDescriptions(_context: unknown): string[] {
return []
}
export function getBashPromptAllowDescriptions(_context: unknown): string[] {
return []
}
export async function classifyBashCommand(
_command: string,
_cwd: string,
_descriptions: string[],
_behavior: ClassifierBehavior,
_signal: AbortSignal,
_isNonInteractiveSession: boolean,
): Promise<ClassifierResult> {
return {
matches: false,
confidence: 'high',
reason: 'This feature is disabled',
}
}
export async function generateGenericDescription(
_command: string,
specificDescription: string | undefined,
_signal: AbortSignal,
): Promise<string | null> {
return specificDescription || null
}
|