record_decision
Capture and log architectural or technical decisions within a project, including the decision details, reasoning, and expected impact, to maintain clarity and context for future reference.
Instructions
Record an architectural or technical decision
Input Schema
Name | Required | Description | Default |
---|---|---|---|
decision | Yes | Decision made | |
impact | No | Expected impact of the decision | |
projectId | Yes | Project ID | |
reasoning | Yes | Reasoning behind the decision |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"decision": {
"description": "Decision made",
"type": "string"
},
"impact": {
"description": "Expected impact of the decision",
"type": "string"
},
"projectId": {
"description": "Project ID",
"type": "string"
},
"reasoning": {
"description": "Reasoning behind the decision",
"type": "string"
}
},
"required": [
"projectId",
"decision",
"reasoning"
],
"type": "object"
}