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 |
testing
OpenClaw edge agent bridge — operational triage, doctor, restart, and A2A bridge routing for the federation edge (Telegram surface). USE WHEN: "openclaw unhealthy", "gateway down", "edge bot not responding", "a2a bridge disconnected", "watchdog tripped", "openclaw doctor", "openclaw restart". NOT for token/security audit — use FORGE-telegram-audit.
tools
Generate images, videos, TTS, voice clone, and music via MiniMax MCP server. Use when user asks to "draw", "generate image", "create picture", "make a photo", "text to image", "image generation".
testing
Single load-bearing constitutional-judgment skill. Routes all F1–F13, verdict, hold, seal, scope, authority and floor-check calls through the live arif_judge surface. Replaces 7 overlapping predecessors (arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge, arifos-constitutional-judge).
development
MANDATORY LSP grounding gate BEFORE any code mutation on .ts, .py, .js, .tsx, .jsx files. Forces the agent to read real-time compiler diagnostics and structural project context before editing — eliminating blind guesses and anchoring every mutation in F2 (TRUTH). Routes through arifOS kernel (:8088) for centralized gate logic.