prompt_split
Analyze complex prompts and split them into sub-tasks with assigned agents and dependency ordering. Returns a structured plan for execution.
Instructions
Analyze a complex prompt and split it into sub-tasks with agent assignments. Returns a structured plan showing which sub-agent (gemini, codex, openclaw, local LLM) handles each part, dependency ordering, and the actual prompts to send. Each subtask includes a suggested model that the user can override before execution. IMPORTANT: Always present the plan to the user for review before executing. Strategy: "auto" (default), "gemini", "local", or "heuristic".
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| prompt | Yes | The complex prompt to analyze and split into sub-tasks. | |
| strategy | No | How to analyze the prompt: "auto" (default): tries gemini, then local LLM, then heuristic "gemini": use Gemini CLI for smart analysis "local": use local LLM (LM Studio/Ollama) for analysis "heuristic": pure keyword splitting (no LLM, instant) | auto |