A specialized skill for decoupling long-running AI coding agents from the orchestrator using tmux for maximum task persistence.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install resilient-coding-agent
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install resilient-coding-agent using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
The Resilient Coding Agent skill is designed to manage long-running tasks for AI agents like Codex, Claude Code, and OpenCode. By decoupling the agent process from the primary orchestrator using tmux, it ensures that coding tasks continue to run even if the orchestrator restarts, crashes, or experiences network drops. This architecture provides a robust execution environment for complex engineering tasks that exceed typical session timeouts.
Built with security and reliability in mind, this skill leverages isolated temporary directories and secure prompt handling to prevent shell injection. It is an essential component for developers using Openclaw Skills who require fire-and-forget execution with automated recovery and completion notification systems.
Ensure tmux and your preferred coding agent (Codex, Claude Code, OpenCode, or Pi) are installed in your environment. To initialize a resilient session, use the following pattern:
# Create secure temp directory
TMPDIR=$(mktemp -d)
chmod 700 "$TMPDIR"
# Launch the agent in a detached tmux session
tmux new-session -d -s codex-my-task -e "TASK_TMPDIR=$TMPDIR"
tmux send-keys -t codex-my-task 'cd /your/project/dir && codex exec --full-auto "$(cat $TASK_TMPDIR/prompt)" && echo "__TASK_DONE__"' Enter
The skill organizes its operational data within a temporary directory ($TMPDIR) to maintain isolation and security:
| File | Description |
|---|---|
prompt |
The raw task instructions written by the orchestrator. |
events.jsonl |
Streaming output and logs from the coding agent. |
codex-session-id |
Extracted thread ID used for resuming specific tasks. |
done |
A marker file indicating successful task completion. |
Loading
A comprehensive workspace management tool for Openclaw Skills designed to scaffold, log, and validate AI agent behaviors and memories.

A read-only assistant for fetching and exploring IPFS and IPNS content via gateways or local nodes.

A specialized diagnostic engine designed to triage and resolve command execution failures, shell errors, and API schema mismatches.

A comprehensive framework for building, reviewing, and refactoring SwiftUI applications using Apple-native best practices and modern API standards.

A unified MCP agent that aggregates data from six major Japanese financial sources for comprehensive company and macro-economic analysis.

A comprehensive AI agent skill for fetching and searching real-time Japanese financial, corporate, and economic news via public RSS feeds.








































