# Send ClawMe to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawme",
    "name": "ClawMe",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/dongsheng123132/clawme",
    "canonicalUrl": "https://clawhub.ai/dongsheng123132/clawme",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/clawme",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawme",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/clawme"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawme",
    "downloadUrl": "https://openagent3.xyz/downloads/clawme",
    "agentUrl": "https://openagent3.xyz/skills/clawme/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawme/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawme/agent.md"
  }
}
```
## Documentation

### 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":"<type>","payload":{...}}}

### 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@example.com","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]":"john@example.com","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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: dongsheng123132
- Version: 1.0.0
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/clawme)
- [Send to Agent page](https://openagent3.xyz/skills/clawme/agent)
- [JSON manifest](https://openagent3.xyz/skills/clawme/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/clawme/agent.md)
- [Download page](https://openagent3.xyz/downloads/clawme)