MCPcopy
hub / github.com/callumalpass/tasknotes / formatTaskSummary

Function formatTaskSummary

src/cli/helpers/formatters.ts:7–16  ·  view source on GitHub ↗
(
	task: Pick<TaskInfo, "title" | "path" | "status" | "priority">
)

Source from the content-addressed store, hash-verified

5}
6
7export function formatTaskSummary(
8 task: Pick<TaskInfo, "title" | "path" | "status" | "priority">
9): Record<string, string> {
10 return {
11 title: task.title,
12 path: task.path,
13 status: task.status,
14 priority: task.priority,
15 };
16}

Callers 1

handlerFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected