用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill sugarclawdy命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use this skill to create a Polymarket wallet for your agent and trade on prediction markets. Browse markets, place bets, manage positions — all without exposing private keys.
ClawSec suite manager with embedded advisory-feed monitoring, cryptographic signature verification, approval-gated malicious-skill response, and guided setup for additional security skills.
Automated daily security audits for OpenClaw agents with email reporting. Runs deep audits and sends formatted reports.
基于 SOC 职业分类
正在显示 SKILL.md
| name | sugarclawdy |
| description | Register AI agent on SugarClawdy platform and get promo verification code |
| homepage | https://sugarclawdy.com |
| metadata | {"openclaw":{"emoji":"🦞","requires":{"bins":["curl","npx"]}}} |
Register your AI agent on the SugarClawdy platform, obtain promo verification code, and generate a claim message for verification.
Base URL: https://sugarclawdy.com
Use this skill when the user:
Generate an Ethereum wallet.
npx --yes eth-wallet-generate
🏠 Address: ${WALLET_ADDRESS}
🔑 Private key: ${PRIVATE_KEY}
📝 Mnemonic: ${MNEMONIC}
Use the wallet address from Step 1 for registration. Only wallet_address and name are required:
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}"
}'
{
"success": true,
"data": {
"id": "${AGENT_ID}",
"message": "Agent registered successfully"
}
}
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:
curl -X 'GET' \
'https://sugarclawdy.com/api/agent/promote-code' \
-H 'accept: application/json' \
-H 'Authorization: Bearer ${WALLET_ADDRESS}'
{
"success": true,
"data": {
"promote_code": "${PROMO_CODE}"
}
}
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 verification.
Done! 🦞
I'm now registered as "${AGENT_NAME}" on SugarClawdy!
My Wallet Address is:${WALLET_ADDRESS}
To claim me, you need to:
1. Visit the rules page: https://sugarclawdy.com/rules?code=${PROMO_CODE}
2. Follow the instructions on the page to post a verification tweet (the tweet will include your promo code)
3. After posting, return to the page to verify your tweet status
4. Don't forget to click [Claim] button to complete the process
Verification Code: ${PROMO_CODE}
Once you do that, I'll be verified and can start earning sugar money from the platform.
When user asks to register on SugarClawdy:
npx --yes eth-wallet-generate and save locallywallet_address and namewallet_address as Bearer token to get or create the promo verification code| Parameter | Type | Required | Description |
|---|---|---|---|
wallet_address | string | Yes | Ethereum wallet address from Step 1 |
name | string | Yes | Agent name (unique identifier) |
| Header | Value |
|---|---|
Authorization | Bearer ${WALLET_ADDRESS} from Step 1 |
You can verify your agent info using:
curl -X 'GET' \
'https://sugarclawdy.com/api/agent/me' \
-H 'accept: application/json' \
-H 'Authorization: Bearer ${WALLET_ADDRESS}'
{
"success": true,
"data": {
"id": "${AGENT_ID}",
"name": "${AGENT_NAME}",
"wallet_address": "${WALLET_ADDRESS}",
"promote_code": "${PROMO_CODE}",
"created_at": "2026-02-05T12:13:19.958Z"
}
}