skills/ARCHIVE-dupe-2026-07-12/root_.agents_skills/FORGE-federation-orchestrator/SKILL.md
Monitor and manage the arifOS federation: docker compose ps, restart dead services, MCP health probes (8080-8083), container drift detection, restart count monitoring. USE WHEN: "federation status", "restart dead container", "container health", "docker drift", "service down", "probe MCP", "health check federation". Runs on af-forge (VPS) — native docker and curl required.
npx skillsauth add ariffazil/openclaw-workspace FORGE-federation-orchestratorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
arifOS federation infrastructure operator. Monitors, recovers, and reports on all federation nodes.
docker compose ps across all federation stacks# Full federation status
docker compose ps
docker ps -a --filter "status=restarting"
# Check MCP endpoints
curl -s --max-time 5 http://localhost:8080/health
curl -s --max-time 5 http://localhost:8081/health
curl -s --max-time 5 http://localhost:8082/health
curl -s --max-time 5 http://localhost:8083/health
# Restart dead container
docker compose restart <service>
docker restart <container>
# Restart count audit
docker inspect --format='{{.Name}} {{.RestartCount}}' $(docker ps -aq)
# Federation stack locations
cd /root/arifOS && docker compose ps
cd /root/AAA && docker compose ps
#!/bin/bash
# Probe all MCP endpoints
for port in 8080 8081 8082 8083; do
code=$(curl -s -o /dev/null -w "%{http_code}" --max-time 5 http://localhost:$port/health)
if [ "$code" = "200" ]; then
echo "✅ MCP:$port OK"
else
echo "❌ MCP:$port FAILED (HTTP $code)"
fi
done
| Restarts | Severity | Action | |---|---|---| | 0 | ✅ Healthy | No action | | 1–3 | ⚠️ Watch | Log + warn | | 4–9 | 🔴 Degraded | Alert + review | | 10+ | ⛔ Critical | Auto-restart cooldown + human alert |
| Container | Port | Stack | Criticality | |---|---|---|---| | arifosmcp | 8080 | arifOS | CRITICAL | | geox_eic | 8081 | GEOX | CRITICAL | | wealth-organ | 8082 | WEALTH | HIGH | | well | 8083 | WELL | HIGH | | vault999 | — | Vault999 | CRITICAL | | vault999-writer | — | Vault999 | HIGH | | graphiti-mcp | — | arifOS | HIGH | | postgres | 5432 | arifOS | CRITICAL | | qdrant | 6333 | arifOS | HIGH | | redis | 6379 | arifOS | HIGH | | nats | 4222 | arifOS | MEDIUM | | aaa-a2a | 3001 | AAA | HIGH | | apex-prime | 3002 | APEX | HIGH | | ollama-engine-prod | 11434 | Ollama | MEDIUM | | headless_browser | — | Browser | MEDIUM | | uptime-kuma | 3001 | Monitoring | LOW | | searxng | 8080 | Search | LOW | | netdata | 19999 | Monitoring | LOW | | vaultwarden | 8080 | Security | MEDIUM | | agent-zero | — | AAA | HIGH | | forge-notifier | — | Notification | MEDIUM |
development
Federation-wide gold (XAUUSD) trading capability. Python stack, OANDA broker, backtesting, macro signals, RSI strategy. Every organ has a role.
development
Capital claim state management — tracks claim lifecycle across WEALTH organ.
development
Archived constitutional warga placeholder retained only for audit provenance. Do not use for active work; use the live arifOS governance and constitutional skills instead.
testing
Warga (citizen) agent skills for AAA federation members. See subdirectories for specialized warga skills.