devtrail-adrlisted
Install: claude install-skill Technophile522/devtrail
# DevTrail ADR Skill
Create an Architecture Decision Record (ADR) for significant architectural decisions.
> **Note**: ADRs created by AI agents are marked as `draft` and `review_required: true` by default.
## Instructions
Use this skill for major architectural decisions that affect the system structure, technology stack, or design patterns.
### 1. Gather Context
```bash
# Get current date
date +%Y-%m-%d
# Get recent changes for context
git diff --stat HEAD~1 2>/dev/null || git diff --stat
# Check for related ADRs
ls .devtrail/02-design/decisions/ADR-*.md 2>/dev/null | tail -5
```
### 2. Confirm with User
**Always confirm before creating:**
```
╔══════════════════════════════════════════════════════════════════╗
║ DevTrail ADR ║
╠══════════════════════════════════════════════════════════════════╣
║ ║
║ ⚠️ ADRs require human review after creation. ║
║ ║
║ 📋 An ADR documents architectural decisions that affect: ║
║ • System structure ║
║ • Technology choices ║
║ • Design patterns ║
║ • Integration approaches ║
║ ║