add_decision
Capture and document technical decisions by specifying a key, value, and reasoning for future reference, ensuring project awareness and clarity in code development.
Instructions
Record an important technical decision
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Decision key/name | |
reasoning | Yes | Reasoning behind the decision | |
value | Yes | Decision value |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "Decision key/name",
"type": "string"
},
"reasoning": {
"description": "Reasoning behind the decision",
"type": "string"
},
"value": {
"description": "Decision value",
"type": "string"
}
},
"required": [
"key",
"value",
"reasoning"
],
"type": "object"
}