用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/jleechanorg/claude-commands --skill thinclaw命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | thinclaw |
| description | Use thinclaw MCP server — thin inference-less bridge to OpenClaw Gateway for executing tools |
| type | skill |
thinclaw is a zero-inference MCP server that acts as a bridge between Claude Desktop/Cowork and the OpenClaw Gateway. It performs ZERO inference — only HTTP relay.
┌─────────────────┐ MCP stdio ┌──────────────┐ HTTP REST ┌──────────────────┐
│ Claude Desktop │ ───────────► │ thinclaw │ ──────────► │ OpenClaw │
│ Claude Cowork │ zero LLM │ (bridge) │ /tools/ │ Gateway │
│ Perplexity │ ◄─────────── │ Node.js │ invoke │ localhost:18789 │
└─────────────────┘ tool result└──────────────┘ ◄────────── └──────────────────┘
All reasoning happens in the calling AI. thinclaw only proxies tool calls to the Gateway.
Use these tools in Claude Desktop after thinclaw is installed and Claude Desktop is restarted.
Universal proxy — call ANY OpenClaw tool by name.
Tool: openclaw_execute
Arguments: {
"tool": "bash",
"params": { "command": "ls -la", "cwd": "/tmp" }
}
Supported tool names: bash, read_file, grep, todo_list_write, slack_postMessage, whatsapp_send, memory_search, etc.
Shorthand for executing shell commands.
Tool: run_shell
Arguments: {
"command": "find . -name '*.js' | head -10"
}
Send a WhatsApp message (requires whatsapp_send tool registered in Gateway).
Tool: send_whatsapp
Arguments: {
"to": "+1234567890",
"message": "Hello from thinclaw!"
}
Schedule a recurring task via Gateway cron.
Tool: schedule_cron
Arguments: {
"schedule": "*/5 * * * *",
"task": "check-deployments"
}
Trigger a Claude Cowork workflow by writing a flag file to ~/AI_Bridge/inbox/.
Tool: trigger_cowork_workflow
Arguments: {
"workflow": "daily-standup",
"context": { "channel": "#engineering", "time": "09:30" }
}
This creates ~/AI_Bridge/inbox/trigger-<timestamp>.json. Cowork monitors this folder.
http://localhost:18789~/.openclaw/openclaw.json or set via GATEWAY_TOKEN~/AI_Bridge/{inbox,outbox,processed} for cron → Cowork handoff| Issue | Fix |
|---|---|
| Gateway not responding | Start Gateway: openclaw gateway start |
| Token missing | Check: cat ~/.openclaw/openclaw.json | jq '.gateway.auth.token' |
| Health check | curl http://localhost:18789/health |
| Tools not showing | Restart Claude Desktop after installing thinclaw |
thinclaw is installed via Claude Desktop config at ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"thinclaw": {
"command": "node",
"args": ["$HOME/thinclaw/server.js"],
"env": { "GATEWAY_TOKEN": "..." }
}
}
}