run_parallel_claude_tasks
Execute multiple Claude prompts simultaneously, optionally with file contexts, and save outputs to individual files for efficient processing.
Instructions
Runs multiple Claude prompts in parallel, optionally with file contexts, redirecting output to files.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
queries | Yes | A list of query objects to run with Claude in parallel |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"queries": {
"description": "A list of query objects to run with Claude in parallel",
"items": {
"additionalProperties": false,
"properties": {
"contextFilePaths": {
"description": "Optional list of file paths to provide as context to Claude",
"items": {
"type": "string"
},
"type": "array"
},
"queryText": {
"description": "The text prompt to send to Claude",
"type": "string"
}
},
"required": [
"queryText"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"queries"
],
"type": "object"
}