Molt is a self-healing update system for self-hosted Clawdbot instances. It handles nightly updates from upstream with automatic rollback if something breaks. Key features: - Pulls from upstream, installs deps, builds, restarts gateway - Health check with stability window (catches crash loops) - Automatic rollback to pre-update commit on failure - Module manifest to define what *you* care about (personalized health checks) - Changelog generation for morning reports - Agentic recovery philosophy: capture context, let the AI fix edge cases Files: - docs/molt.md: Full PRD with architecture, config schema, and rationale - scripts/molt.sh: Reference implementation (bash) This is an RFC seeking feedback on approach and integration strategy. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 KiB
| summary | read_when | |||
|---|---|---|---|---|
| Molt: self-healing update agent for Clawdbot |
|
Molt: Self-Healing Update Agent
Lobsters molt to grow — shedding their old shell and emerging fresh. Molt gives your Clawdbot the same resilience.
Problem
Running Clawdbot on a self-hosted server (VM, Raspberry Pi, home lab) means you want automatic updates from upstream. But updates can break things:
pnpm installfails due to network issues or dependency conflicts- New code has a bug that crashes the gateway
- The gateway doesn't come back up after restart
- You're not at your desk (or even awake) when this happens
Currently, if a nightly update breaks Maja, she goes silent. You discover this hours later when she doesn't respond. You SSH in, diagnose the issue, roll back, and restart. This is manual, slow, and defeats the purpose of automation.
Philosophy: Agentic Recovery
Traditional self-updaters try to be deterministic: build complex rollback mechanisms, staging directories, blue/green deployments. That's great for production fleets, but overkill for a single self-hosted bot.
Molt takes a different approach: agentic recovery.
The insight is simple: you already have access to a very smart AI (Claude Opus) that can diagnose problems and fix them. The current "SSH in and fix it" process works — we're just automating the "SSH in" part.
Key principles:
- Try first, fix later — Don't over-engineer prevention. Try the update, see what happens.
- Smart beats deterministic — A simple rollback that fails 20% of the time + an AI that can fix the other 20% beats a complex rollback that fails 5% of the time but leaves you stuck.
- Context-aware health — "Is the gateway healthy?" depends on what you use. If Discord is broken but you only use Slack, that's not a failure.
- Observable failures — When something breaks, capture enough context for the AI (or you) to fix it.
Module Manifest
Not everyone uses every Clawdbot feature. If you don't use Discord, you don't care if the Discord adapter crashed overnight.
Molt uses a module manifest to know what you care about:
// ~/.clawdbot/molt/modules.json
{
"modules": {
// Channels you actively use
"channels": ["slack", "telegram"],
// Integrations you depend on
"integrations": ["todoist", "obsidian", "google-calendar"],
// Features you'd notice if broken
"features": ["cron", "memory", "heartbeat"],
// MCP servers you need running
"mcp": ["filesystem", "obsidian"]
},
// What counts as "healthy" for you
"healthCriteria": {
"gateway": true, // Gateway process running (always required)
"ping": true, // Gateway responds to ping (always required)
"channels": "any", // "any" = at least one channel works, "all" = all must work
"integrations": "best-effort" // Log failures but don't rollback
}
}
Health check behavior:
| Module State | channels: "any" | channels: "all" |
|---|---|---|
| Slack up, Telegram down | Healthy | Unhealthy |
| Both down | Unhealthy | Unhealthy |
| Both up | Healthy | Healthy |
This means if an update breaks Telegram but you primarily use Slack, Molt won't rollback — it'll just note "Telegram adapter failed to start" in the report.
Auto-Discovery
On first run, Molt can scan your config to suggest a manifest:
clawdbot molt init
# Scans clawdbot.json, detects enabled channels/integrations
# Generates ~/.clawdbot/molt/modules.json
# You review and tweak
Architecture
┌─────────────────────────────────────────────────────────────────┐
│ MOLT AGENT │
├─────────────────────────────────────────────────────────────────┤
│ │
│ ┌──────────┐ ┌──────────┐ ┌──────────┐ ┌──────────┐ │
│ │ Phase 0 │──▶│ Phase 1 │──▶│ Phase 2 │──▶│ Phase 3 │ │
│ │ Preflight│ │ Update │ │ Verify │ │ Report │ │
│ └──────────┘ └──────────┘ └──────────┘ └──────────┘ │
│ │ │ │ │ │
│ ▼ ▼ ▼ ▼ │
│ Acquire lock git pull Health check Slack/Log │
│ Check remote pnpm install Module checks Changelog │
│ Save state Restart Stability wait Fix attempt │
│ │
│ │ │
│ ▼ (on failure) │
│ ┌──────────────┐ │
│ │ Recovery │ │
│ │ (agentic) │ │
│ └──────────────┘ │
│ │
└─────────────────────────────────────────────────────────────────┘
Phases
Phase 0: Preflight
Before doing anything:
# Acquire lock (prevent concurrent runs)
if ! mkdir ~/.clawdbot/molt/lock 2>/dev/null; then
echo "Another molt run in progress, exiting"
exit 0
fi
trap "rmdir ~/.clawdbot/molt/lock" EXIT
# Fetch and check if there's anything to do
cd $CLAWDBOT_DIR
git fetch origin
CURRENT=$(git rev-parse HEAD)
REMOTE=$(git rev-parse origin/main)
if [ "$CURRENT" = "$REMOTE" ]; then
echo "Already up to date"
exit 0
fi
# Save state for potential rollback
echo "$CURRENT" > ~/.clawdbot/molt/pre-update-head
cp pnpm-lock.yaml ~/.clawdbot/molt/pre-update-lock.yaml
git log --oneline -1 > ~/.clawdbot/molt/pre-update-info
# Check for clean workdir (configurable)
if [ -n "$(git status --porcelain)" ]; then
echo "Workdir not clean, aborting"
# Notify but don't rollback (nothing to rollback to)
exit 1
fi
Key difference from v1: We fetch before deciding to proceed, and we don't stop the gateway yet.
Phase 1: Update
# Merge (fail-fast on conflicts)
if ! git merge origin/main --ff-only; then
echo "Merge failed (diverged history?), manual intervention needed"
exit 1
fi
# Install deps
pnpm install --frozen-lockfile --prefer-offline
# Build (if applicable)
pnpm build
# Now restart the gateway
clawdbot daemon restart
Note: We restart after install/build succeed. If pnpm install fails, the old gateway is still running — no downtime.
Phase 2: Verify
Health check with stability window:
# Wait for gateway to come up
MAX_WAIT=60
STABILITY_WINDOW=30
# Stage 1: Gateway responds to ping
waited=0
while [ $waited -lt $MAX_WAIT ]; do
if clawdbot ping --timeout 5 2>/dev/null; then
break
fi
sleep 5
waited=$((waited + 5))
done
if [ $waited -ge $MAX_WAIT ]; then
echo "Gateway didn't come up"
exit 1
fi
# Stage 2: Stability window (catch crash loops)
echo "Gateway up, waiting ${STABILITY_WINDOW}s for stability..."
sleep $STABILITY_WINDOW
if ! clawdbot ping --timeout 5 2>/dev/null; then
echo "Gateway crashed during stability window"
exit 1
fi
# Stage 3: Module health checks (based on manifest)
clawdbot molt check-modules
Module health checks are based on your manifest:
# Pseudo-code for check-modules
for channel in manifest.channels:
status = clawdbot channels status $channel
if status != "connected":
if manifest.healthCriteria.channels == "all":
fail("Channel $channel not connected")
else:
warn("Channel $channel not connected")
# Similar for integrations, mcp servers, etc.
Phase 3: Report & Recover
Always report what happened:
OLD_HEAD=$(cat ~/.clawdbot/molt/pre-update-head)
NEW_HEAD=$(git rev-parse HEAD)
# Generate changelog
git log --oneline $OLD_HEAD..$NEW_HEAD > ~/.clawdbot/molt/changelog.md
# Summarize for notification
COMMIT_COUNT=$(git rev-list --count $OLD_HEAD..$NEW_HEAD)
LAST_MSG=$(git log -1 --format=%s)
# Send notification based on outcome
case $OUTCOME in
success)
notify "Updated to $NEW_HEAD ($COMMIT_COUNT commits). Latest: $LAST_MSG"
;;
rollback)
notify "Update failed, rolled back to $OLD_HEAD. Error: $ERROR"
;;
partial)
notify "Updated but with issues: $WARNINGS"
;;
manual)
notify "Update needs manual intervention: $ERROR"
;;
esac
Recovery (Agentic)
When verification fails, Molt doesn't just blindly rollback. It:
- Captures context — Gateway logs, error messages, what failed
- Attempts simple rollback —
git checkout $OLD_HEAD && pnpm install && restart - If rollback fails, escalates — Provides context for the AI or human to fix
recover() {
# Capture what went wrong
journalctl --user -u clawdbot-gateway -n 100 > ~/.clawdbot/molt/crash-log.txt
# Try simple rollback
git checkout $(cat ~/.clawdbot/molt/pre-update-head)
pnpm install --frozen-lockfile --prefer-offline
clawdbot daemon restart
# Verify rollback worked
sleep 10
if clawdbot ping --timeout 10; then
notify "Rolled back successfully. See crash log for details."
return 0
fi
# Rollback failed - this needs human/AI intervention
notify "CRITICAL: Rollback failed. Gateway is down. Manual fix required."
notify "Crash log: ~/.clawdbot/molt/crash-log.txt"
notify "Pre-update HEAD: $(cat ~/.clawdbot/molt/pre-update-head)"
# Write instructions for the next agent/human
cat > ~/.clawdbot/molt/RECOVERY.md << 'EOF'
# Molt Recovery Required
The nightly update failed and automatic rollback also failed.
## What happened
- Update started at: $TIMESTAMP
- Old HEAD: $OLD_HEAD
- New HEAD: $NEW_HEAD (attempted)
- Error: $ERROR
## Crash log
See: ~/.clawdbot/molt/crash-log.txt
## Manual recovery steps
1. Check the crash log for the root cause
2. Try: `cd ~/clawd && git checkout $OLD_HEAD && pnpm install && clawdbot daemon restart`
3. If that fails, see CLAUDE.md for nuclear options
## Context for AI recovery
The gateway failed to start after update. Common causes:
- Missing dependency (check for "Cannot find module" in logs)
- Syntax error in new code (check for "SyntaxError" in logs)
- Config incompatibility (check for "Invalid config" in logs)
EOF
return 1
}
Configuration
// ~/.clawdbot/molt/config.json
{
// Update source
"repo": "/home/corey/clawd",
"remote": "origin",
"branch": "main",
// Health check timing
"health": {
"startupTimeoutSeconds": 60,
"stabilityWindowSeconds": 30,
"pingTimeoutSeconds": 5
},
// What to check (references modules.json)
"moduleManifest": "~/.clawdbot/molt/modules.json",
// Notifications
"notify": {
"channel": "slack",
"onSuccess": true,
"onNoChange": false,
"onRollback": true,
"onManualNeeded": true,
"rateLimitHours": 24 // Don't spam if failing repeatedly
},
// Recovery behavior
"recovery": {
"autoRollback": true,
"captureLogLines": 100,
"writeRecoveryDoc": true
},
// Safety
"requireCleanWorkdir": true,
"dryRun": false
}
State Files
All state lives in ~/.clawdbot/molt/ (persists across reboots):
| File | Purpose |
|---|---|
config.json |
Molt configuration |
modules.json |
Module manifest (what you care about) |
pre-update-head |
Git commit before current update |
pre-update-lock.yaml |
pnpm-lock before current update |
last-good |
Last commit that passed health checks |
history.jsonl |
Update history log |
changelog.md |
Human-readable changelog |
crash-log.txt |
Gateway logs on failure |
RECOVERY.md |
Instructions when manual fix needed |
lock/ |
Directory-based lock (exists = locked) |
CLI Interface
# Initialize (scan config, generate module manifest)
clawdbot molt init
# Run update cycle
clawdbot molt run
clawdbot molt run --dry-run
# Check module health (without updating)
clawdbot molt check
# View status
clawdbot molt status
# View history
clawdbot molt history
# Manual rollback
clawdbot molt rollback # to pre-update-head
clawdbot molt rollback --last-good # to last-good
clawdbot molt rollback <commit> # to specific commit
Scheduling
# Via Clawdbot cron (recommended)
clawdbot cron add \
--name "Nightly molt" \
--cron "0 2 * * *" \
--tz "UTC" \
--session isolated \
--message "Run: clawdbot molt run"
# Via system cron (alternative)
0 2 * * * /home/corey/.local/bin/clawdbot molt run >> ~/.clawdbot/molt/cron.log 2>&1
Platform Support
Linux is the primary target. The examples use bash and assume systemd.
| Platform | Status | Notes |
|---|---|---|
| Linux (systemd) | Primary | Full support |
| Linux (other) | Supported | Uses clawdbot daemon |
| macOS | Planned | Phase 2 |
| Windows | Aspirational | Phase 3, maybe |
| Docker | Different pattern | Orchestrator handles updates |
For macOS/Windows, the core logic is the same but process management differs. We'll abstract that when we get there.
Handling GPT-5.2's Valid Concerns
The review raised good points. Here's how we address them without over-engineering:
"Stopping gateway before knowing you can build"
Solution: We don't. Phase 1 does git merge, pnpm install, pnpm build before restarting. If any fail, old gateway keeps running.
"Molt depends on the thing it's updating"
Partial solution: Molt's core logic (the bash scripts / simple TypeScript) doesn't use complex Clawdbot internals. It only calls:
clawdbot daemon restart(thin wrapper around systemctl)clawdbot ping(simple health check)
If those break, yes, we have a problem. But they're stable, simple commands unlikely to break. If they do break, the AI can still use systemctl directly.
Future: Could extract Molt to a separate minimal package, but that's optimization for later.
"State in /tmp is fragile"
Fixed: State lives in ~/.clawdbot/molt/, persists across reboots.
"Need a lock"
Fixed: Directory-based lock at ~/.clawdbot/molt/lock/.
"Stability window"
Added: 30-second stability window after gateway comes up, catches crash loops.
"Blue/green deployments"
Intentionally skipped: Too complex for single-instance self-hosted. If rollback fails 5% of the time, the AI can handle that 5%.
Success Criteria
- Zero-touch updates — Nightly updates work without intervention for 30+ days
- Smart recovery — When things break, enough context is captured for AI/human to fix quickly
- No false alarms — If Discord breaks but you use Slack, you're not woken up
- Visibility — Every update cycle produces a clear log/notification
Implementation Plan
Phase 1: MVP (Your Setup)
- PRD (this document)
- Module manifest schema + init command
- Core update cycle (bash script or simple TS)
- Health check with stability window + module checks
- Simple rollback
- Slack notification
- Crash log capture
- Lock file
Phase 2: Polish
- Full CLI (
clawdbot molt *) - History tracking
- Dry-run mode
- Rate-limited notifications
- RECOVERY.md generation
Phase 3: Upstream
- Abstract platform differences
- Tests
- Documentation
- GitHub issue/PR
References
- Clawdbot Cron Jobs — scheduling
- Clawdbot Hooks — event-driven automation
- GitHub Issue #1620 — related: auto-revert config changes
- CLAUDE.md — current manual recovery guide
Molt: because your bot deserves to grow, not just break.