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:
@@ -66,6 +66,15 @@ else
|
||||
echo "✓ ruff installiert"
|
||||
fi
|
||||
|
||||
# --- shellcheck (Bash-Lint-Hook + /script) ---
|
||||
if command -v shellcheck &>/dev/null; then
|
||||
echo "✓ shellcheck $(shellcheck --version | awk '/^version:/ {print $2}')"
|
||||
else
|
||||
echo " shellcheck fehlt – installiere via apt..."
|
||||
sudo apt-get install -y shellcheck
|
||||
echo "✓ shellcheck installiert"
|
||||
fi
|
||||
|
||||
# --- gitea-mcp Binary ---
|
||||
if [[ -x ~/go/bin/gitea-mcp ]]; then
|
||||
echo "✓ gitea-mcp vorhanden"
|
||||
|
||||
Reference in New Issue
Block a user