Interact with Signet onchain advertising on Hunt Town. Use when the user wants to check spotlight ad prices, list current ads/signatures, or post a URL to the Signet spotlight. Supports x402 payment protocol for programmatic ad placement by AI agents.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install signet或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install signet⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/signet/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: signet description: Interact with Signet onchain advertising on Hunt Town. Use when the user wants to check spotlight ad prices, list current ads/signatures, or post a URL to the Signet spotlight. Supports x402 payment protocol for programmatic ad placement by AI agents. ---
Signet is an onchain advertising protocol on Base (Hunt Town Co-op). URLs compete for the spotlight slot, backed by HUNT tokens.
Install and use the @signet-base/cli tool:
# Estimate cost for spotlight placement
npx @signet-base/cli estimate --hours 6
# List recent signatures
npx @signet-base/cli list --count 10
# Post a URL (simulate first to check cost)
npx @signet-base/cli post --url https://example.com --hours 6 --simulate
# Post for real (requires PRIVATE_KEY env or --private-key)
PRIVATE_KEY=0x... npx @signet-base/cli post --url https://example.com --hours 6
--hours <0-24>, --simulate--count --url , --hours <0-24>, --private-key , --simulateThe --simulate flag on post runs the full x402 flow (estimate, get 402 requirements, create payment) but stops before submitting. Use it to verify costs before committing.
Base URL: https://signet.sebayaki.com
curl "https://signet.sebayaki.com/api/x402/estimate?guaranteeHours=0"
Response:
{
"guaranteeHours": 0,
"estimatedUSDC": "12.28",
"estimatedUSDCRaw": "12280000",
"spotlightAvailable": true,
"spotlightRemainingSeconds": 0
}
guaranteeHours (0-24): hours the spotlight is guaranteed. 0 = can be overtaken immediately.
curl "https://signet.sebayaki.com/api/signature/list?startIndex=0&endIndex=5"
Returns { signatures: [{ signatureIndex, url, huntAmount, viewCount, clickCount, metadata, timestamp, userWallet }] }.
# Step 1: POST without payment → 402 with requirements
curl -X POST https://signet.sebayaki.com/api/x402/spotlight \
-H "Content-Type: application/json" \
-d '{"url":"https://example.com","guaranteeHours":0}'
# Step 2: POST with payment header → 200
curl -X POST https://signet.sebayaki.com/api/x402/spotlight \
-H "Content-Type: application/json" \
-H "X-402: <encoded-payment>" \
-d '{"url":"https://example.com","guaranteeHours":0}'
The x402 payment flow:
accepts array (USDC amount, payTo address, network)@x402/core and @x402/evm安装 Signet 后,可以对 AI 说这些话来触发它
Help me get started with Signet
Explains what Signet does, walks through the setup, and runs a quick demo based on your current project
Use Signet to interact with Signet onchain advertising on Hunt Town
Invokes Signet with the right parameters and returns the result directly in the conversation
What can I do with Signet in my marketing & growth workflow?
Lists the top use cases for Signet, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/signet/ 目录(个人级,所有项目可用),或 .claude/skills/signet/(项目级)。重启 AI 客户端后,用 /signet 主动调用,或让 AI 根据上下文自动发现并使用。
Signet 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Signet 可免费安装使用。请查阅仓库了解许可证信息。
Interact with Signet onchain advertising on Hunt Town. Use when the user wants to check spotlight ad prices, list current ads/signatures, or post a URL to the Signet spotlight. Supports x402 payment protocol for programmatic ad placement by AI agents.
Signet 属于「Marketing & Growth」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my marketing & growth tasks using Signet
Identifies repetitive steps in your workflow and sets up Signet to handle them automatically