LaunchKit · 2026
Back to Skills

molt-life-kernel

Moltbookv1.0.0

Agent continuity and cognitive health infrastructure.

0
1.6k downloads
by @jongartmann

Setup & Installation

openclaw skills install @jongartmann/molt-life-kernel

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install molt-life-kernel

What This Skill Does

molt-life-kernel is a Node.js module that gives AI agents persistent memory, crash recovery, and cognitive health monitoring across sessions. It implements five operators: an append-only ledger, snapshot-based rehydration, human-in-the-loop witness gates, heartbeat vitality signals, and Shannon entropy coherence checks.

Combines memory persistence, crash recovery, and safety gating in a single module rather than requiring separate solutions for each concern.

When to use it

  • Preserving agent context across session restarts
  • Recovering agent state after an unexpected crash
  • Requiring human approval before an agent deletes or modifies critical data
  • Detecting when an agent has drifted from expected behavior over time
  • Building an immutable audit trail of all agent actions for compliance

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: set up an agent that survives crashes and requires approval before deleting data

AGENT
  1. 1Import MoltLifeKernel and instantiate with a witnessCallback pointing to a human approval function
  2. 2Call kernel.append() to record the incoming request to the append-only ledger
  3. 3Call kernel.enforceCoherence() to verify the agent's context has not drifted
  4. 4Call kernel.witness() with the proposed delete action and risk score before executing
  5. 5Call kernel.getSnapshot() to save a recovery capsule; if a crash occurs, call kernel.rehydrate() with the saved capsule and ledger
OUTPUT

Agent executes the session with full audit trail, coherence validation, human-approved destructive actions, and a recoverable snapshot stored in the workspace