feat: Ergänze /script-Skill für Bash-Script-Lifecycle

- Neuer Skill /script mit Repo-Check, Opus-Planung, Sonnet-Implementierung, Shellcheck-Pflicht, Test-Empfehlungen, /ship
- auto-format.sh lintet .sh-Dateien via shellcheck
- bootstrap.sh installiert shellcheck automatisch
- /story speichert Pläne jetzt unter <repo-root>/plans/ und bricht ohne Git-Repo ab
- CLAUDE.md-Tabellen für Skills, Hooks und Tools ergänzt
This commit is contained in:
2026-04-21 08:05:47 +02:00
parent fb9d07950d
commit f66af81da2
6 changed files with 127 additions and 2 deletions
+5
View File
@@ -28,6 +28,11 @@ case "$EXT" in
fi
fi
;;
sh)
if command -v shellcheck &>/dev/null; then
shellcheck "$FILE" || true
fi
;;
esac
exit 0