discover_existing_adrs
Identify and catalog all existing architectural decision records (ADRs) in a specified project directory, optionally including content for enhanced analysis.
Instructions
Discover and catalog existing ADRs in the project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
adrDirectory | No | Directory to search for ADRs | docs/adrs |
includeContent | No | Whether to include ADR content in analysis |
Input Schema (JSON Schema)
{
"properties": {
"adrDirectory": {
"default": "docs/adrs",
"description": "Directory to search for ADRs",
"type": "string"
},
"includeContent": {
"default": false,
"description": "Whether to include ADR content in analysis",
"type": "boolean"
}
},
"type": "object"
}