refactor: Konsolidiere Workflow-Dokumentation in CLAUDE.md, lösche redundante Dateien

- Verschiebe alle Inhalte aus workflow/ (README, models, story-lifecycle, plan) in CLAUDE.md
- Lösche SETUP.md (redundant mit CLAUDE.md Aktivierungsabschnitt)
- Vereinfache Agent/Skill-Dokumentation (Querverweis zu CLAUDE.md statt Details)
- Aktualisiere Hooks-Dokumentation für neue Struktur
- Zentralisiere Skills/Agents/Hooks in einer Datei (Single Source of Truth)

Verifiziert durch: Manuelle Überprüfung aller Querverweis-Pfade, lokale Tests laufen ✓

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-19 15:13:09 +02:00
co-authored by Claude Sonnet 4.6
parent 6cb472992f
commit 4bde91a54b
18 changed files with 205 additions and 527 deletions
+2 -2
View File
@@ -23,8 +23,8 @@ case "$EXT" in
js|ts|vue|jsx|tsx)
DIR=$(dirname "$FILE")
if [[ -f "$DIR/package.json" ]] || [[ -f "$DIR/../package.json" ]]; then
if command -v npx &>/dev/null; then
npx --yes eslint --fix --quiet "$FILE" 2>/dev/null || true
if [[ -x "$DIR/node_modules/.bin/eslint" ]] || [[ -x "$DIR/../node_modules/.bin/eslint" ]]; then
npx eslint --fix --quiet "$FILE" 2>/dev/null || true
fi
fi
;;