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>
9 lines
266 B
Bash
Executable File
9 lines
266 B
Bash
Executable File
#!/bin/bash
|
|
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
|