{
  "schemaVersion": "1.0",
  "item": {
    "slug": "signet",
    "name": "Signet",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/sebayaki/signet",
    "canonicalUrl": "https://clawhub.ai/sebayaki/signet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/signet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=signet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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/signet"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/signet",
    "agentPageUrl": "https://openagent3.xyz/skills/signet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/signet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/signet/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Signet",
        "body": "Signet is an onchain advertising protocol on Base (Hunt Town Co-op). URLs compete for the spotlight slot, backed by HUNT tokens."
      },
      {
        "title": "CLI Tool",
        "body": "Install and use the @signet-base/cli tool:\n\n# Estimate cost for spotlight placement\nnpx @signet-base/cli estimate --hours 6\n\n# List recent signatures\nnpx @signet-base/cli list --count 10\n\n# Post a URL (simulate first to check cost)\nnpx @signet-base/cli post --url https://example.com --hours 6 --simulate\n\n# Post for real (requires PRIVATE_KEY env or --private-key)\nPRIVATE_KEY=0x... npx @signet-base/cli post --url https://example.com --hours 6"
      },
      {
        "title": "Commands",
        "body": "estimate — Get estimated USDC cost. Options: --hours <0-24>, --simulate\nlist — List recent spotlight signatures. Options: --count <n>\npost — Place a URL on the spotlight via x402 payment. Options: --url <url>, --hours <0-24>, --private-key <key>, --simulate\n\nThe --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."
      },
      {
        "title": "API (Direct HTTP)",
        "body": "Base URL: https://signet.sebayaki.com"
      },
      {
        "title": "Estimate Cost",
        "body": "curl \"https://signet.sebayaki.com/api/x402/estimate?guaranteeHours=0\"\n\nResponse:\n\n{\n  \"guaranteeHours\": 0,\n  \"estimatedUSDC\": \"12.28\",\n  \"estimatedUSDCRaw\": \"12280000\",\n  \"spotlightAvailable\": true,\n  \"spotlightRemainingSeconds\": 0\n}\n\nguaranteeHours (0-24): hours the spotlight is guaranteed. 0 = can be overtaken immediately."
      },
      {
        "title": "List Signatures",
        "body": "curl \"https://signet.sebayaki.com/api/signature/list?startIndex=0&endIndex=5\"\n\nReturns { signatures: [{ signatureIndex, url, huntAmount, viewCount, clickCount, metadata, timestamp, userWallet }] }."
      },
      {
        "title": "Post Spotlight (x402)",
        "body": "# Step 1: POST without payment → 402 with requirements\ncurl -X POST https://signet.sebayaki.com/api/x402/spotlight \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"url\":\"https://example.com\",\"guaranteeHours\":0}'\n\n# Step 2: POST with payment header → 200\ncurl -X POST https://signet.sebayaki.com/api/x402/spotlight \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-402: <encoded-payment>\" \\\n  -d '{\"url\":\"https://example.com\",\"guaranteeHours\":0}'\n\nThe x402 payment flow:\n\nServer returns 402 with accepts array (USDC amount, payTo address, network)\nClient signs a USDC payment (Permit2 on Base) using @x402/core and @x402/evm\nClient retries with payment header\nServer verifies via facilitator, executes onchain tx, settles payment"
      }
    ],
    "body": "Signet\n\nSignet is an onchain advertising protocol on Base (Hunt Town Co-op). URLs compete for the spotlight slot, backed by HUNT tokens.\n\nCLI Tool\n\nInstall and use the @signet-base/cli tool:\n\n# Estimate cost for spotlight placement\nnpx @signet-base/cli estimate --hours 6\n\n# List recent signatures\nnpx @signet-base/cli list --count 10\n\n# Post a URL (simulate first to check cost)\nnpx @signet-base/cli post --url https://example.com --hours 6 --simulate\n\n# Post for real (requires PRIVATE_KEY env or --private-key)\nPRIVATE_KEY=0x... npx @signet-base/cli post --url https://example.com --hours 6\n\nCommands\nestimate — Get estimated USDC cost. Options: --hours <0-24>, --simulate\nlist — List recent spotlight signatures. Options: --count <n>\npost — Place a URL on the spotlight via x402 payment. Options: --url <url>, --hours <0-24>, --private-key <key>, --simulate\n\nThe --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.\n\nAPI (Direct HTTP)\n\nBase URL: https://signet.sebayaki.com\n\nEstimate Cost\ncurl \"https://signet.sebayaki.com/api/x402/estimate?guaranteeHours=0\"\n\n\nResponse:\n\n{\n  \"guaranteeHours\": 0,\n  \"estimatedUSDC\": \"12.28\",\n  \"estimatedUSDCRaw\": \"12280000\",\n  \"spotlightAvailable\": true,\n  \"spotlightRemainingSeconds\": 0\n}\n\n\nguaranteeHours (0-24): hours the spotlight is guaranteed. 0 = can be overtaken immediately.\n\nList Signatures\ncurl \"https://signet.sebayaki.com/api/signature/list?startIndex=0&endIndex=5\"\n\n\nReturns { signatures: [{ signatureIndex, url, huntAmount, viewCount, clickCount, metadata, timestamp, userWallet }] }.\n\nPost Spotlight (x402)\n# Step 1: POST without payment → 402 with requirements\ncurl -X POST https://signet.sebayaki.com/api/x402/spotlight \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"url\":\"https://example.com\",\"guaranteeHours\":0}'\n\n# Step 2: POST with payment header → 200\ncurl -X POST https://signet.sebayaki.com/api/x402/spotlight \\\n  -H \"Content-Type: application/json\" \\\n  -H \"X-402: <encoded-payment>\" \\\n  -d '{\"url\":\"https://example.com\",\"guaranteeHours\":0}'\n\n\nThe x402 payment flow:\n\nServer returns 402 with accepts array (USDC amount, payTo address, network)\nClient signs a USDC payment (Permit2 on Base) using @x402/core and @x402/evm\nClient retries with payment header\nServer verifies via facilitator, executes onchain tx, settles payment"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/sebayaki/signet",
    "publisherUrl": "https://clawhub.ai/sebayaki/signet",
    "owner": "sebayaki",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/signet",
    "downloadUrl": "https://openagent3.xyz/downloads/signet",
    "agentUrl": "https://openagent3.xyz/skills/signet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/signet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/signet/agent.md"
  }
}