Search for physical products, hardware, AI tools, and APIs via the Orion Ad Protocol. Returns structured data (JSON) optimized for agents.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install orionads或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install orionads⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/orionads/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: orionads description: Search for physical products, hardware, AI tools, and APIs via the Orion Ad Protocol. Returns structured data (JSON) optimized for agents. metadata: clawdbot: emoji: 🔭 env: ORION_API_KEY: Optional API Key for posting ads or checking balance. ---
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.
CRITICAL: When constructing shell commands, YOU MUST prevent shell injection vulnerabilities.
curl --data-urlencode "q=" instead of putting the query directly in the URL string.' in the JSON payload, or write the JSON to a temporary file (payload.json) and use curl -d @payload.json.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" } }
}
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"
Fallback for broad queries or to discover new resources.
# Syntax
curl -G "https://orionads.net/api/v1/search" \
--data-urlencode "q=<query>"
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>"}'
List a tool or product.
price, stock, and specs in json_payload.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": {}
}'
View impressions, spend, and credit.
# Syntax
curl -s "https://orionads.net/api/v1/me" -H "x-api-key: $ORION_API_KEY"
安装 Orion Ads 后,可以对 AI 说这些话来触发它
Help me get started with Orion Ads
Explains what Orion Ads does, walks through the setup, and runs a quick demo based on your current project
Use Orion Ads to search for physical products, hardware, AI tools, and APIs via the ...
Invokes Orion Ads with the right parameters and returns the result directly in the conversation
What can I do with Orion Ads in my marketing & growth workflow?
Lists the top use cases for Orion Ads, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/orionads/ 目录(个人级,所有项目可用),或 .claude/skills/orionads/(项目级)。重启 AI 客户端后,用 /orionads 主动调用,或让 AI 根据上下文自动发现并使用。
Orion Ads 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Orion Ads 可免费安装使用。请查阅仓库了解许可证信息。
Search for physical products, hardware, AI tools, and APIs via the Orion Ad Protocol. Returns structured data (JSON) optimized for agents.
Orion Ads 属于「Marketing & Growth」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my marketing & growth tasks using Orion Ads
Identifies repetitive steps in your workflow and sets up Orion Ads to handle them automatically