ArifOS arifos-status

name: arifos-status

install
source · Clone the upstream repo
git clone https://github.com/ariffazil/arifOS
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ariffazil/arifOS "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/archive/openclaw-workspace/skills/arifos-status" ~/.openclaw/skills/ariffazil-arifos-arifos-status-844269 && rm -rf "$T"
manifest: archive/openclaw-workspace/skills/arifos-status/skill.yaml
source content

name: arifos-status description: Check arifOS and OpenClaw system status version: 1.0.0 author: arifOS type: command

command: | echo "📊 arifOS System Status" echo "========================" echo "" echo "🦞 OpenClaw:" openclaw status 2>/dev/null | grep -E "(Gateway|Agents|Memory)" | head -5 || echo " Status check failed" echo "" echo "🧠 Memory:" openclaw memory status 2>/dev/null | grep -E "(Indexed|Provider)" | head -3 || echo " Memory check failed" echo "" echo "🐳 Containers:" docker ps --format "table {{.Names}}\t{{.Status}}" 2>/dev/null | grep -E "(openclaw|arifos|qdrant)" || echo " Docker check failed"

patterns:

  • "status"
  • "system status"
  • "check health"
  • "how are you"

response: | 📊 Checking arifOS system status...