analyze_architecture
Evaluate software architecture by analyzing descriptions, requirements, constraints, and domain specifics to ensure alignment with design goals and technical needs.
Instructions
Perform a comprehensive analysis of a software architecture
Input Schema
Name | Required | Description | Default |
---|---|---|---|
constraints | No | ||
description | Yes | ||
domain | Yes | ||
requirements | Yes |
Input Schema (JSON Schema)
{
"properties": {
"constraints": {
"items": {
"type": "string"
},
"type": "array"
},
"description": {
"type": "string"
},
"domain": {
"type": "string"
},
"requirements": {
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"description",
"requirements",
"domain"
],
"type": "object"
}