mirror of
https://github.com/turnstonelabs/turnstone.git
synced 2026-08-12 23:12:23 -06:00
16 lines
544 B
JSON
16 lines
544 B
JSON
{
|
|
"name": "task",
|
|
"description": "Delegate a general-purpose task to an autonomous sub-agent. The agent inherits all tools and can read, write, edit, search, and run commands. Use task for work that requires file modifications or command execution. Provide a clear, self-contained prompt.",
|
|
"parameters": {
|
|
"type": "object",
|
|
"properties": {
|
|
"prompt": {
|
|
"type": "string",
|
|
"description": "Complete task description for the sub-agent."
|
|
}
|
|
},
|
|
"required": ["prompt"]
|
|
},
|
|
"primary_key": "prompt"
|
|
}
|