Get Started
This guide shows how to set tool type, method, handler, and schemas so your workflow runs reliably from the start.
Custom Tool).Use this for file system actions such as List files, Read file, and Write file.
Executes JavaScript from the editor. The central entry function is toolEntry.
Integrates native plugins. The method is typically Custom Tool.
Start with a small, clear schema and extend it only when needed.
{
"type": "object",
"properties": {
"project_path": { "type": "string" },
"pattern": { "type": "string" }
},
"required": ["project_path"]
}
A good output schema includes success data and a clear error field.