/** * Status and classification types */ /** Built-in agent types */ export type AgentType = 'coder' | 'architect' | 'supervisor' | 'custom'; /** Execution status for agents and workflows */ export declare const STATUS_VALUES: readonly ["done", "blocked", "error", "rate_limited"]; /** Execution status for agents and workflows */ export type Status = typeof STATUS_VALUES[number]; /** How a rule match was detected */ export type RuleMatchMethod = 'aggregate' | 'auto_select' | 'structured_output' | 'phase3_tag' | 'ai_judge'; /** Permission mode for tool execution (provider-agnostic) */ export type PermissionMode = 'readonly' | 'edit' | 'full'; //# sourceMappingURL=status.d.ts.map