cursor_agent_plan_task
Generate structured plans for achieving goals with customizable constraints. Supports text, JSON, and markdown outputs for efficient task planning and execution.
Instructions
Generate a plan for a goal with optional constraints. Prompt-based wrapper.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
constraints | No | ||
cwd | No | ||
echo_prompt | No | ||
executable | No | ||
extra_args | No | ||
force | No | ||
goal | Yes | ||
model | No | ||
output_format | No | text |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"constraints": {
"items": {
"type": "string"
},
"type": "array"
},
"cwd": {
"type": "string"
},
"echo_prompt": {
"type": "boolean"
},
"executable": {
"type": "string"
},
"extra_args": {
"items": {
"type": "string"
},
"type": "array"
},
"force": {
"type": "boolean"
},
"goal": {
"minLength": 1,
"type": "string"
},
"model": {
"type": "string"
},
"output_format": {
"default": "text",
"enum": [
"text",
"json",
"markdown"
],
"type": "string"
}
},
"required": [
"goal"
],
"type": "object"
}