Keyoku Plugin Replaces OpenClaw's Static Heartbeat with Memory-Driven Autonomy

What Keyoku Changes
OpenClaw's current heartbeat system reads a static HEARTBEAT.md file on a schedule, responding with HEARTBEAT_OK. The agent has no connection between this heartbeat and its memory, lacking awareness of urgency, dropped tasks, or changes.
Keyoku replaces this by making the heartbeat check the agent's actual memory store every tick. It scans for items needing attention: stalled work, dropped commitments, conflicting information, quiet relationships, and patterns in your work.
How It Works
When the memory scan triggers an alert, the agent evaluates the full situation using all its knowledge, including a knowledge graph of people, projects, and their connections. Actions are then derived from memory, not from a pre-written checklist.
Instead of HEARTBEAT_OK, you might get a message like: "You mentioned you'd circle back on this last week. There are a couple things still open. Want me to help move them forward?"
Features and Architecture
- Three autonomy levels: observe (log only), suggest (surface to user, default), act (handle it directly).
- Behavioral logic: Backs off if ignored, won't nag about the same thing twice, treats urgent items differently from items that can wait.
- Enhanced memory layer: Deduplication, conflict detection, decay so stale information fades, knowledge graph that feeds into the heartbeat.
- Local execution: Runs a local Go engine with SQLite + HNSW on your machine.
- LLM integration: LLM calls go to your existing provider for extraction and analysis.
Getting Started
Install with: npx @keyoku/openclaw init
The stated goal is to make any agent autonomous, with OpenClaw as the starting point.
📖 Read the full source: r/clawdbot
👀 See Also

Lightning MLX: Fast Local AI Engine for Apple Silicon Agentic Use Delivers 220 tok/s on Qwen 35B-A3B
Lightning MLX claims the fastest local AI inference on Apple Silicon, optimized for coding agents and tool calling. Benchmarks show 40.67 tok/s on Qwen3.6-27B and 220.86 tok/s on Qwen3.6-35B-A3B from a MacBook Max M5 (128GB).

Claude Code UltraPlan Workflow Changes and Performance Observations
Claude Code UltraPlan introduces a cloud-based planning workflow with terminal launch, browser review interface, and execution options. Testing showed approximately 2x faster repeated runs than local planning, with mixed quality improvements.

mnemos: A Persistent Memory Layer for AI Coding Agents (Go, MCP-Native, No Python)
mnemos is a Go-based MCP-native memory layer for AI coding agents. The author built a verifier to measure lift: +40% aggregate on read-side scenarios, but only 53% write-side capture rate after iterative fixes.

OmniCoder-9B: 9B Parameter Coding Agent Fine-Tuned on 425K Agentic Trajectories
Tesslate released OmniCoder-9B, a 9-billion parameter coding agent model fine-tuned on Qwen3.5-9B's hybrid architecture. It was trained on 425,000+ curated agentic coding trajectories from Claude Opus 4.6, GPT-5.4, GPT-5.3-Codex, and Gemini 3.1 Pro.