Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

chatclawchatclaw 搜索

Agent Skill

chatclaw 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,937

周安装

402

GitHub Stars

1

下载量

3,120
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:chatclaw(chatclaw 搜索)
来源仓库:https://github.com/sumeralabs/chatclaw
安装命令:
openclaw skills install chatclaw
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install chatclaw

简介

将您的 OpenClaw 机器人连接到 ChatClaw 云仪表板,以进行实时远程聊天、令牌跟踪和任务管理

SKILL.md

name
chatclaw
version
0.4.0
description
Connect your OpenClaw bot to the ChatClaw cloud dashboard — remote chat, token tracking, task management, agent workspace file browsing (read-only), and skills management (list, enable/disable, reinstall)
author
ChatClaw Team
homepage
https://chatclaw.sumeralabs.com
metadata
{ "openclaw": { "os": ["darwin", "linux"], "requires": { "bins": ["python3"], "env": ["CHATCLAW_API_KEY"], "config": ["gateway.http.endpoints.chatCompletions", "gateway.auth.token"] }, "primaryEnv": "CHATCLAW_API_KEY", "install": { "uv": "aiohttp>=3.9 websockets>=12.0 cryptography>=41.0" } } }

ChatClaw

ChatClaw is a persistent background bridge that connects your local OpenClaw agent to the ChatClaw cloud dashboard. Once installed and enabled, it runs automatically with OpenClaw and allows you to chat with your agent, monitor token usage, and manage tasks from any browser or mobile device — without exposing any ports or configuring a firewall.

What it does

Transparency note: The cloud relay endpoint (api.sumeralabs.com) is operated by SumeraLabs, the company behind ChatClaw. chatclaw.sumeralabs.com is the product domain; sumeralabs.com is the infrastructure domain. Both are owned and operated by the same team.

ChatClaw opens two connections when enabled:

  1. Cloud relay — an outbound WebSocket to wss://api.sumeralabs.com/ws/agent/{api_key}. This is how your dashboard communicates with the skill. It is a purely outbound connection and requires no inbound port forwarding.
  2. Local gateway — a WebSocket connection to ws://localhost:18789 for Ed25519 authentication only, plus HTTP SSE calls to http://localhost:18789/v1/chat/completions for all chat traffic. The HTTP endpoint is auto-enabled in openclaw.json on first start.

Messages flow bidirectionally in real time. User messages sent from the dashboard are forwarded to the OpenClaw agent via HTTP SSE streaming. Each token of the agent's response is relayed back to the dashboard as it is generated, producing a live typewriter effect.

Permissions & Capabilities

This section fully discloses every action the skill can perform in response to a cloud relay message. All operations require a valid ChatClaw API key; the relay rejects unauthenticated connections before any message reaches the skill.

CapabilityTrigger messageScopeNotes
Chat relayany message with text/content fieldSends text to OpenClaw agent via HTTP SSE, streams response backCore feature
File listingfiles.listRead-only; returns file metadata for the agent workspace via gateway RPC (agents.files.list)No file content returned at this step
File readfiles.getRead-only; returns content of a named workspace file via gateway RPC (agents.files.get); scoped to agentId: "main" workspaceEach request is logged with the filename
Skills listskills.listRuns openclaw skills list --json locally; returns skill metadataRead-only
Enable/disable skillskills.set_enabledRuns openclaw config set skills.entries.<name>.enabled true/false; affects local OpenClaw configEach invocation is logged with skill name and new state
Reinstall skillskills.reinstallRuns clawhub install <name> --force; replaces skill files from ClawHub registryEach invocation is logged with skill name

Why operator-level credentials are required: The gateway uses Ed25519 device authentication with operator scopes (operator.admin, operator.approvals, operator.pairing). This is required by the OpenClaw gateway handshake protocol to establish an authenticated connection — there is no lower-privilege connection mode for skill bridges. The operator token is read from device-auth.json and used only for the initial WebSocket handshake; it is never transmitted to the cloud relay.

Security mitigations:

  • All capabilities require a valid API key authenticated at the cloud relay layer before any message reaches the skill
  • File access is read-only and scoped to the agent workspace via the gateway RPC (agentId: "main")
  • Skills enable/disable and reinstall are logged locally on every invocation
  • No shell commands with user-controlled arguments are executed — skill names and file names are passed as positional arguments to controlled subprocess calls, not interpolated into shell strings
  • Disabling this skill reverts any openclaw.json changes it made

Architecture

ChatClaw Dashboard (browser / mobile)
        ↕  wss://api.sumeralabs.com
  ChatClaw Cloud Relay (FastAPI)
        ↕  wss://api.sumeralabs.com/ws/agent/{api_key}
  ChatClaw Skill  ←── this package
        ↕  ws://localhost:18789 (auth handshake, Ed25519)
        ↕  http://localhost:18789/v1/chat/completions (SSE streaming)
  OpenClaw Gateway
        ↕
  OpenClaw Agent (LLM)

Requirements

  • OpenClaw: v2026.3.28 or later
  • Python: 3.8+
  • Dependencies: websockets, cryptography, aiohttp
