From c790921b76a5737c2fee630b8957fb8279221e5e Mon Sep 17 00:00:00 2001 From: MahendraTeja95 Date: Wed, 11 Mar 2026 16:36:05 +0530 Subject: [PATCH] add default TOOLS.md template to workspace Include a TOOLS.md template with example tool descriptions and usage guidelines, matching the pattern of existing workspace templates (SOUL.md, USER.md, IDENTITY.md). Created during onboarding so users have a starting point for customizing tool behavior. --- workspace/TOOLS.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 workspace/TOOLS.md diff --git a/workspace/TOOLS.md b/workspace/TOOLS.md new file mode 100644 index 000000000..dca910cf1 --- /dev/null +++ b/workspace/TOOLS.md @@ -0,0 +1,20 @@ +# Tools + +Custom tool descriptions and usage guidelines for the AI assistant. + +## Examples + +- `search_web`: Use for real-time information, news, weather, and current events. +- `read_file`: Read files from the workspace. Prefer this over shell commands for file content. +- `write_file`: Create or overwrite files. Use `edit_file` for partial modifications. +- `shell`: Execute shell commands. Always prefer specific tools over shell when available. + +## Guidelines + +- Prefer specific tools over generic ones (e.g., use `search_web` instead of `shell` with curl). +- Always confirm before executing destructive operations (delete, overwrite). +- Use the `spawn` tool for long-running or independent subtasks. + +--- + +Add your custom tool descriptions below this line: