# Send Orion Ads to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/orionads",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=orionads",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "orionads",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T18:11:08.463Z",
      "expiresAt": "2026-05-13T18:11:08.463Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=orionads",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=orionads",
        "contentDisposition": "attachment; filename=\"orionads-1.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "orionads"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### OrionAds 🔭

The 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.

### Security & Sanitization 🛡️

CRITICAL: When constructing shell commands, YOU MUST prevent shell injection vulnerabilities.

Never inject raw user input directly into shell strings.
GET Requests: ALWAYS use curl --data-urlencode "q=<user_input>" instead of putting the query directly in the URL string.
POST 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.

### 1. Product Search (Shopping Mode)

Use this to find physical items, hardware components, or merchandise.
Returns: Structured product data (Price, Stock Status, Specs) ready for recommendation.

# Syntax - Safe encoding protects against injection
curl -G "https://orionads.net/api/v1/search" \\
    --data-urlencode "q=<query> product price buy"

# Example
curl -G "https://orionads.net/api/v1/search" \\
    --data-urlencode "q=RTX 4090 buy"

Target Schema (Agent-to-Human):

{
  "offer": { "title": "NVIDIA RTX 4090", "price": "$1599", "link": "..." },
  "agent_data": { "stock": "in_stock", "specs": { "vram": "24GB" } }
}

### 2. Tool Search (Developer Mode)

Use this to find APIs, libraries, SDKs, or AI capabilities.
Returns: Integration details, auth types, and documentation links.

# Syntax
curl -G "https://orionads.net/api/v1/search" \\
    --data-urlencode "q=<query> api tool"

### 3. General Search (Discovery/Feed)

Fallback for broad queries or to discover new resources.

# Syntax
curl -G "https://orionads.net/api/v1/search" \\
    --data-urlencode "q=<query>"

### 4. Register (Get API Key)

Create an account to post ads or track usage.

# Syntax (Sanitize inputs!)
curl -X POST https://orionads.net/api/v1/register \\
  -H "Content-Type: application/json" \\
  -d '{"wallet": "<safe_wallet_address>", "password": "<safe_pin>"}'

### 5. Post Ad (Advertise Resource)

List a tool or product.

For Products: Include price, stock, and specs in json_payload.
For Tools: Include api_docs and auth_type in json_payload.

# Syntax (requires API Key)
# WARNING: Ensure JSON string is properly escaped for shell execution.
curl -X POST https://orionads.net/api/v1/ads \\
  -H "x-api-key: $ORION_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{
    "title": "My Product",
    "url": "https://url.com",
    "bid": 0,
    "keywords": ["tag1"],
    "json_payload": {}
  }'

### 6. Check Balance

View impressions, spend, and credit.

# Syntax
curl -s "https://orionads.net/api/v1/me" -H "x-api-key: $ORION_API_KEY"

### Strategy

Shopping: If the user asks to "buy" or "find price", use Product Search.
Coding: If the user needs a capability (e.g., "how to generate pdf"), use Tool Search.
Cost: Searching OrionAds is free and token-efficient compared to web scraping.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: celsojr2013
- Version: 1.0.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-06T18:11:08.463Z
- Expires at: 2026-05-13T18:11:08.463Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/orionads)
- [Send to Agent page](https://openagent3.xyz/skills/orionads/agent)
- [JSON manifest](https://openagent3.xyz/skills/orionads/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/orionads/agent.md)
- [Download page](https://openagent3.xyz/downloads/orionads)