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
5 changes: 5 additions & 0 deletions packages/core/src/tools/monitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -677,6 +677,11 @@ export class MonitorTool extends BaseDeclarativeTool<
required: ['command'],
additionalProperties: false,
},
true, // isOutputMarkdown
false, // canUpdateOutput
true, // shouldDefer — monitoring is infrequent
false, // alwaysLoad
'monitor watch tail log stream background',
Comment thread
wenshao marked this conversation as resolved.
);
}

Expand Down
5 changes: 5 additions & 0 deletions packages/core/src/tools/send-message.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,11 @@ export class SendMessageTool extends BaseDeclarativeTool<
required: ['task_id', 'message'],
additionalProperties: false,
},
true, // isOutputMarkdown
false, // canUpdateOutput
true, // shouldDefer — sending messages to tasks is infrequent
false, // alwaysLoad
'send message task communicate notify',
);
}

Expand Down
5 changes: 5 additions & 0 deletions packages/core/src/tools/task-stop.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,11 @@ export class TaskStopTool extends BaseDeclarativeTool<
required: ['task_id'],
additionalProperties: false,
},
true, // isOutputMarkdown
false, // canUpdateOutput
true, // shouldDefer — stopping tasks is infrequent
false, // alwaysLoad
'task stop cancel kill background',
);
}

Expand Down
5 changes: 5 additions & 0 deletions packages/core/src/tools/web-fetch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,11 @@ export class WebFetchTool extends BaseDeclarativeTool<
required: ['url', 'prompt'],
type: 'object',
},
true, // isOutputMarkdown
false, // canUpdateOutput
true, // shouldDefer — web fetching is infrequent
false, // alwaysLoad
'web fetch url http download content',
);
}

Expand Down
Loading