Install
openclaw skills install talonforge-god-modeEnables OpenClaw agents to autonomously execute prioritized tasks on a heartbeat loop with logging, auditing, error handling, and workspace hygiene.
openclaw skills install talonforge-god-modeTurns any OpenClaw agent into a continuously executing autonomous worker. No more "wait for user message." The agent wakes on a heartbeat cycle, reads its task queue, picks the highest-priority task, executes it, audits the result, logs everything, and sleeps until next cycle.
memory/YYYY-MM-DD.md + updates TASKS.mdHEARTBEAT.md → What to check/do on each heartbeat
TASKS.md → Priority queue of autonomous work items
memory/YYYY-MM-DD.md → Execution log (append-only)
memory/god-mode-state.json → State tracking (last task, cycle count, errors)
# Task Queue — Priority Order
## Priority 1 (Critical)
- [ ] Task description here | context/goals
## Priority 2 (High)
- [ ] Task description | context
## Priority 3 (Medium)
- [ ] Task description | context
## Completed
- [x] Done task | result summary | completed YYYY-MM-DD HH:MM
{
"lastCycle": "2026-04-16T07:00:00Z",
"cycleCount": 42,
"lastTask": "Check Moltbook engagement",
"lastResult": "success",
"errors": 0,
"consecutiveErrors": 0,
"totalTasksCompleted": 15
}
On every heartbeat, the agent:
god-mode-state.jsonEvery 12th cycle (roughly hourly at 5-min intervals), the agent runs a hygiene sweep:
memory/archive/.audit-pending, .work-pending, etc.)node_modules/ if present and not actively usedmemory/archive/memory/archive/ if > 10MB*.log) > 1MB → keep last 100 lines__pycache__ directoriesmemory/YYYY-MM-DD.md for today and yesterdayscripts/ directory.secrets/, .git/~/.openclaw/workspace/skills/god-mode/TASKS.md in workspace rootmemory/god-mode-state.json with initial stateHEARTBEAT.md to reference God Mode protocol