agent-ecosystem/src/shared/constants/kanban.ts
iliya 051a727eb2 feat: implement diff view functionality with read-only and accept/reject capabilities
- Introduced a comprehensive implementation plan for the diff view feature, structured in four phases: MVP (read-only), accept/reject per hunk, per-task scoping, and enhanced features.
- Phase 1 includes a read-only diff view per agent, utilizing JSONL data to display file changes.
- Defined new types for file changes and review data, and established IPC channels for fetching member changes and reading file content.
- Developed backend services for extracting file changes and aggregating review data, alongside frontend components for displaying diffs and managing state.
- Subsequent phases will enhance the diff view with accept/reject functionality, task-specific change scoping, and improved user experience features.
2026-02-24 20:25:49 +02:00

9 lines
173 B
TypeScript

import type { KanbanColumnId } from '@shared/types';
export const KANBAN_COLUMN_IDS: KanbanColumnId[] = [
'todo',
'in_progress',
'done',
'review',
'approved',
];