Install
openclaw skills install clawpilotExpert skill for OpenClaw (v2026.2.19) — self-hosted AI gateway connecting chat apps (WhatsApp, Telegram, Discord, Slack, iMessage, Signal, LINE, Matrix, Tea...
openclaw skills install clawpilotBefore any other action, run the staleness check:
bash scripts/check_updates.sh
UP_TO_DATE: Proceed normally.STALE: The skill references may be outdated. Before proceeding with the user's task:
references/security.mdbash scripts/mark_updated.sh <latest-version>bash scripts/mark_updated.sh <current-version>This check uses a .last_update_check marker file. The threshold is 7 days (configurable via first argument).
Every configuration action MUST pass a security review before recommending it.
For each setting change, evaluate:
When recommending configuration, always present the secure baseline first, then explain trade-offs of relaxing it.
/extension + /cdp require gateway-token)Always verify user's version is >= 2026.2.19 before any other advice.
| Task | Command |
|---|---|
| Install | npm install -g openclaw@latest |
| Onboard | openclaw onboard --install-daemon |
| Start gateway | openclaw gateway --port 18789 |
| Login channel | openclaw channels login |
| Health check | openclaw health |
| Security audit | openclaw security audit --deep |
| Skill safety scan | openclaw skills scan <path> |
| Diagnostics | openclaw doctor |
| Update | openclaw update |
| View logs | openclaw logs |
| Status (redacted) | openclaw status --all |
| Agent management | openclaw agents list |
| iOS/macOS node | openclaw nodes |
| Device management | openclaw devices remove/clear |
| Cron (staggered) | openclaw cron add --stagger/--exact |
| Spawn subagent | /subagents spawn |
| Shell completion | openclaw completion |
Run openclaw --help for full command list.
Use the reference files bundled in this skill as the primary source. They cover the core config schema, security hardening (including CVEs, OWASP mapping, NIST alignment), cloud deployment, and multi-agent routing.
Fetch from https://docs.openclaw.ai/ only when:
Full docs index: https://docs.openclaw.ai/llms.txt
Chat Apps --> Gateway (single process) --> AI Agent(s)
| |
+- Session manager +- Workspace (SOUL.md, AGENTS.md, MEMORY.md)
+- Channel routing +- Auth profiles
+- Tool policies +- Memory (daily logs + vector search)
+- Sandbox (Docker) +- Sessions
+- Cron scheduler +- Skills
+- Safety scanner +- Subagents
+- Agent mgmt RPC +- iOS/macOS nodes
127.0.0.1:18789 by default.agents.create, agents.update, agents.delete).~/.openclaw/openclaw.json (JSON5 format). OPENCLAW_HOME env var overrides home directory for path resolution.Always start from the secure baseline and relax only with justification. Key defaults: bind: "loopback", dmPolicy: "pairing", sandbox: { mode: "non-main" }, redactSensitive: "tools".
sessions.patch, sessions.delete)/extension and /cdp endpointsFull baseline template and memory system config: see Configuration Reference and Security Hardening.
npm install -g openclaw@latestopenclaw onboard --install-daemonopenclaw channels login (select channel)openclaw gateway --port 18789openclaw security audit --deep — fix any findingsopenclaw skills scan — verify installed skills are safeopenclaw health and open http://127.0.0.1:18789/openclaw channels login -> select channelopenclaw.json (never use "*" for production)dmPolicy: "pairing" or "allowlist"requireMention: truePreferred: Tailscale Serve — keeps loopback bind, no public exposure.
Alternative: SSH tunnel — ssh -N -L 18789:127.0.0.1:18789 user@host
Never: Bind to 0.0.0.0 without auth token + firewall.
openclaw doctor — config validationopenclaw health — gateway statusopenclaw logs — recent logsopenclaw status --all — full state (secrets redacted)openclaw memory search "topic" — search agent memoryopenclaw sessions list — view active sessions/tmp/openclaw/openclaw-YYYY-MM-DD.logWhen user asks about extending OpenClaw with new skills or asks "what skills are available":
npx clawhub@latest install <skill-slug>~/.openclaw/skills/ (global) or <project>/skills/ (workspace)Security: Third-party skills execute as trusted code. Hundreds of malicious skills were discovered on ClawHub in early 2026. Always:
openclaw skills scan <skill-path> before installing (v2026.2.6+)exec, browser, or web_fetch toolsFor skills config schema (load order, per-skill env/apiKey, hot reload), see Configuration Reference. For skill ecosystem URLs (ClawHub registry, community lists), see Security Hardening — Skill Supply Chain.
Prefer native CLI when available:
openclaw security audit --deep,openclaw doctor,openclaw config getprovide authoritative results. Use the scripts below only for deeper heuristic checks or when the CLI is unavailable.
Run these scripts against the local OpenClaw installation. All accept --state-dir PATH to override ~/.openclaw. Scripts use heuristic grep-based parsing of JSON5 config — results are best-effort.
bash scripts/security_audit.sh [--state-dir ~/.openclaw]
Check: version/CVE status, file permissions, hardcoded credentials, network binding, DM policies, sandbox config, tool policies, log redaction, plugins, skill supply chain (exfiltration/reverse shell/obfuscation patterns), Control UI security (CVE-2026-25253), reverse proxy config (CVE-2026-24763), gateway process exposure, synced folder detection, session secret scanning. Maps to OWASP Agentic Top 10 and NIST CSF. Return CRITICAL/WARNING/PASS summary.
bash scripts/config_inspector.sh [--section gateway|channels|agents|tools|sessions|logging|all]
Parse openclaw.json and report security-relevant settings per section with colored recommendations.
bash scripts/prompt_checker.sh [--workspace PATH]
Scan AGENTS.md, SOUL.md, USER.md, CLAUDE.md, and other bootstrap files for: missing security guardrails, overly permissive instructions, hardcoded secrets, infrastructure exposure, prompt injection vulnerabilities, and missing identity boundaries.
bash scripts/session_scanner.sh [--agent AGENT_ID] [--max-files 20] [--deep]
Scan .jsonl session files for leaked credentials (AWS keys, GitHub PATs, API keys, private keys, bot tokens, Google API keys). With --deep: also check for IP addresses, base64 blobs, file paths, and old files.
security_audit.sh (abbreviated):
============================================
1. Version & Known Vulnerabilities
============================================
[PASS] Version 2026.2.19 includes CVE-2026-25253/24763/25157 patches
[PASS] Version includes skill/plugin safety scanner (v2026.2.6+)
...
============================================
Audit Summary
============================================
0 CRITICAL
2 Warnings
3 Informational
8 Passed
config_inspector.sh (abbreviated):
=== Gateway Configuration ===
Mode: local (default)
Bind: loopback (default)
Port: 18789 (default)
✓ Loopback bind (secure default)
session_scanner.sh (abbreviated):
Found 5 session file(s) to scan (max: 20)
--- agents/main/sessions/2026-02-10.jsonl (1.2M) ---
[CRITICAL] AWS Access Key: 1 match(es)
=== Summary ===
1 file(s) contain potential secrets (1 total matches)
All scripts require bash and standard Unix utilities (grep, awk, wc, stat). If a script fails:
~/.openclaw not found: Pass --state-dir PATH to point to the actual OpenClaw home, or set OPENCLAW_HOME.jq not installed: config_inspector.sh uses heuristic grep-based parsing and does NOT require jq. Other scripts also avoid jq.~/.openclaw/. Do not run as root.session_scanner.sh looks in agents/*/sessions/*.jsonl. If sessions are stored elsewhere, pass --state-dir.openclaw.json: Scripts will report warnings for missing keys but will not crash. A missing config file is treated as "all defaults."| User Request | Script |
|---|---|
| "Check my OpenClaw security" | security_audit.sh |
| "Is my config safe?" | config_inspector.sh |
| "Review my agent prompts" | prompt_checker.sh |
| "Are there leaked secrets?" | session_scanner.sh --deep |
| "Full security review" | Run all four in sequence |
| "Check for malicious skills" | security_audit.sh (section 9) + openclaw skills scan |
Read these as needed based on the user's task:
Security Hardening — Known CVEs, OWASP Agentic Top 10 mapping, NIST CSF alignment, skill supply chain security, allowlists, sandbox, tool policies, credential management, audit checklist, incident response, prompt injection defense. Read this for ANY security-related question or before recommending config changes.
grep -n "CVE\|sandbox\|dmPolicy\|tool.polic\|prompt.inject\|incident" references/security.mdConfiguration Reference — All config keys, environment variables, channel setup (WhatsApp/Telegram/Discord/Slack/iMessage/Signal/BlueBubbles/etc.), session management, model providers, tools, logging, OPENCLAW_HOME.
grep -n "whatsapp\|telegram\|discord\|slack\|imessage\|signal\|bind\|sandbox\|dmPolic\|session" references/configuration.mdCloud Deployment — Docker, GCP, AWS Bedrock, Fly.io, Railway, Render, Hetzner, Northflank, Nix, Ansible, macOS VM. Network architecture, IAM, volumes, remote access via Tailscale/SSH.
Multi-Agent & Routing — Agent isolation, routing rules, per-agent sandbox/tools, bindings, session scoping, subagents, heartbeat, agent-to-agent communication.