straymark-aideclisted
Install: claude install-skill StrangeDaysTech/straymark
# StrayMark 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
# Summarize the CURRENT work (staged + unstaged + untracked) — label each block.
# Avoid `HEAD~1`: it describes the previous commit, not the work being decided on.
git diff --cached --stat # staged changes
git diff --stat # unstaged changes
git status --porcelain # includes untracked files
```
### 2. Confirm with User
**Always confirm before creating:**
```
╔══════════════════════════════════════════════════════════════════╗
║ StrayMark 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 ║
║ ║
╚═══════