Skip to content
Open
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
4 changes: 4 additions & 0 deletions packages/core/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ import { WorkflowTool } from '../tools/workflow.js';
import { UseSkillTool } from '../tools/use-skill.js';
import { ListSkillsTool } from '../tools/list-skills.js';
import { GetSkillDetailsTool } from '../tools/get-skill-details.js';
import { DesktopAutomationTool } from '../tools/desktop-automation.js';
// Old LSP tools imports removed

import { PptOutlineTool } from '../tools/ppt/pptOutlineTool.js';
Expand Down Expand Up @@ -1170,6 +1171,9 @@ export class Config {
// TaskTool (SubAgent) is available in both CLI and VSCode environments
registerCoreTool(TaskTool, this, registry);

// DesktopAutomationTool - cross-platform desktop automation (macOS + Windows)
registerCoreTool(DesktopAutomationTool, this);

// WorkflowTool is disabled in VSCode plugin mode (not yet adapted)
// but remains available in CLI mode
if (!this.getVsCodePluginMode()) {
Expand Down
Loading