/** * Priority Detector - Auto-detect task priority from goal text * @requirement FREE-TIER-002 - Priority System * * Cursor Integration: Helps Cursor understand task priority for better context */ import { Priority } from './task-queue.js'; export declare class PriorityDetector { /** * Auto-detect priority from goal text * Cursor Integration: Cursor can use this to understand task urgency * * @param goal - Task goal text * @returns Detected priority level */ static detect(goal: string): Priority; /** * Get all keywords for a priority level * Useful for documentation or UI */ static getKeywords(priority: Priority): string[]; /** * Get all priority keywords * Useful for documentation */ static getAllKeywords(): Record; }