Created
August 20, 2025 18:04
-
-
Save TurtleShip/4b021f77a596722f32de6695476f0c15 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"type": "object", | |
"properties": { | |
"command": { | |
"type": "string", | |
"description": "The command to execute" | |
}, | |
"timeout": { | |
"type": "number", | |
"description": "Optional timeout in milliseconds (max 600000)" | |
}, | |
"description": { | |
"type": "string", | |
"description": " Clear, concise description of what this command does in 5-10 words. Examples:\nInput: ls\nOutput: Lists files in current directory\n\nInput: git status\nOutput: Shows working tree status\n\nInput: npm install\nOutput: Installs package dependencies\n\nInput: mkdir foo\nOutput: Creates directory 'foo'" | |
}, | |
"run_in_background": { | |
"type": "boolean", | |
"description": "Set to true to run this command in the background. Use BashOutput to read the output later." | |
} | |
}, | |
"required": [ | |
"command" | |
], | |
"additionalProperties": false, | |
"$schema": "http://json-schema.org/draft-07/schema#" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment