# Send Go4Me 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "go4me",
    "name": "Go4Me",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/Koba42Corp/go4me",
    "canonicalUrl": "https://clawhub.ai/Koba42Corp/go4me",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/go4me",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=go4me",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/go4me-lookup.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "go4me",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T04:50:35.886Z",
      "expiresAt": "2026-05-07T04:50:35.886Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=go4me",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=go4me",
        "contentDisposition": "attachment; filename=\"go4me-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "go4me"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/go4me"
    },
    "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/go4me",
    "downloadUrl": "https://openagent3.xyz/downloads/go4me",
    "agentUrl": "https://openagent3.xyz/skills/go4me/agent",
    "manifestUrl": "https://openagent3.xyz/skills/go4me/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/go4me/agent.md"
  }
}
```
## Documentation

### Go4Me Skill

Send XCH to Twitter users by resolving their Go4Me addresses.

### Dependencies

sage-wallet — Required for XCH transactions

### Commands

CommandDescription/go4me lookup <user>Get user's XCH address and profile/go4me send <user> <amount>Send XCH to user (amount in XCH or mojos)/go4me tip <user>Send 1 mojo tip

### Natural Language

"Send 1 XCH to @hoffmang"
"Tip @sage_wallet"
"What's @bramcohen's XCH address?"
"Look up DracattusDev on Go4Me"

### Lookup Script

source scripts/go4me-lookup.sh
go4me_lookup "DracattusDev"  # Returns JSON or exits 1

### Lookup

Strip @ from username if present
Run go4me_lookup "<username>"
Parse JSON response for xchAddress, fullName, username
If exit code 1: user not found on Go4Me

### Send

Lookup user (as above)
If not found, report error
Display confirmation:
Send <amount> to @<username> (<fullName>)?
Address: <xchAddress>
[Yes] [No]


On confirm, call sage-wallet send_xch:
curl -s --cert $CERT --key $KEY -X POST https://127.0.0.1:9257/send_xch \\
  -H "Content-Type: application/json" \\
  -d '{"address":"<xchAddress>","amount":"<mojos>","fee":"0","memos":[],"auto_submit":true}'


Report transaction result

### Tip

Same as send with amount = 1 mojo.

### Amount Conversion

InputMojos1 (no unit)1 mojo1 mojo10.001 XCH10000000001 XCH1000000000000

Parse amount: if contains "XCH", multiply by 10^12. Default unit is mojos for small numbers, XCH for decimals.

### Error Handling

ConditionResponseUser not on Go4Me"User @{username} not found on Go4Me"Invalid address"Invalid XCH address returned from Go4Me"Insufficient balance"Insufficient balance for this transaction"Network error"Failed to connect to Go4Me"

### Data Available

FieldExampleusernameDracattusDevfullName🌱Drac 🍊xchAddressxch1rvgc3naytvzhv4lxhzphrdr2fzj2ka340tdj8fflt4872t2wqveq9lwz7tdescriptionBio textavatarUrlProfile image URLtotalBadgeScore220
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Koba42Corp
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T04:50:35.886Z
- Expires at: 2026-05-07T04:50:35.886Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/go4me)
- [Send to Agent page](https://openagent3.xyz/skills/go4me/agent)
- [JSON manifest](https://openagent3.xyz/skills/go4me/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/go4me/agent.md)
- [Download page](https://openagent3.xyz/downloads/go4me)