← 返回 Skills 市场
dongsheng123132

ClawMe

作者 dongsheng123132 · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
332
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install clawme
功能描述
Send instructions to user's real browser via ClawMe Chrome extension. Fill forms, tweet, email, click, extract — user sees and confirms each action in the si...
使用说明 (SKILL.md)

ClawMe — Execute Actions in User's Real Browser

Send instructions to the user's Chrome browser via the ClawMe extension. The user sees each instruction in a side panel and clicks "Execute" to confirm. Unlike headless browsers, ClawMe runs in the user's real browser with their actual login sessions.

Setup: User installs ClawMe Chrome extension, configures Backend URL and Token.

How to Send Instructions

Use the clawme_send tool if available. Otherwise, make an HTTP POST:

POST ${CLAWME_BASE_URL:-https://api.clawme.net}/v1/instructions
Headers: Content-Type: application/json, X-ClawMe-Token: ${CLAWME_CLIENT_TOKEN}
Body: {"target":"browser","instruction":{"type":"\x3Ctype>","payload":{...}}}

Instruction Types

compose_tweet

When user says "tweet about...", "post on X..."

{"type":"compose_tweet","payload":{"text":"tweet content"}}

compose_email

When user says "write email to...", "send email..."

{"type":"compose_email","payload":{"to":"[email protected]","subject":"Subject","body":"Body text","use_gmail":true}}

fill_form

When user says "fill the form...", "enter my info..."

{"type":"fill_form","payload":{"url":"https://example.com/form","fields":{"#name":"John","input[name=email]":"[email protected]","select[name=country]":"US"}}}

Supports: inputs, textareas, selects, checkboxes, radio, contenteditable (Xiaohongshu, Medium). Use CSS selectors as field keys. Omit url for current page.

click

When user says "click the button...", "submit the form..."

{"type":"click","payload":{"selector":"button[type=submit]","url":"https://example.com/form"}}

extract

When user says "get the text from...", "scrape..."

{"type":"extract","payload":{"selector":".results","url":"https://example.com/search"}}

Result (extracted text) is reported back to the agent.

open_url

{"type":"open_url","payload":{"url":"https://example.com","in_new_tab":true}}

remind

{"type":"remind","payload":{"title":"Meeting","body":"Team standup in 5 minutes"}}

Multi-Step Workflows

Chain instructions with meta.workflow_id and meta.step:

POST /v1/instructions — {"target":"browser","instruction":{"type":"open_url","payload":{"url":"..."}}, "meta":{"workflow_id":"signup","step":1}}
POST /v1/instructions — {"target":"browser","instruction":{"type":"fill_form","payload":{"fields":{...}}}, "meta":{"workflow_id":"signup","step":2}}
POST /v1/instructions — {"target":"browser","instruction":{"type":"click","payload":{"selector":"button[type=submit]"}}, "meta":{"workflow_id":"signup","step":3}}

User sees a workflow card with progress bar and can execute all steps sequentially.

Environment Variables

  • CLAWME_CLIENT_TOKEN (required) — matches the token configured in the Chrome extension
  • CLAWME_BASE_URL (optional) — default https://api.clawme.net, or http://127.0.0.1:31871 for local
安全使用建议
This skill is internally consistent with its description, but it grants an agent the ability to control your real browser and read page content through the ClawMe extension. Before installing: (1) Only install the official, reviewed ClawMe extension from a trusted source; (2) Treat CLAWME_CLIENT_TOKEN as highly sensitive — do not expose it to untrusted agents or public repos; (3) Confirm how the extension enforces per-action user confirmation and whether workflows can be bulk-approved; (4) Prefer manual approval for each action that accesses sensitive pages (banking, email, developer consoles); (5) If you need stronger guarantees, avoid storing the token in shared environment variables or restrict agent autonomy when this skill is enabled.
功能分析
Type: OpenClaw Skill Name: clawme Version: 1.0.0 The skill bundle defines a browser automation tool that allows an AI agent to interact with the user's Chrome browser (e.g., fill forms, compose emails, extract text). A critical security feature is explicitly stated: 'user sees and confirms each action in the side panel.' This means no action can be performed without the user's explicit consent, significantly mitigating risks of unauthorized data exfiltration or malicious execution. The `SKILL.md` provides clear instructions for using the tool's API and does not contain any prompt injection attempts, obfuscated payloads, or instructions for the agent to perform harmful or stealthy actions. The `extract` capability, while powerful, is also subject to user confirmation and reports data back to the agent, not an arbitrary external endpoint defined by the skill itself.
能力评估
Purpose & Capability
Name/description (remote control of a Chrome extension to fill forms, click, extract, post) matches the declared requirement (CLAWME_CLIENT_TOKEN) and the SKILL.md instructions (POST to the extension backend with that token). No unrelated env vars, binaries, or install steps are requested.
Instruction Scope
The runtime instructions let the agent request actions that run in the user's real browser (fill forms, click, compose email/tweet, extract page content). The SKILL.md says the user 'sees and confirms' each action, but it's ambiguous whether multi-step workflows can be bulk-approved. Because 'extract' returns page content to the agent and actions run under the user's live sessions, this capability can exfiltrate sensitive data or perform actions on behalf of the user if the token or confirmation flow is misused.
Install Mechanism
Instruction-only skill (no install spec, no downloaded code). This minimizes installation-side risk; nothing is written to disk by the skill bundle itself.
Credentials
Only CLAWME_CLIENT_TOKEN (and optional CLAWME_BASE_URL) are required, which is proportionate to controlling an extension. However, that single token effectively authorizes sending commands to the user's extension and should be treated as highly sensitive (it grants browser-action capability and potential access to page contents and logged-in sessions).
Persistence & Privilege
The skill does not request 'always: true' or any system-wide persistence. It is user-invocable and can be invoked by the agent (normal platform default).
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install clawme
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /clawme 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Initial release of ClawMe: Control your real Chrome browser via simple API instructions. - Send browser automation commands (fill forms, tweet, email, click, extract data) through the ClawMe Chrome extension. - Users see each instruction and confirm before execution, preserving control and security. - Supports multi-step workflows with progress tracking in the browser side panel. - Compatible with user's existing Chrome sessions and logins. - Simple setup: install extension and configure a client token.
元数据
Slug clawme
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

ClawMe 是什么?

Send instructions to user's real browser via ClawMe Chrome extension. Fill forms, tweet, email, click, extract — user sees and confirms each action in the si... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 332 次。

如何安装 ClawMe?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install clawme」即可一键安装,无需额外配置。

ClawMe 是免费的吗?

是的,ClawMe 完全免费(开源免费),可自由下载、安装和使用。

ClawMe 支持哪些平台?

ClawMe 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 ClawMe?

由 dongsheng123132(@dongsheng123132)开发并维护,当前版本 v1.0.0。

💬 留言讨论