review_technical_decision
Evaluate technical decisions by assessing impact, trade-offs, alternatives, and risks. Provides architectural recommendations based on system context and constraints.
Instructions
Review and evaluate a technical decision using GLM-4.6 architectural expertise. Assesses impact, trade-offs, alternatives, risks, and provides recommendations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
context | Yes | Context including current architecture, constraints, and objectives | |
decision | Yes | The technical decision to review |
Input Schema (JSON Schema)
{
"properties": {
"context": {
"description": "Context including current architecture, constraints, and objectives",
"type": "string"
},
"decision": {
"description": "The technical decision to review",
"type": "string"
}
},
"required": [
"decision",
"context"
],
"type": "object"
}