vtcode_config/constants/
tools.rs1pub const UNIFIED_SEARCH: &str = "unified_search";
6pub const UNIFIED_EXEC: &str = "unified_exec";
8pub const UNIFIED_FILE: &str = "unified_file";
10
11pub const THINK: &str = "think";
15pub const SEARCH_TOOLS: &str = "search_tools";
16pub const MCP_SEARCH_TOOLS: &str = "mcp_search_tools";
17pub const MCP_GET_TOOL_DETAILS: &str = "mcp_get_tool_details";
18pub const MCP_LIST_SERVERS: &str = "mcp_list_servers";
19pub const MCP_CONNECT_SERVER: &str = "mcp_connect_server";
20pub const MCP_DISCONNECT_SERVER: &str = "mcp_disconnect_server";
21pub const WEB_SEARCH: &str = "web_search";
22pub const WEB_FETCH: &str = "web_fetch";
23pub const FETCH_URL: &str = "fetch_url";
24pub const LIST: &str = "list";
25pub const GREP: &str = "grep";
26pub const FETCH: &str = "fetch";
27pub const EXEC_PTY_CMD: &str = "exec_pty_cmd";
28pub const SHELL: &str = "shell";
29pub const GREP_FILE: &str = "grep_file";
30pub const LIST_FILES: &str = "list_files";
31
32pub const LIST_SKILLS: &str = "list_skills";
37pub const LOAD_SKILL: &str = "load_skill";
39pub const LOAD_SKILL_RESOURCE: &str = "load_skill_resource";
41
42pub const EXEC_COMMAND: &str = "exec_command";
46pub const WRITE_STDIN: &str = "write_stdin";
47pub const RUN_PTY_CMD: &str = "run_pty_cmd";
48pub const CREATE_PTY_SESSION: &str = "create_pty_session";
49pub const LIST_PTY_SESSIONS: &str = "list_pty_sessions";
50pub const CLOSE_PTY_SESSION: &str = "close_pty_session";
51pub const SEND_PTY_INPUT: &str = "send_pty_input";
52pub const READ_PTY_SESSION: &str = "read_pty_session";
53pub const RESIZE_PTY_SESSION: &str = "resize_pty_session";
54pub const EXECUTE_CODE: &str = "execute_code";
55
56pub const READ_FILE: &str = "read_file";
60pub const WRITE_FILE: &str = "write_file";
61pub const EDIT_FILE: &str = "edit_file";
62pub const DELETE_FILE: &str = "delete_file";
63pub const CREATE_FILE: &str = "create_file";
64pub const APPLY_PATCH: &str = "apply_patch";
65pub const SEARCH_REPLACE: &str = "search_replace";
66pub const FILE_OP: &str = "file_op";
67pub const MOVE_FILE: &str = "move_file";
68pub const COPY_FILE: &str = "copy_file";
69
70pub const GET_ERRORS: &str = "get_errors";
74
75pub const REQUEST_USER_INPUT: &str = "request_user_input";
80pub const MEMORY: &str = "memory";
82pub const ASK_QUESTIONS: &str = "ask_questions";
84pub const ASK_USER_QUESTION: &str = "ask_user_question";
86pub const CRON_CREATE: &str = "cron_create";
88pub const CRON_LIST: &str = "cron_list";
90pub const CRON_DELETE: &str = "cron_delete";
92
93pub const ENTER_PLAN_MODE: &str = "enter_plan_mode";
98pub const EXIT_PLAN_MODE: &str = "exit_plan_mode";
100pub const TASK_TRACKER: &str = "task_tracker";
102pub const PLAN_TASK_TRACKER: &str = "plan_task_tracker";
104
105pub const SPAWN_AGENT: &str = "spawn_agent";
110pub const SPAWN_BACKGROUND_SUBPROCESS: &str = "spawn_background_subprocess";
112pub const SEND_INPUT: &str = "send_input";
114pub const WAIT_AGENT: &str = "wait_agent";
116pub const RESUME_AGENT: &str = "resume_agent";
118pub const CLOSE_AGENT: &str = "close_agent";
120
121pub const WILDCARD_ALL: &str = "*";