export type ActionKind = 'create_task' | 'build_context' | 'use_context' | 'run' | 'retry' | 'rebuild_context' | 'sync_knowledge' | 'approve_memory' | 'open_run' | 'open_diagnostics'; export interface ActionDescriptor { id: string; kind: ActionKind; label: string; description?: string; intent: 'primary' | 'secondary' | 'danger'; payload?: Record; } //# sourceMappingURL=action.d.ts.map