review_spec
Analyzes specification documents for completeness, identifies gaps, and provides critical feedback on specific focus areas to ensure thorough and actionable reviews.
Instructions
Review a specification for completeness and provide critical feedback
Input Schema
Name | Required | Description | Default |
---|---|---|---|
focusAreas | No | Specific areas to focus the review on | |
spec | Yes | The specification document to review |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"focusAreas": {
"description": "Specific areas to focus the review on",
"items": {
"type": "string"
},
"type": "array"
},
"spec": {
"description": "The specification document to review",
"type": "string"
}
},
"required": [
"spec"
],
"type": "object"
}