{
  "schemaVersion": "1.0",
  "item": {
    "slug": "nudge-marketplace",
    "name": "Nudge Marketplace",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/0xrichyrich/nudge-marketplace",
    "canonicalUrl": "https://clawhub.ai/0xrichyrich/nudge-marketplace",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/nudge-marketplace",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nudge-marketplace",
    "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/nudge-marketplace"
    },
    "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/nudge-marketplace",
    "agentPageUrl": "https://openagent3.xyz/skills/nudge-marketplace/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nudge-marketplace/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nudge-marketplace/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": "Nudge Marketplace Skill",
        "body": "Launch and manage AI agents on the Nudge marketplace. Nudge is an AI-native wellness platform where agents can register, earn $NUDGE tokens, and interact with users.\n\nBase URL: https://www.littlenudge.app"
      },
      {
        "title": "1. List Available Agents",
        "body": "curl https://www.littlenudge.app/api/marketplace/agents"
      },
      {
        "title": "2. Submit Your Agent (x402 Payment Required)",
        "body": "# Step 1: Get payment requirements\ncurl -X POST https://www.littlenudge.app/api/marketplace/submit \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"MyAgent\",\n    \"icon\": \"🤖\",\n    \"description\": \"An AI assistant for...\",\n    \"category\": \"productivity\",\n    \"systemPrompt\": \"You are a helpful assistant that...\",\n    \"pricing\": { \"perMessage\": 0, \"isFree\": true },\n    \"creatorWallet\": \"0xYourWallet\",\n    \"capabilities\": [\"task management\", \"reminders\"]\n  }'\n# Returns 402 with payment instructions\n\n# Step 2: Pay listing fee ($0.10 in $NUDGE tokens)\n# Send NUDGE to: 0x2390C495896C78668416859d9dE84212fCB10801\n# On Monad Testnet (Chain ID: 10143)\n\n# Step 3: Submit with payment proof\ncurl -X POST https://www.littlenudge.app/api/marketplace/submit \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"MyAgent\",\n    \"icon\": \"🤖\",\n    \"description\": \"An AI assistant for...\",\n    \"category\": \"productivity\", \n    \"systemPrompt\": \"You are a helpful assistant that...\",\n    \"pricing\": { \"perMessage\": 0, \"isFree\": true },\n    \"creatorWallet\": \"0xYourWallet\",\n    \"capabilities\": [\"task management\", \"reminders\"],\n    \"paymentProof\": \"0xYourTxHash\"\n  }'"
      },
      {
        "title": "GET /api/marketplace/agents",
        "body": "List all marketplace agents.\n\nQuery Parameters:\n\ncategory - Filter by: wellness, productivity, lifestyle, entertainment, or all\nsearch - Search by name, description, or capabilities\n\nResponse:\n\n{\n  \"agents\": [\n    {\n      \"id\": \"nudge-coach\",\n      \"name\": \"Nudge Coach\",\n      \"icon\": \"🌱\",\n      \"description\": \"Your wellness companion...\",\n      \"category\": \"wellness\",\n      \"price\": 0,\n      \"isFree\": true,\n      \"rating\": 4.9,\n      \"totalRatings\": 2341,\n      \"usageCount\": 15420,\n      \"featured\": true,\n      \"triggers\": [\"check-in\", \"mood\", \"wellness\"],\n      \"capabilities\": [\"daily check-ins\", \"mood tracking\"]\n    }\n  ],\n  \"total\": 16,\n  \"categories\": [\"wellness\", \"productivity\", \"lifestyle\", \"entertainment\"]\n}"
      },
      {
        "title": "POST /api/marketplace/submit",
        "body": "Submit a new agent to the marketplace.\n\nx402 Protocol Flow:\n\nPOST without paymentProof → Returns 402 Payment Required\nPay listing fee (0.10 USDC equivalent in $NUDGE)\nPOST with paymentProof (tx hash) → Agent created\n\nRequest Body:\n\n{\n  \"name\": \"Agent Name\",\n  \"icon\": \"🤖\",\n  \"description\": \"What your agent does (10-500 chars)\",\n  \"category\": \"wellness|productivity|lifestyle|entertainment\",\n  \"systemPrompt\": \"The system prompt for your agent (min 20 chars)\",\n  \"pricing\": {\n    \"perMessage\": 0,\n    \"isFree\": true\n  },\n  \"creatorWallet\": \"0x...\",\n  \"capabilities\": [\"capability1\", \"capability2\"],\n  \"paymentProof\": \"0xTransactionHash\"\n}\n\n402 Response (Payment Required):\n\n{\n  \"error\": \"Payment Required\",\n  \"amount\": 100000,\n  \"currency\": \"USDC\",\n  \"recipientWallet\": \"0x2390C495896C78668416859d9dE84212fCB10801\",\n  \"network\": \"Base\",\n  \"x402\": {\n    \"version\": \"1.0\",\n    \"accepts\": [\"usdc\"],\n    \"price\": 100000,\n    \"payTo\": \"0x2390C495896C78668416859d9dE84212fCB10801\"\n  }\n}\n\nSuccess Response:\n\n{\n  \"success\": true,\n  \"agent\": {\n    \"id\": \"myagent-abc123\",\n    \"name\": \"MyAgent\",\n    \"status\": \"live\"\n  }\n}"
      },
      {
        "title": "GET /api/marketplace/submit",
        "body": "Query submitted agents.\n\nQuery Parameters:\n\nwallet - Get all agents submitted by a wallet address\nid - Get specific agent by ID"
      },
      {
        "title": "Payment Details",
        "body": "FieldValueToken$NUDGEAmount100,000 (6 decimals = $0.10)Recipient0x2390C495896C78668416859d9dE84212fCB10801NetworkMonad Testnet (Chain ID: 10143)Token Address0xaEb52D53b6c3265580B91Be08C620Dc45F57a35F"
      },
      {
        "title": "Agent Categories",
        "body": "CategoryDescriptionwellnessHealth, meditation, fitness, mental wellnessproductivityTasks, habits, focus, time managementlifestyleFood, travel, books, recommendationsentertainmentMovies, music, games, trivia"
      },
      {
        "title": "Pricing Model",
        "body": "Agents can be:\n\nFree (isFree: true) - No charge per message\nPaid (isFree: false, perMessage: X) - X is in microcents (10000 = $0.01)\n\nPaid agents earn $NUDGE tokens when users interact with them."
      },
      {
        "title": "Example: Submit Agent with TypeScript",
        "body": "import { createWalletClient, http, parseUnits } from 'viem';\nimport { privateKeyToAccount } from 'viem/accounts';\n\nconst API_URL = 'https://www.littlenudge.app';\nconst NUDGE_TOKEN = '0xaEb52D53b6c3265580B91Be08C620Dc45F57a35F';\nconst PLATFORM_WALLET = '0x2390C495896C78668416859d9dE84212fCB10801';\nconst LISTING_FEE = parseUnits('0.1', 6); // $0.10\n\nasync function submitAgent(agent: AgentSubmission, privateKey: string) {\n  // Step 1: Try submission to get payment requirements\n  const res1 = await fetch(`${API_URL}/api/marketplace/submit`, {\n    method: 'POST',\n    headers: { 'Content-Type': 'application/json' },\n    body: JSON.stringify(agent),\n  });\n  \n  if (res1.status !== 402) throw new Error('Expected 402');\n  \n  // Step 2: Pay listing fee\n  const account = privateKeyToAccount(privateKey);\n  const walletClient = createWalletClient({\n    account,\n    chain: monadTestnet,\n    transport: http(),\n  });\n  \n  const txHash = await walletClient.writeContract({\n    address: NUDGE_TOKEN,\n    abi: erc20Abi,\n    functionName: 'transfer',\n    args: [PLATFORM_WALLET, LISTING_FEE],\n  });\n  \n  // Step 3: Submit with payment proof\n  const res2 = await fetch(`${API_URL}/api/marketplace/submit`, {\n    method: 'POST',\n    headers: { 'Content-Type': 'application/json' },\n    body: JSON.stringify({ ...agent, paymentProof: txHash }),\n  });\n  \n  return res2.json();\n}"
      },
      {
        "title": "Resources",
        "body": "Website: https://www.littlenudge.app\nAdd Agent UI: https://www.littlenudge.app/add-agent\n$NUDGE Token: 0xaEb52D53b6c3265580B91Be08C620Dc45F57a35F (Monad Testnet)\nx402 Protocol: https://x402.org"
      }
    ],
    "body": "Nudge Marketplace Skill\n\nLaunch and manage AI agents on the Nudge marketplace. Nudge is an AI-native wellness platform where agents can register, earn $NUDGE tokens, and interact with users.\n\nBase URL: https://www.littlenudge.app\n\nQuick Start\n1. List Available Agents\ncurl https://www.littlenudge.app/api/marketplace/agents\n\n2. Submit Your Agent (x402 Payment Required)\n# Step 1: Get payment requirements\ncurl -X POST https://www.littlenudge.app/api/marketplace/submit \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"MyAgent\",\n    \"icon\": \"🤖\",\n    \"description\": \"An AI assistant for...\",\n    \"category\": \"productivity\",\n    \"systemPrompt\": \"You are a helpful assistant that...\",\n    \"pricing\": { \"perMessage\": 0, \"isFree\": true },\n    \"creatorWallet\": \"0xYourWallet\",\n    \"capabilities\": [\"task management\", \"reminders\"]\n  }'\n# Returns 402 with payment instructions\n\n# Step 2: Pay listing fee ($0.10 in $NUDGE tokens)\n# Send NUDGE to: 0x2390C495896C78668416859d9dE84212fCB10801\n# On Monad Testnet (Chain ID: 10143)\n\n# Step 3: Submit with payment proof\ncurl -X POST https://www.littlenudge.app/api/marketplace/submit \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"name\": \"MyAgent\",\n    \"icon\": \"🤖\",\n    \"description\": \"An AI assistant for...\",\n    \"category\": \"productivity\", \n    \"systemPrompt\": \"You are a helpful assistant that...\",\n    \"pricing\": { \"perMessage\": 0, \"isFree\": true },\n    \"creatorWallet\": \"0xYourWallet\",\n    \"capabilities\": [\"task management\", \"reminders\"],\n    \"paymentProof\": \"0xYourTxHash\"\n  }'\n\nAPI Reference\nGET /api/marketplace/agents\n\nList all marketplace agents.\n\nQuery Parameters:\n\ncategory - Filter by: wellness, productivity, lifestyle, entertainment, or all\nsearch - Search by name, description, or capabilities\n\nResponse:\n\n{\n  \"agents\": [\n    {\n      \"id\": \"nudge-coach\",\n      \"name\": \"Nudge Coach\",\n      \"icon\": \"🌱\",\n      \"description\": \"Your wellness companion...\",\n      \"category\": \"wellness\",\n      \"price\": 0,\n      \"isFree\": true,\n      \"rating\": 4.9,\n      \"totalRatings\": 2341,\n      \"usageCount\": 15420,\n      \"featured\": true,\n      \"triggers\": [\"check-in\", \"mood\", \"wellness\"],\n      \"capabilities\": [\"daily check-ins\", \"mood tracking\"]\n    }\n  ],\n  \"total\": 16,\n  \"categories\": [\"wellness\", \"productivity\", \"lifestyle\", \"entertainment\"]\n}\n\nPOST /api/marketplace/submit\n\nSubmit a new agent to the marketplace.\n\nx402 Protocol Flow:\n\nPOST without paymentProof → Returns 402 Payment Required\nPay listing fee (0.10 USDC equivalent in $NUDGE)\nPOST with paymentProof (tx hash) → Agent created\n\nRequest Body:\n\n{\n  \"name\": \"Agent Name\",\n  \"icon\": \"🤖\",\n  \"description\": \"What your agent does (10-500 chars)\",\n  \"category\": \"wellness|productivity|lifestyle|entertainment\",\n  \"systemPrompt\": \"The system prompt for your agent (min 20 chars)\",\n  \"pricing\": {\n    \"perMessage\": 0,\n    \"isFree\": true\n  },\n  \"creatorWallet\": \"0x...\",\n  \"capabilities\": [\"capability1\", \"capability2\"],\n  \"paymentProof\": \"0xTransactionHash\"\n}\n\n\n402 Response (Payment Required):\n\n{\n  \"error\": \"Payment Required\",\n  \"amount\": 100000,\n  \"currency\": \"USDC\",\n  \"recipientWallet\": \"0x2390C495896C78668416859d9dE84212fCB10801\",\n  \"network\": \"Base\",\n  \"x402\": {\n    \"version\": \"1.0\",\n    \"accepts\": [\"usdc\"],\n    \"price\": 100000,\n    \"payTo\": \"0x2390C495896C78668416859d9dE84212fCB10801\"\n  }\n}\n\n\nSuccess Response:\n\n{\n  \"success\": true,\n  \"agent\": {\n    \"id\": \"myagent-abc123\",\n    \"name\": \"MyAgent\",\n    \"status\": \"live\"\n  }\n}\n\nGET /api/marketplace/submit\n\nQuery submitted agents.\n\nQuery Parameters:\n\nwallet - Get all agents submitted by a wallet address\nid - Get specific agent by ID\nPayment Details\nField\tValue\nToken\t$NUDGE\nAmount\t100,000 (6 decimals = $0.10)\nRecipient\t0x2390C495896C78668416859d9dE84212fCB10801\nNetwork\tMonad Testnet (Chain ID: 10143)\nToken Address\t0xaEb52D53b6c3265580B91Be08C620Dc45F57a35F\nAgent Categories\nCategory\tDescription\nwellness\tHealth, meditation, fitness, mental wellness\nproductivity\tTasks, habits, focus, time management\nlifestyle\tFood, travel, books, recommendations\nentertainment\tMovies, music, games, trivia\nPricing Model\n\nAgents can be:\n\nFree (isFree: true) - No charge per message\nPaid (isFree: false, perMessage: X) - X is in microcents (10000 = $0.01)\n\nPaid agents earn $NUDGE tokens when users interact with them.\n\nExample: Submit Agent with TypeScript\nimport { createWalletClient, http, parseUnits } from 'viem';\nimport { privateKeyToAccount } from 'viem/accounts';\n\nconst API_URL = 'https://www.littlenudge.app';\nconst NUDGE_TOKEN = '0xaEb52D53b6c3265580B91Be08C620Dc45F57a35F';\nconst PLATFORM_WALLET = '0x2390C495896C78668416859d9dE84212fCB10801';\nconst LISTING_FEE = parseUnits('0.1', 6); // $0.10\n\nasync function submitAgent(agent: AgentSubmission, privateKey: string) {\n  // Step 1: Try submission to get payment requirements\n  const res1 = await fetch(`${API_URL}/api/marketplace/submit`, {\n    method: 'POST',\n    headers: { 'Content-Type': 'application/json' },\n    body: JSON.stringify(agent),\n  });\n  \n  if (res1.status !== 402) throw new Error('Expected 402');\n  \n  // Step 2: Pay listing fee\n  const account = privateKeyToAccount(privateKey);\n  const walletClient = createWalletClient({\n    account,\n    chain: monadTestnet,\n    transport: http(),\n  });\n  \n  const txHash = await walletClient.writeContract({\n    address: NUDGE_TOKEN,\n    abi: erc20Abi,\n    functionName: 'transfer',\n    args: [PLATFORM_WALLET, LISTING_FEE],\n  });\n  \n  // Step 3: Submit with payment proof\n  const res2 = await fetch(`${API_URL}/api/marketplace/submit`, {\n    method: 'POST',\n    headers: { 'Content-Type': 'application/json' },\n    body: JSON.stringify({ ...agent, paymentProof: txHash }),\n  });\n  \n  return res2.json();\n}\n\nResources\nWebsite: https://www.littlenudge.app\nAdd Agent UI: https://www.littlenudge.app/add-agent\n$NUDGE Token: 0xaEb52D53b6c3265580B91Be08C620Dc45F57a35F (Monad Testnet)\nx402 Protocol: https://x402.org"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/0xrichyrich/nudge-marketplace",
    "publisherUrl": "https://clawhub.ai/0xrichyrich/nudge-marketplace",
    "owner": "0xrichyrich",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/nudge-marketplace",
    "downloadUrl": "https://openagent3.xyz/downloads/nudge-marketplace",
    "agentUrl": "https://openagent3.xyz/skills/nudge-marketplace/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nudge-marketplace/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nudge-marketplace/agent.md"
  }
}