complexity_report
Analyze and display task complexity metrics in a clear, readable format to help developers assess and manage their AI-driven project workflows effectively.
Instructions
Display the complexity analysis report in a readable format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file | No | Path to the report file (default: .taskmaster/reports/task-complexity-report.json) | |
projectRoot | Yes | The directory of the project. Must be an absolute path. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"file": {
"description": "Path to the report file (default: .taskmaster/reports/task-complexity-report.json)",
"type": "string"
},
"projectRoot": {
"description": "The directory of the project. Must be an absolute path.",
"type": "string"
}
},
"required": [
"projectRoot"
],
"type": "object"
}