run-background-task
Execute long-running shell commands in the background, enabling continued interaction with the process through compatible tools while it runs.
Instructions
Runs a long-running command (like 'npm run dev') in background. When the command is running, you can interact with it using other tools.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Unique name of the task | |
shell | Yes | Shell command to run in background |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"name": {
"description": "Unique name of the task",
"type": "string"
},
"shell": {
"description": "Shell command to run in background",
"type": "string"
}
},
"required": [
"name",
"shell"
],
"type": "object"
}