openclaw-control
Controls and manages the OpenClaw AI assistant through its API gateway.
Install
mkdir -p .claude/skills/openclaw-control && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/1693" && unzip -o skill.zip -d .claude/skills/openclaw-control && rm skill.zipInstalls to .claude/skills/openclaw-control
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
控制和管理 OpenClaw AI 助手。用于发送消息给 OpenClaw、检查状态、管理配置和安装技能。当用户想要与 OpenClaw 交互或管理 OpenClaw 时使用此技能。Key capabilities
- →Send tasks to OpenClaw
- →Monitor system health and status
- →Manage gateway lifecycle
- →Update configuration and hooks
How it works
It communicates with the Naga Agent Server API to send commands and retrieve status information from the OpenClaw gateway.
Inputs & outputs
When to use openclaw-control
- →Check health and status of OpenClaw
- →Send tasks to OpenClaw via API
- →Update configuration and hooks
- →Restart the OpenClaw gateway
About this skill
OpenClaw 控制技能
本技能让你能够控制和管理 OpenClaw AI 助手。
核心能力
1. 发送消息给 OpenClaw
通过 Naga 的 Agent Server API 向 OpenClaw 发送任务:
POST /openclaw/send
{
"message": "你的消息内容",
"wake_mode": "now" // 立即执行
}
2. 检查 OpenClaw 状态
GET /openclaw/health- 健康检查GET /openclaw/status- 运行状态GET /openclaw/session- 会话信息
3. 管理 Gateway
POST /openclaw/gateway/start- 启动POST /openclaw/gateway/stop- 停止POST /openclaw/gateway/restart- 重启GET /openclaw/gateway/status- 状态
4. 配置管理
GET /openclaw/config- 获取配置POST /openclaw/config/model- 设置模型POST /openclaw/config/hooks- 配置 Hooks
使用流程
- 检查连接: 先调用健康检查确认 OpenClaw 可用
- 发送任务: 使用
/openclaw/send发送消息 - 监控结果: 通过
/openclaw/history查看执行结果
注意事项
- OpenClaw 默认运行在
http://127.0.0.1:18789 - 需要配置 Hooks Token 才能发送消息
- 建议使用免费的 GLM-4.7 模型进行测试
示例
让 OpenClaw 执行任务
{
"message": "帮我整理桌面上的文件,按类型分类",
"wake_mode": "now"
}
查询当前状态
调用 GET /openclaw/status 获取 OpenClaw 当前正在做什么。
When not to use it
- →Directly modifying OpenClaw source code
- →Managing non-OpenClaw AI assistants
Prerequisites
Limitations
- →Requires local gateway access at 127.0.0.1:18789
- →Requires valid Hooks Token
How it compares
It provides a programmatic interface for managing the assistant, avoiding manual interaction with the gateway process.
Compared to similar skills
openclaw-control side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| openclaw-control (this skill) | 5 | 6mo | No flags | Beginner |
| using-superpowers | 95 | 3mo | No flags | Beginner |
| ultrawork | 11 | 2mo | No flags | Advanced |
| clawhub | 25 | 2mo | Review | Intermediate |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by Xxiii8322766509
View all by Xxiii8322766509 →You might also like
using-superpowers
obra
Use when starting any conversation - establishes mandatory workflows for finding and using skills, including using Skill tool before announcing usage, following brainstorming before coding, and creating TodoWrite todos for checklists
ultrawork
Yeachan-Heo
Parallel execution engine for high-throughput task completion
clawhub
openclaw
Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.com. Use when you need to fetch new skills on the fly, sync installed skills to latest or a specific version, or publish new/updated skill folders with the npm-installed clawhub CLI.
skill-installer
openai
Install Codex skills into $CODEX_HOME/skills from a curated list or a GitHub repo path. Use when a user asks to list installable skills, install a curated skill, or install a skill from another repo (including private repos).
continuous-learning
affaan-m
Automatically extract reusable patterns from Claude Code sessions and save them as learned skills for future use.
memory-keeper-proactive-context-maintenance
b4CU-R4U
Automatically detect and maintain memory freshness by monitoring context staleness, significant code changes, task completions, and phase transitions. Proactively suggests and executes memory sync operations with user confirmation. Use when the user says "sync memory", "update context", or when the Skill detects that context is stale (>2 hours), significant changes have occurred (new commits), tasks completed, or major milestones reached. Replaces passive "context is stale" warnings with active maintenance.