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

### PRISM API SDK

The elite agentic finance toolkit. Drop-in market intelligence for AI agents, Claude Code, Cursor, or autonomous trading bots.

### Quick Start

npm install prismapi-sdk

import { PrismClient } from 'prismapi-sdk';

const prism = new PrismClient({ apiKey: 'your-api-key' });

// Resolve any symbol to canonical data (sub-50ms)
const btc = await prism.resolve('BTC');
// → { canonical: 'BTC', name: 'Bitcoin', price: 71514.84, confidence: 0.97 }

// Batch resolve for trading agents
const assets = await prism.resolveBatch(['BTC', 'ETH', 'AAPL', 'SOL']);

// Get family (wrapped tokens, derivatives)
const family = await prism.getFamily('BTC');
// → [BTC, WBTC, cbBTC, tBTC, renBTC]

### Key Features

FeatureDescriptionCanonical ResolutionResolve any ticker, contract, or symbol to single source of truthSub-50ms LatencyCache-first architecture with 4-layer resolution100+ EndpointsCrypto, DeFi, stocks, forex, macro, predictionsFamily GroupingBTC → WBTC, cbBTC, tBTC in one queryMCP-NativeBuilt for OpenClaw, Claude, function calling

### API Categories

Resolution (12 endpoints) - Symbol disambiguation, batch resolve, family grouping
Crypto (35+ endpoints) - Prices, markets, OHLCV, metadata
TradFi (30+ endpoints) - Stocks, ETFs, forex, financials
DEX (25+ endpoints) - Pairs, pools, trending tokens
DeFi - Yields, protocols, TVL
Predictions - Polymarket, Kalshi, sports odds

### Security Notes

Read-only API — fetches public market data only
No wallet access — does not interact with wallets or private keys
No trading — cannot execute trades
Data only — returns JSON market data

### Links

Docs: https://prismapi.ai/docs
npm: https://www.npmjs.com/package/prismapi-sdk
GitHub: https://github.com/Strykr-Prism/PRISM-OS-SDK
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: StrykrAgent
- Version: 0.2.1
## 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-06T20:37:53.652Z
- Expires at: 2026-05-13T20:37:53.652Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/prismapi-sdk)
- [Send to Agent page](https://openagent3.xyz/skills/prismapi-sdk/agent)
- [JSON manifest](https://openagent3.xyz/skills/prismapi-sdk/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/prismapi-sdk/agent.md)
- [Download page](https://openagent3.xyz/downloads/prismapi-sdk)