Skip to content

Commit 594be9f

Browse files
committed
update todos to done
1 parent f2b4712 commit 594be9f

3 files changed

Lines changed: 10 additions & 7 deletions

File tree

src/core/taskmaster/TaskMaster.ts

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ export class TaskMaster {
184184
// Method for Task Generation
185185
// ==============================================
186186

187-
// TODO: validate
187+
// TODO: done
188188
/**
189189
* @description Parses a PRD file to generate tasks
190190
* @param inputFile Path to the PRD file
@@ -238,7 +238,7 @@ export class TaskMaster {
238238
// Method for Task Listing and Viewing
239239
// ==============================================
240240

241-
// TODO: validate
241+
// TODO: done
242242
/**
243243
* @description Lists tasks in a visually formatted tree structure
244244
* @param tasks Tasks data to render
@@ -343,7 +343,7 @@ export class TaskMaster {
343343
return output;
344344
}
345345

346-
// TODO: in-progress
346+
// TODO: done
347347
/**
348348
* @description Lists tasks with optional status filtering and subtask display
349349
* @param quickly List tasks quickly
@@ -376,7 +376,7 @@ export class TaskMaster {
376376
}
377377
}
378378

379-
// TODO: in-progress
379+
// TODO: done
380380
/**
381381
* @description Shows details of a specific task by ID
382382
* @param id Task ID (integer or hierarchical ID like 1.1, 2.3, etc.)
@@ -393,7 +393,8 @@ export class TaskMaster {
393393
oraOptions,
394394
);
395395
}
396-
// TODO: in-progress
396+
397+
// TODO: done
397398
/**
398399
* @description Shows the next available task to work on
399400
*/

src/core/taskmaster/exec.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,9 @@ export async function tmaiManageAsync() {
124124
]);
125125
await tmai.listAsync(tasks, validatedStatus, quickly, withSubtasks);
126126
} else if (tmaiListNavMenu === "tmai-show") {
127-
console.log(await tmai.listQuickAsync(tasks, TASKS_STATUSES.join(","), true));
127+
console.log(
128+
await tmai.listQuickAsync(tasks, TASKS_STATUSES.join(","), true),
129+
);
128130
const { taskId } = await inquirer.prompt({
129131
type: "input",
130132
name: "taskId",

src/prompt.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ export const tmaiManageMenu_prompt = [
161161
},
162162
];
163163

164-
// TODO: in-progress
164+
// TODO: done
165165
// ==============================
166166
// Task list & navigation menu
167167
// ==============================

0 commit comments

Comments
 (0)