Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions packages/types/src/telemetry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@ export const taskPropertiesSchema = z.object({
modelId: z.string().optional(),
diffStrategy: z.string().optional(),
isSubtask: z.boolean().optional(),
todos: z
.object({
total: z.number(),
completed: z.number(),
inProgress: z.number(),
pending: z.number(),
})
.optional(),
})

export const gitPropertiesSchema = z.object({
Expand Down
14 changes: 14 additions & 0 deletions src/core/webview/ClineProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1853,6 +1853,19 @@ export class ClineProvider
// Get git repository information
const gitInfo = await getWorkspaceGitInfo()

// Calculate todo list statistics
const todoList = task?.todoList
let todos: { total: number; completed: number; inProgress: number; pending: number } | undefined

if (todoList && todoList.length > 0) {
todos = {
total: todoList.length,
completed: todoList.filter((todo) => todo.status === "completed").length,
inProgress: todoList.filter((todo) => todo.status === "in_progress").length,
pending: todoList.filter((todo) => todo.status === "pending").length,
}
}

// Return all properties including git info - clients will filter as needed
return {
appName: packageJSON?.name ?? Package.name,
Expand All @@ -1867,6 +1880,7 @@ export class ClineProvider
diffStrategy: task?.diffStrategy?.getName(),
isSubtask: task ? !!task.parentTask : undefined,
cloudIsAuthenticated,
...(todos && { todos }),
...gitInfo,
}
}
Expand Down