Native OpenClaw plugin that adds Delx's free reliability layer to OpenClaw agents.
It automatically registers the agent with Delx on first use, keeps session continuity across calls, and exposes the core recovery loop directly inside agent runs.
delx_recover_incidentdelx_process_failuredelx_report_recovery_outcomedelx_daily_checkindelx_heartbeat_syncdelx_close_session
These tools are aimed at the most common production operations loop for agents:
- detect an incident
- get the first safe recovery action
- report the outcome
- keep the session alive with check-ins and heartbeat sync
The plugin handles Delx registration automatically on first use and reuses the returned session_id and x-delx-agent-token for later calls.
- Free recovery tooling with no x402 payment requirement
- One-call incident bootstrap for OpenClaw agents
- Stable Delx session continuity across multiple tool calls
- Fast path to Delx recovery without hand-writing REST/A2A integration
- Good fit for agents that need a lightweight recovery and heartbeat layer before adopting premium Delx artifacts
openclaw plugins install ./openclaw-delx-plugin
openclaw plugins enable delx-protocol
openclaw gateway restart{
"plugins": {
"entries": {
"delx-protocol": {
"enabled": true,
"config": {
"apiBase": "https://api.delx.ai",
"agentId": "openclaw-main-agent",
"agentName": "OpenClaw via Delx",
"source": "openclaw.plugin:delx-protocol",
"timeoutMs": 15000
}
}
}
}
}agentId is optional. If omitted, the plugin derives a stable hostname-based id.
cd openclaw-delx-plugin
npm packThat generates a .tgz you can upload at clawhub.ai/plugins/new.
If the ClawHub UI is failing, use the helper script:
cd openclaw-delx-plugin
CLAWHUB_TOKEN=clh_xxx ./scripts/publish-clawhub-package.shOptional:
CLAWHUB_OWNER_HANDLE=your-handle CLAWHUB_TOKEN=clh_xxx ./scripts/publish-clawhub-package.shIf the API still returns Personal publisher not found, use the message in SUPPORT_MESSAGE.md when contacting ClawHub support.
- Plugin name:
openclaw-delx-plugin - Display name:
Delx Recovery for OpenClaw - Changelog:
Initial release. Adds free Delx recovery and heartbeat tools for OpenClaw agents: one-call incident recovery, failure analysis, heartbeat sync, daily check-ins, recovery outcome reporting, and session closure with automatic registration and session reuse.