# Send Openclaw Skill 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": "agenthc-market-intelligence",
    "name": "Openclaw Skill",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/traderhc123/agenthc-market-intelligence",
    "canonicalUrl": "https://clawhub.ai/traderhc123/agenthc-market-intelligence",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/agenthc-market-intelligence",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agenthc-market-intelligence",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/agenthc.sh",
      "scripts/setup.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "agenthc-market-intelligence",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-06T16:33:24.745Z",
      "expiresAt": "2026-05-13T16:33:24.745Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agenthc-market-intelligence",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=agenthc-market-intelligence",
        "contentDisposition": "attachment; filename=\"agenthc-market-intelligence-2.4.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "agenthc-market-intelligence"
      },
      "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/agenthc-market-intelligence"
    },
    "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/agenthc-market-intelligence",
    "downloadUrl": "https://openagent3.xyz/downloads/agenthc-market-intelligence",
    "agentUrl": "https://openagent3.xyz/skills/agenthc-market-intelligence/agent",
    "manifestUrl": "https://openagent3.xyz/skills/agenthc-market-intelligence/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/agenthc-market-intelligence/agent.md"
  }
}
```
## Documentation

### Stock Market Intelligence

Market data API for AI agents and developers. Covers equities, fixed income, crypto, and macro. Real-time alerts via webhook and Discord. Bitcoin Lightning micropayments. Built by @traderhc.

### For AI Agents

export AGENTHC_API_KEY=$(curl -s -X POST "https://api.traderhc.com/api/v1/register" \\
  -H "Content-Type: application/json" \\
  -d '{"name": "MyAgent"}' | jq -r '.api_key')

Free, no KYC, no credit card. Query any free endpoint:

curl -s "https://api.traderhc.com/api/v1/data/overview" \\
  -H "X-API-Key: $AGENTHC_API_KEY" | jq '.data'

### Interactive Setup

bash scripts/setup.sh

### Non-Interactive (CI/scripts)

export AGENTHC_API_KEY=$(bash scripts/setup.sh --auto)

### What's Available

TierCoverageCostFreeMarket overview, educational content$0PremiumEquities, fixed income, macro, crypto, volatility~$50/moInstitutionalFull platform access with advanced analytics~$500/mo

See api.traderhc.com/docs for the full endpoint catalog.

### Agent-Optimized Format

Use format=agent for actionable signals:

curl -s "https://api.traderhc.com/api/v1/data/overview?format=agent" \\
  -H "X-API-Key: $AGENTHC_API_KEY" | jq '.signals'

### Compact Format

Use format=compact for reduced token usage:

curl -s "https://api.traderhc.com/api/v1/data/overview?format=compact" \\
  -H "X-API-Key: $AGENTHC_API_KEY" | jq '.'

### Batch Queries (Premium+)

Query multiple endpoints in one request:

curl -s -X POST "https://api.traderhc.com/api/v1/data/batch" \\
  -H "X-API-Key: $AGENTHC_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"endpoints": ["overview", "fixed_income", "macro"]}' | jq '.'

### Alerts

Subscribe to real-time market alerts via webhook or Discord:

# List available alert types
curl -s "https://api.traderhc.com/api/v1/alerts" \\
  -H "X-API-Key: $AGENTHC_API_KEY" | jq '.alerts'

# Subscribe via webhook
curl -s -X POST "https://api.traderhc.com/api/v1/alerts/subscribe" \\
  -H "X-API-Key: $AGENTHC_API_KEY" \\
  -H "Content-Type: application/json" \\
  -d '{"type": "market_events", "callback_url": "https://your-agent.com/webhook"}' | jq '.'

### Lightning Payment (L402)

For per-request payment without registration:

Request a premium endpoint without auth
Receive 402 response with Lightning invoice
Pay the invoice (any Lightning wallet)
Re-request with Authorization: L402 <macaroon>:<preimage>

### Pricing

TierRateCostFree10/min, 100/day$0Premium60/min, 5,000/day~$50/mo (50K sats)Institutional120/min, 50,000/day~$500/mo (500K sats)

Payment via Bitcoin Lightning Network. Instant settlement, no KYC.

### Disclaimer

All data and analysis is for educational and informational purposes only. Not financial advice. Not a registered investment advisor. Always do your own research.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: traderhc123
- Version: 2.4.0
## 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-06T16:33:24.745Z
- Expires at: 2026-05-13T16:33:24.745Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/agenthc-market-intelligence)
- [Send to Agent page](https://openagent3.xyz/skills/agenthc-market-intelligence/agent)
- [JSON manifest](https://openagent3.xyz/skills/agenthc-market-intelligence/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/agenthc-market-intelligence/agent.md)
- [Download page](https://openagent3.xyz/downloads/agenthc-market-intelligence)