MCPcopy Create free account
hub / github.com/Pimzino/claude-code-spec-workflow / findInProgressTask

Method findInProgressTask

src/dashboard/parser.ts:572–583  ·  view source on GitHub ↗
(tasks: Task[])

Source from the content-addressed store, hash-verified

570 }
571
572 private findInProgressTask(tasks: Task[]): string | undefined {
573 for (const task of tasks) {
574 if (!task.completed) {
575 return task.id;
576 }
577 if (task.subtasks) {
578 const subTaskId = this.findInProgressTask(task.subtasks);
579 if (subTaskId) return subTaskId;
580 }
581 }
582 return undefined;
583 }
584
585 private formatDisplayName(name: string): string {
586 return name

Callers 1

getSpecMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected