skills/docker-thermodynamics/SKILL.md
Cognitive lens: containers as thermodynamic/entropy systems — resource pressure, safe intervention boundaries.
npx skillsauth add ariffazil/openclaw-workspace docker-thermodynamicsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
Security scan pending...
This skill is queued for security scanning. Results will appear when the scan completes.
Docker containers are not black boxes — they are thermodynamic systems. Each container consumes CPU (energy), memory (state), disk (storage), and network (exchange). Think of container management as entropy management: every action either reduces chaos (diagnosis, restart, prune) or increases it (untracked modifications, accumulated artifacts, unmonitored services).
The goal is not to memorize Docker commands — it is to understand the thermodynamic state of the container fleet. Is entropy rising? Are resources bottlenecking? Is data at risk of irreversible loss?
Diagnose before acting:
docker ps — what is running, what is dead?docker stats --no-stream — who is consuming resources?docker system df — how much disk entropy has accumulated?Safe operations (proceed without ask):
docker compose config (validate, no mutation)docker compose ps (state inspection)docker logs --tail=N <service> (observation)docker compose restart <service> (reversible)docker compose up -d <service> (restore known state)Dangerous operations (888 HOLD required):
docker system prune -af --volumes (irreversible disk purge)docker rm -f <container> (data loss risk)docker volume rm <volume> (permanent data destruction)docker rmi <image> if image is actively useddocker system df to understand what will be lostThese are specific errors. Actively avoid them:
docker system prune -af as first response to any problem (panic pruning)Applies to:
/root/compose/docker-compose.ymlDoes NOT apply to:
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.