Initial version of the Hermes self learning agent setup of JR IT Services.

This commit is contained in:
2026-04-21 11:53:29 +02:00
commit 7f9b0e6c5f
31 changed files with 1966 additions and 0 deletions
+34
View File
@@ -0,0 +1,34 @@
#!/usr/bin/env bash
set -Eeuo pipefail
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "$ROOT_DIR"
fail() {
echo "[ERROR] $*" >&2
exit 1
}
[[ -f README.md ]] || fail "README.md missing"
[[ -f CHANGELOG.md ]] || fail "CHANGELOG.md missing"
[[ -f compose.yaml ]] || fail "compose.yaml missing"
[[ -f .env.example ]] || fail ".env.example missing"
[[ -x scripts/alanctl ]] || fail "scripts/alanctl missing or not executable"
bash -n scripts/alanctl
if [[ -f scripts/new-release ]]; then
bash -n scripts/new-release
fi
grep -q '^## \[Unreleased\]' CHANGELOG.md || fail "CHANGELOG.md needs an [Unreleased] section"
grep -q 'HERMES_TAG=' .env.example || fail ".env.example should document HERMES_TAG"
grep -q 'BR0_DOCKER_NETWORK=' .env.example || fail ".env.example should document BR0_DOCKER_NETWORK"
if command -v docker >/dev/null 2>&1; then
docker compose -f compose.yaml config >/dev/null
else
echo "[WARN] docker not found; skipped compose validation"
fi
echo "[OK] release-check passed"