TaskGetTool.ts
tools/TaskGetTool/TaskGetTool.ts
129
Lines
2881
Bytes
2
Exports
6
Imports
10
Keywords
What this is
This page documents one file from the repository and includes its full source so you can read it without leaving the docs site.
Beginner explanation
This file is part of the tool layer, which means it describes actions the system can perform for the user or model.
How it is used
Start from the exports list and related files. Those are the easiest clues for where this file fits into the system.
Expert explanation
Architecturally, this file intersects with tool-system, tasks-background-jobs. It contains 129 lines, 6 detected imports, and 2 detected exports.
Important relationships
Detected exports
OutputTaskGetTool
Keywords
taskdescriptioninputschemaoutputschemablocksstatusblockedbylazyschemaprompttaskid
Detected imports
zod/v4../../Tool.js../../utils/lazySchema.js../../utils/tasks.js./constants.js./prompt.js
Source notes
This page embeds the full file contents. Small or leaf files are still indexed honestly instead of being over-explained.
Full source
import { z } from 'zod/v4'
import { buildTool, type ToolDef } from '../../Tool.js'
import { lazySchema } from '../../utils/lazySchema.js'
import {
getTask,
getTaskListId,
isTodoV2Enabled,
TaskStatusSchema,
} from '../../utils/tasks.js'
import { TASK_GET_TOOL_NAME } from './constants.js'
import { DESCRIPTION, PROMPT } from './prompt.js'
const inputSchema = lazySchema(() =>
z.strictObject({
taskId: z.string().describe('The ID of the task to retrieve'),
}),
)
type InputSchema = ReturnType<typeof inputSchema>
const outputSchema = lazySchema(() =>
z.object({
task: z
.object({
id: z.string(),
subject: z.string(),
description: z.string(),
status: TaskStatusSchema(),
blocks: z.array(z.string()),
blockedBy: z.array(z.string()),
})
.nullable(),
}),
)
type OutputSchema = ReturnType<typeof outputSchema>
export type Output = z.infer<OutputSchema>
export const TaskGetTool = buildTool({
name: TASK_GET_TOOL_NAME,
searchHint: 'retrieve a task by ID',
maxResultSizeChars: 100_000,
async description() {
return DESCRIPTION
},
async prompt() {
return PROMPT
},
get inputSchema(): InputSchema {
return inputSchema()
},
get outputSchema(): OutputSchema {
return outputSchema()
},
userFacingName() {
return 'TaskGet'
},
shouldDefer: true,
isEnabled() {
return isTodoV2Enabled()
},
isConcurrencySafe() {
return true
},
isReadOnly() {
return true
},
toAutoClassifierInput(input) {
return input.taskId
},
renderToolUseMessage() {
return null
},
async call({ taskId }) {
const taskListId = getTaskListId()
const task = await getTask(taskListId, taskId)
if (!task) {
return {
data: {
task: null,
},
}
}
return {
data: {
task: {
id: task.id,
subject: task.subject,
description: task.description,
status: task.status,
blocks: task.blocks,
blockedBy: task.blockedBy,
},
},
}
},
mapToolResultToToolResultBlockParam(content, toolUseID) {
const { task } = content as Output
if (!task) {
return {
tool_use_id: toolUseID,
type: 'tool_result',
content: 'Task not found',
}
}
const lines = [
`Task #${task.id}: ${task.subject}`,
`Status: ${task.status}`,
`Description: ${task.description}`,
]
if (task.blockedBy.length > 0) {
lines.push(`Blocked by: ${task.blockedBy.map(id => `#${id}`).join(', ')}`)
}
if (task.blocks.length > 0) {
lines.push(`Blocks: ${task.blocks.map(id => `#${id}`).join(', ')}`)
}
return {
tool_use_id: toolUseID,
type: 'tool_result',
content: lines.join('\n'),
}
},
} satisfies ToolDef<InputSchema, Output>)