- 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.
9 lines
173 B
TypeScript
9 lines
173 B
TypeScript
import type { KanbanColumnId } from '@shared/types';
|
|
|
|
export const KANBAN_COLUMN_IDS: KanbanColumnId[] = [
|
|
'todo',
|
|
'in_progress',
|
|
'done',
|
|
'review',
|
|
'approved',
|
|
];
|