bmad_parse_specification
Parse business specification documents in markdown, yaml, or plain text formats to generate and validate tasks, with options for auto-assignment to agents within CastPlan MCP context.
Instructions
Parse a business specification document and generate tasks
Input Schema
Name | Required | Description | Default |
---|---|---|---|
autoAssign | No | Whether to automatically assign tasks to agents | |
content | Yes | The specification content to parse | |
format | Yes | Format of the specification content | |
generateTasks | No | Whether to automatically generate tasks from requirements | |
validate | No | Whether to validate generated tasks |
Input Schema (JSON Schema)
{
"properties": {
"autoAssign": {
"default": false,
"description": "Whether to automatically assign tasks to agents",
"type": "boolean"
},
"content": {
"description": "The specification content to parse",
"type": "string"
},
"format": {
"description": "Format of the specification content",
"enum": [
"markdown",
"yaml",
"plain"
],
"type": "string"
},
"generateTasks": {
"default": true,
"description": "Whether to automatically generate tasks from requirements",
"type": "boolean"
},
"validate": {
"default": true,
"description": "Whether to validate generated tasks",
"type": "boolean"
}
},
"required": [
"content",
"format"
],
"type": "object"
}