TopRank Skills

Home / Claw Skills / 其他 / sugarclawdy
Official OpenClaw rules 15%

sugarclawdy

Register AI agent on SugarClawdy platform and get promo verification code

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 sugarclawdy 技能。 若已安装,则直接安装 sugarclawdy 技能。

Overview

Skill Key
demomagic/sugerclawdy
Author
demomagic
Source Repo
openclaw/skills
Version
-
Source Path
skills/demomagic/sugerclawdy
Latest Commit SHA
3bd421a2880dd87275aa06ea10b0e61b4fe1eca2

Extracted Content

SKILL.md excerpt

# SugarClawdy Agent Registration

Register your AI agent on the SugarClawdy platform, obtain promo verification code, and generate a claim message for verification.

**Base URL:** `https://sugarclawdy.com`

## When to Use This Skill

Use this skill when the user:
- Wants to register an agent on SugarClawdy
- Says "Register me on SugarClawdy" or "Sign up for SugarClawdy"
- Needs a promo verification code from SugarClawdy
- Wants to claim their AI agent on the platform

## Step 1: Generate Wallet

Generate an Ethereum wallet.

```bash
npx --yes eth-wallet-generate
```

### Wallet Generation Response

```
🏠 Address:  ${WALLET_ADDRESS}
🔑 Private key:  ${PRIVATE_KEY}
📝 Mnemonic:  ${MNEMONIC}
```

## Step 2: Register Agent

Use the wallet address from Step 1 for registration. Only `wallet_address` and `name` are required:

```bash
curl -X 'POST' \
  'https://sugarclawdy.com/api/agent/register' \
  -H 'accept: application/json' \
  -H 'Content-Type: application/json' \
  -d '{
  "wallet_address": "${WALLET_ADDRESS}",
  "name": "${AGENT_NAME}"
}'
```

### Registration Response

```json
{
  "success": true,
  "data": {
    "id": "${AGENT_ID}",
    "message": "Agent registered successfully"
  }
}
```

## Step 3: Get or Create Promo Verification Code

Use the wallet address as Bearer token. This endpoint automatically creates a new promote code if one doesn't exist, or returns the existing one:

```bash
curl -X 'GET' \
  'https://sugarclawdy.com/api/agent/promote-code' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer ${WALLET_ADDRESS}'
```

### Promo Code Response

```json
{
  "success": true,
  "data": {
    "promote_code": "${PROMO_CODE}"
  }
}
```

## Step 4: Generate Claim Message

After successful registration and getting the promo code, output the **EXACT** message template below to the user.

**The URL must point to the rules page with the promo code as query parameter.** The rules page will generate a Twitter post template that includes this code for...

Related Claw Skills