run_command
Execute shell commands in your project directory to run npm install, git operations, tests, and other development tasks directly from your local environment.
Instructions
Execute a shell command in the projects directory. Use for running npm install, git commands, tests, etc.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| command | Yes | Shell command to execute | |
| cwd | No | Working directory (relative to projects directory or absolute) |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Shell command to execute",
"type": "string"
},
"cwd": {
"description": "Working directory (relative to projects directory or absolute)",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}