chore: Workflow-Aktualisierungen — Bootstrap, Skill-Defs, Gitea-Wrapper

Aktualisiert Bootstrap-Logik, Modellangaben in Workflow-Defs und Gitea-MCP-Wrapper-Robustheit. Konsistenzverbesserungen bei Skill-Dokumentation und Hook-Definitionen.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-09 14:27:27 +02:00
co-authored by Claude Opus 4.6
parent 37f1acc214
commit 7705ade6c7
5 changed files with 171 additions and 119 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ Wenn ein benötigtes CLI-Tool fehlt: **nicht** mit Workarounds (curl, rohe API-C
## Gitea-Integration
Instanz: `https://gitea.troeger-net.org`. Bot-User `claude-code`, Token: `GITEA_TOKEN=$(secret-tool lookup user claude-code token gitea)`. Bot hat nur Collaborator-Rechte.
Instanz: `https://gitea.troeger-net.org`. Bot-User `claude-code`, Token: `~/.config/gitea/token` (Datei mit `chmod 600`). Bot hat nur Collaborator-Rechte.
## MCP
+6 -1
View File
@@ -1,3 +1,8 @@
#!/bin/bash
exec env GITEA_ACCESS_TOKEN="$(secret-tool lookup user claude-code token gitea)" \
TOKEN_FILE="$HOME/.config/gitea/token"
if [[ ! -f "$TOKEN_FILE" ]]; then
echo "Gitea-Token nicht gefunden: $TOKEN_FILE" >&2
exit 1
fi
exec env GITEA_ACCESS_TOKEN="$(cat "$TOKEN_FILE")" \
~/go/bin/gitea-mcp -host https://gitea.troeger-net.org