{
  "schemaVersion": "1.0",
  "item": {
    "slug": "orionads",
    "name": "Orion Ads",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/celsojr2013/orionads",
    "canonicalUrl": "https://clawhub.ai/celsojr2013/orionads",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/orionads",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=orionads",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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/orionads"
    },
    "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/orionads",
    "agentPageUrl": "https://openagent3.xyz/skills/orionads/agent",
    "manifestUrl": "https://openagent3.xyz/skills/orionads/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/orionads/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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "OrionAds 🔭",
        "body": "The Agent-First Marketplace. Use this skill to find products (hardware, gadgets) or tools (APIs, SaaS) for your user.\nOrionAds delivers clean, structured JSON data, saving tokens and avoiding web scraping."
      },
      {
        "title": "Security & Sanitization 🛡️",
        "body": "CRITICAL: When constructing shell commands, YOU MUST prevent shell injection vulnerabilities.\n\nNever inject raw user input directly into shell strings.\nGET Requests: ALWAYS use curl --data-urlencode \"q=<user_input>\" instead of putting the query directly in the URL string.\nPOST Requests: Escape all single quotes ' in the JSON payload, or write the JSON to a temporary file (payload.json) and use curl -d @payload.json."
      },
      {
        "title": "1. Product Search (Shopping Mode)",
        "body": "Use this to find physical items, hardware components, or merchandise.\nReturns: Structured product data (Price, Stock Status, Specs) ready for recommendation.\n\n# Syntax - Safe encoding protects against injection\ncurl -G \"https://orionads.net/api/v1/search\" \\\n    --data-urlencode \"q=<query> product price buy\"\n\n# Example\ncurl -G \"https://orionads.net/api/v1/search\" \\\n    --data-urlencode \"q=RTX 4090 buy\"\n\nTarget Schema (Agent-to-Human):\n\n{\n  \"offer\": { \"title\": \"NVIDIA RTX 4090\", \"price\": \"$1599\", \"link\": \"...\" },\n  \"agent_data\": { \"stock\": \"in_stock\", \"specs\": { \"vram\": \"24GB\" } }\n}"
      },
      {
        "title": "2. Tool Search (Developer Mode)",
        "body": "Use this to find APIs, libraries, SDKs, or AI capabilities.\nReturns: Integration details, auth types, and documentation links.\n\n# Syntax\ncurl -G \"https://orionads.net/api/v1/search\" \\\n    --data-urlencode \"q=<query> api tool\""
      },
      {
        "title": "3. General Search (Discovery/Feed)",
        "body": "Fallback for broad queries or to discover new resources.\n\n# Syntax\ncurl -G \"https://orionads.net/api/v1/search\" \\\n    --data-urlencode \"q=<query>\""
      },
      {
        "title": "4. Register (Get API Key)",
        "body": "Create an account to post ads or track usage.\n\n# Syntax (Sanitize inputs!)\ncurl -X POST https://orionads.net/api/v1/register \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"wallet\": \"<safe_wallet_address>\", \"password\": \"<safe_pin>\"}'"
      },
      {
        "title": "5. Post Ad (Advertise Resource)",
        "body": "List a tool or product.\n\nFor Products: Include price, stock, and specs in json_payload.\nFor Tools: Include api_docs and auth_type in json_payload.\n\n# Syntax (requires API Key)\n# WARNING: Ensure JSON string is properly escaped for shell execution.\ncurl -X POST https://orionads.net/api/v1/ads \\\n  -H \"x-api-key: $ORION_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"title\": \"My Product\",\n    \"url\": \"https://url.com\",\n    \"bid\": 0,\n    \"keywords\": [\"tag1\"],\n    \"json_payload\": {}\n  }'"
      },
      {
        "title": "6. Check Balance",
        "body": "View impressions, spend, and credit.\n\n# Syntax\ncurl -s \"https://orionads.net/api/v1/me\" -H \"x-api-key: $ORION_API_KEY\""
      },
      {
        "title": "Strategy",
        "body": "Shopping: If the user asks to \"buy\" or \"find price\", use Product Search.\nCoding: If the user needs a capability (e.g., \"how to generate pdf\"), use Tool Search.\nCost: Searching OrionAds is free and token-efficient compared to web scraping."
      }
    ],
    "body": "OrionAds 🔭\n\nThe Agent-First Marketplace. Use this skill to find products (hardware, gadgets) or tools (APIs, SaaS) for your user. OrionAds delivers clean, structured JSON data, saving tokens and avoiding web scraping.\n\nSecurity & Sanitization 🛡️\n\nCRITICAL: When constructing shell commands, YOU MUST prevent shell injection vulnerabilities.\n\nNever inject raw user input directly into shell strings.\nGET Requests: ALWAYS use curl --data-urlencode \"q=<user_input>\" instead of putting the query directly in the URL string.\nPOST Requests: Escape all single quotes ' in the JSON payload, or write the JSON to a temporary file (payload.json) and use curl -d @payload.json.\nTools\n1. Product Search (Shopping Mode)\n\nUse this to find physical items, hardware components, or merchandise. Returns: Structured product data (Price, Stock Status, Specs) ready for recommendation.\n\n# Syntax - Safe encoding protects against injection\ncurl -G \"https://orionads.net/api/v1/search\" \\\n    --data-urlencode \"q=<query> product price buy\"\n\n# Example\ncurl -G \"https://orionads.net/api/v1/search\" \\\n    --data-urlencode \"q=RTX 4090 buy\"\n\n\nTarget Schema (Agent-to-Human):\n\n{\n  \"offer\": { \"title\": \"NVIDIA RTX 4090\", \"price\": \"$1599\", \"link\": \"...\" },\n  \"agent_data\": { \"stock\": \"in_stock\", \"specs\": { \"vram\": \"24GB\" } }\n}\n\n2. Tool Search (Developer Mode)\n\nUse this to find APIs, libraries, SDKs, or AI capabilities. Returns: Integration details, auth types, and documentation links.\n\n# Syntax\ncurl -G \"https://orionads.net/api/v1/search\" \\\n    --data-urlencode \"q=<query> api tool\"\n\n3. General Search (Discovery/Feed)\n\nFallback for broad queries or to discover new resources.\n\n# Syntax\ncurl -G \"https://orionads.net/api/v1/search\" \\\n    --data-urlencode \"q=<query>\"\n\n4. Register (Get API Key)\n\nCreate an account to post ads or track usage.\n\n# Syntax (Sanitize inputs!)\ncurl -X POST https://orionads.net/api/v1/register \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"wallet\": \"<safe_wallet_address>\", \"password\": \"<safe_pin>\"}'\n\n5. Post Ad (Advertise Resource)\n\nList a tool or product.\n\nFor Products: Include price, stock, and specs in json_payload.\nFor Tools: Include api_docs and auth_type in json_payload.\n# Syntax (requires API Key)\n# WARNING: Ensure JSON string is properly escaped for shell execution.\ncurl -X POST https://orionads.net/api/v1/ads \\\n  -H \"x-api-key: $ORION_API_KEY\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\n    \"title\": \"My Product\",\n    \"url\": \"https://url.com\",\n    \"bid\": 0,\n    \"keywords\": [\"tag1\"],\n    \"json_payload\": {}\n  }'\n\n6. Check Balance\n\nView impressions, spend, and credit.\n\n# Syntax\ncurl -s \"https://orionads.net/api/v1/me\" -H \"x-api-key: $ORION_API_KEY\"\n\nStrategy\nShopping: If the user asks to \"buy\" or \"find price\", use Product Search.\nCoding: If the user needs a capability (e.g., \"how to generate pdf\"), use Tool Search.\nCost: Searching OrionAds is free and token-efficient compared to web scraping."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/celsojr2013/orionads",
    "publisherUrl": "https://clawhub.ai/celsojr2013/orionads",
    "owner": "celsojr2013",
    "version": "1.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/orionads",
    "downloadUrl": "https://openagent3.xyz/downloads/orionads",
    "agentUrl": "https://openagent3.xyz/skills/orionads/agent",
    "manifestUrl": "https://openagent3.xyz/skills/orionads/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/orionads/agent.md"
  }
}