Important: ChatClaw v0.3.0+ requires OpenClaw v2026.3.28 or later due to authentication changes. If you're using an older OpenClaw version, please upgrade OpenClaw or use ChatClaw v0.2.9 (legacy).

Installation

Via OpenClaw Control UI (recommended)

  1. Open the Control UI at http://localhost:18789
  2. Go to Skills → Marketplace
  3. Search for ChatClaw
  4. Click Install, enter your API key, click Enable
Note: On first enable, the skill automatically sets gateway.http.endpoints.chatCompletions.enabled = true in your openclaw.json. If the skill made that change, disabling it will revert it automatically. If chatCompletions was already enabled before install, the skill leaves your config unchanged on disable.

The skill starts immediately and auto-starts with OpenClaw on every subsequent boot.

Via OpenClaw CLI

npx clawhub install chatclaw
openclaw skills enable chatclaw
openclaw skills logs chatclaw

Before enabling, add your API key to openclaw.json under skills.entries.chatclaw.config:

"skills": {
  "entries": {
    "chatclaw": {
      "enabled": true,
      "config": {
        "apiKey": "ck_your_key_here",
        "cloud_url": "wss://api.sumeralabs.com"
      }
    }
  }
}

Agent-assisted setup

Your OpenClaw agent can install and configure ChatClaw for you without any manual steps.

Get the one-click setup prompt from app.chatclaw.sumeralabs.com/setup — it includes your API key pre-filled and full instructions to paste directly into chat.

Configuration

KeyRequiredDefaultDescription
apiKeyYesChatClaw API key from app.chatclaw.sumeralabs.com
cloud_urlNowss://api.sumeralabs.comWebSocket relay URL (leave default unless self-hosting)

Environment variables

VariableDescription
OPENCLAW_DATA_DIROverride the OpenClaw data directory. Defaults to /data/.openclaw on Docker/VPS or ~/.openclaw on standard installs.
CHATCLAW_CLOUD_URLOverride the cloud relay URL. Defaults to wss://api.sumeralabs.com. Leave unset unless self-hosting the relay.

Lifecycle hooks

HookBehaviour
on_enablePatches openclaw.json to enable the /v1/chat/completions endpoint, then starts the cloud ↔ gateway relay loop
on_disableCloses both WebSocket connections, stops the relay loop, and reverts the chatCompletions patch in openclaw.json if the skill was the one that enabled it

Reconnection behaviour

Both the cloud relay and the local gateway implement automatic reconnection with exponential backoff (5 s → 10 s → 20 s … up to 60 s). The skill never exits on a connection drop.

Verify it is working

openclaw skills logs chatclaw

Expected output:

Connected to cloud relay ✓
Gateway authenticated ✓
Both connections established — relaying messages ✓

Troubleshooting

SymptomCauseFix
Cloud connection failedWrong API key or relay unreachableVerify key at app.chatclaw.sumeralabs.com; check network connectivity
OpenClaw identity files not foundOpenClaw not initialised or non-default install pathRun openclaw wizard or set OPENCLAW_DATA_DIR
Gateway HTTP 403chatCompletions endpoint not enabledRestart skill — on_enable auto-patches openclaw.json
Gateway auth rejectedOperator token expiredRe-pair device via openclaw devices approve
Streaming works but token count shows 0sessions.json not yet writtenSend one message first; counts appear after the first completion

File access

This skill reads and writes the following local files:

PathAccessPurpose
$OPENCLAW_DATA_DIR/openclaw.jsonRead + WriteReads gateway auth token; enables chatCompletions HTTP endpoint on first start
$OPENCLAW_DATA_DIR/identity/device.jsonReadEd25519 device identity for gateway authentication
$OPENCLAW_DATA_DIR/identity/device-auth.jsonReadOperator token for gateway authentication
$OPENCLAW_DATA_DIR/agents/main/sessions/sessions.jsonReadToken usage counts (input/output/context) per session

$OPENCLAW_DATA_DIR defaults to /data/.openclaw on Docker/VPS installs and ~/.openclaw on standard installs. It can be overridden via the OPENCLAW_DATA_DIR environment variable. No files outside this directory are accessed.

External connections

This skill makes the following outbound network connections:

  • wss://api.sumeralabs.com — ChatClaw cloud relay (authentication and message relay)
  • ws://localhost:18789 — OpenClaw gateway WebSocket (Ed25519 auth handshake only)
  • http://localhost:18789/v1/chat/completions — OpenClaw gateway HTTP (SSE streaming chat)

No inbound ports are opened. No user data is stored by the skill itself — messages are persisted by the ChatClaw backend (Supabase) for chat history.

Changelog

v0.3.0 (2026-03-30)

  • Breaking: Now requires OpenClaw v2026.3.28+
  • Fixed authentication for OpenClaw v2026.3.28 (added required scope headers)
  • Fixed model field validation (changed from "auto" to "openclaw")
  • Added cross-platform path resolution (Docker/VPS/macOS)
  • Improved error messages for troubleshooting
  • Added support for approval workflows (operator.approvals scope)

v0.2.9 (2026-03-12)

  • Initial ClawHub release

License

MIT-0 (No Attribution Required)

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

90.94%
按下载量换算2,837

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills