devtrail-aideclisted
Install: claude install-skill Technophile522/devtrail
# DevTrail AIDEC Skill
Create an AI Decision (AIDEC) document to record technical decisions and the alternatives considered.
## Instructions
Use this skill when you've made a decision between multiple technical approaches and want to document the reasoning.
### 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
```
### 2. Confirm with User
**Always confirm before creating:**
```
╔══════════════════════════════════════════════════════════════════╗
║ DevTrail AIDEC ║
╠══════════════════════════════════════════════════════════════════╣
║ ║
║ 📋 AIDEC documents a decision between alternatives. ║
║ ║
║ Please provide: ║
║ 1. Decision title (what was decided) ║
║ 2. Alternatives considered (2-3 options) ║
║ 3. Which alternative was chosen and why ║
║ ║
╚══════════════════════════════════════════════════════════════════╝
```
### 3. Determine Sequence Number
```bash
# Count existing AIDECs for today
ls .devtrail/07-ai-audit/decisions/AIDEC-$(date +%Y-%m-%d)-*.md 2>/dev/null | wc -l
```
### 4.