mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-14 13:53:02 -07:00
feat(tracker): return TodoList display for tracker tools (#22060)
This commit is contained in:
@@ -13,6 +13,12 @@ export enum TaskType {
|
||||
}
|
||||
export const TaskTypeSchema = z.nativeEnum(TaskType);
|
||||
|
||||
export const TASK_TYPE_LABELS: Record<TaskType, string> = {
|
||||
[TaskType.EPIC]: '[EPIC]',
|
||||
[TaskType.TASK]: '[TASK]',
|
||||
[TaskType.BUG]: '[BUG]',
|
||||
};
|
||||
|
||||
export enum TaskStatus {
|
||||
OPEN = 'open',
|
||||
IN_PROGRESS = 'in_progress',
|
||||
|
||||
Reference in New Issue
Block a user