openclaw-setup

openclaw-setup is a skill for Claude Code, Codex from CES-Ltd/TitanX. It costs 73 tokens per session (1,874 once invoked), scanned A, original, Apache-2.0.

A guide for using OpenClaw, an open-source personal AI assistant. It covers installing, configuring, deploying, troubleshooting, and operating OpenClaw and its connected channels and agents.

In plain words
What is it for?
Use it to install OpenClaw, configure its Gateway and channels, create bots or agents, run automated tasks, and diagnose failures.
Why use it?
It helps identify whether OpenClaw is installed correctly and provides a starting point when setup or usage problems occur.

Skill for Claude CodeCodex

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/ces-ltd/titanx/openclaw-setup
Any agent
npx skills add CES-Ltd/TitanX --skill openclaw-setup
Clone the repo
git clone --depth 1 https://github.com/CES-Ltd/TitanX

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for openclaw-setup

README.md
[![agentmods](https://agentmods.dev/badge/skills/ces-ltd/titanx/openclaw-setup.svg)](https://agentmods.dev/skills/ces-ltd/titanx/openclaw-setup)
Your own site
<a href="https://agentmods.dev/skills/ces-ltd/titanx/openclaw-setup"><img src="https://agentmods.dev/badge/skills/ces-ltd/titanx/openclaw-setup.svg" alt="Measured on agentmods" height="20"></a>
Per session 73 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,874 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00073 $0.01874
Opus 5 $0.00036 $0.00937
Sonnet 5 $0.00015 $0.00375
Haiku 4.5 $0.00007 $0.00187

Measured 4d ago against content hash b2bdc5a69572, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

openclaw-setup scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

src/process/resources/skills/openclaw-setup/SKILL.md · 204 lines

How it starts

The opening of the file, as written. The whole thing — 204 lines — stays where its author put it; the contents beside it link to each section on GitHub.

OpenClaw 使用专家

你是 OpenClaw 使用专家,可以帮助用户安装、部署、配置和使用 OpenClaw 个人 AI 助手。

⚠️ 重要提示:文档时效性

当前文档基于某个历史版本编写,OpenClaw 是一个持续更新的开源项目。

  • 优先参考最新文档:当遇到不确定的问题时,请访问 OpenClaw GitHub 仓库 查看最新的 README 和文档
  • 官方文档:访问 docs.openclaw.ai 获取最新的官方文档
  • 本技能的作用:提供基础知识和常见操作指南,但遇到新功能或变更时,应查阅最新资料

🔍 首先:环境诊断(每次响应前必做)

在回答任何 OpenClaw 问题之前,先执行环境诊断,确认工具可以被找到:

# 1. 检查 AionUi 工作进程中实际可用的 PATH
node -e "console.log('PATH entries:', process.env.PATH.split(require('path').delimiter).length); console.log('First 3:', process.env.PATH.split(require('path').delimiter).slice(0,3))"

# 2. 检查 openclaw 是否在 PATH 中可找到
which openclaw 2>/dev/null || where openclaw 2>/dev/null || echo "❌ openclaw NOT found in PATH"

# 3. 如果找不到,检查 npm 全局包安装位置
npm root -g && npm bin -g

诊断结果解读:

  • openclaw 找到了 → 环境正常,继续正常操作
  • openclaw NOT found in PATH → 环境问题,按以下步骤排查:
    1. 先确认 openclaw 已安装:npm list -g openclaw
    2. 若已安装但找不到,说明 PATH 不包含 npm 全局 bin 目录,这通常是 AionUi 启动方式(非终端)导致的
    3. 临时解决:在命令中使用绝对路径,例如 $(npm bin -g)/openclaw doctor

快速判断用户状态

根据用户的问题,判断当前状态:

  1. 未安装:用户询问如何安装、从哪里开始 → 参考 references/installation.md
  2. 安装出问题:用户遇到安装错误、服务启动失败、配置问题 → 参考 references/troubleshooting.md
  3. 已安装想使用:用户想创建机器人、执行任务、配置功能 → 参考 references/usage.mdreferences/configuration.md
  4. 需要卸载:用户想要卸载 OpenClaw → 参考 references/uninstallation.md

快速开始

首次安装

# 安装 OpenClaw
npm install -g openclaw@latest

# 运行新手引导
openclaw onboard --install-daemon

详细安装步骤:见 references/installation.md

检查状态

# 检查 Gateway 状态
openclaw gateway status

# 运行健康检查
openclaw doctor

与 Agent 对话

openclaw agent --message "帮我完成某个任务"

文档导航

根据用户需求,查阅相应的参考文档:

安装和部署

  • references/installation.md - 完整的安装指南

    • 系统要求
    • 多种安装方式(官方脚本、npm、源码)
    • 验证安装
  • references/deployment.md - 部署和运行指南

    • 新手引导向导
    • Gateway 启动和管理
    • 服务安装(launchd/systemd)
    • 远程 Gateway 部署

故障排除

  • references/troubleshooting.md - 故障排除完整指南
    • Doctor 命令使用
    • 常见问题诊断(Gateway 无法启动、认证失败、渠道连接失败等)
    • 故障排除流程
    • 日志查看方法

Read the full file on GitHub · 204 lines

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 204 lines · 73 tokens per session scan A b2bdc5a69572

Subscribe to this mod's changes

openclaw-setup is a skill published in the GitHub repository CES-Ltd/TitanX (48 stars, last pushed 4mo ago), licensed Apache-2.0. It adds 73 tokens to every session and 1,874 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

algorithmic-art

Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright…

JStaRFilms/deprecated-Takomi_Code · 62 tokens

convex-http-actions

External API integration and webhook handling including HTTP endpoint routing, request/response handling, authentication, CORS configuration, and webhook signature validation.

JStaRFilms/deprecated-Takomi_Code · 31 tokens

convex-migrations

Schema migration strategies for evolving applications including adding new fields, backfilling data, removing deprecated fields, index migrations, and zero-downtime migration patterns.

JStaRFilms/deprecated-Takomi_Code · 35 tokens

convex-cron-jobs

Scheduled function patterns for background tasks including interval scheduling, cron expressions, job monitoring, retry strategies, and best practices for long-running tasks.

JStaRFilms/deprecated-Takomi_Code · 33 tokens

convex-security-audit

Deep security review patterns for authorization logic, data access boundaries, action isolation, rate limiting, and protecting sensitive operations.

JStaRFilms/deprecated-Takomi_Code · 28 tokens

docx

Use this skill whenever the user wants to create, read, edit, or manipulate Word documents (.docx files). Triggers include: any mention of "Word doc", "word document", ".docx", or requests to produce professional documents with formatting like tables of contents, headings, page numbers, or letterheads. Also use when…

JStaRFilms/deprecated-Takomi_Code · 168 tokens