{
  "schemaVersion": "1.0",
  "item": {
    "slug": "strykr-prism",
    "name": "Strykr Prism",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/NextFrontierBuilds/strykr-prism",
    "canonicalUrl": "https://clawhub.ai/NextFrontierBuilds/strykr-prism",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/strykr-prism",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=strykr-prism",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/prism.sh",
      "skill.json"
    ],
    "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. 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. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-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/strykr-prism"
    },
    "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/strykr-prism",
    "agentPageUrl": "https://openagent3.xyz/skills/strykr-prism/agent",
    "manifestUrl": "https://openagent3.xyz/skills/strykr-prism/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/strykr-prism/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Finance Data API (Strykr PRISM)",
        "body": "One API for all markets. Real-time financial data for AI agents, trading bots, and fintech apps.\n\nPowered by Strykr PRISM — unified data across crypto, stocks, ETFs, forex, commodities, and DeFi."
      },
      {
        "title": "Configuration",
        "body": "Set your PRISM API key:\n\nexport PRISM_API_KEY=\"your-api-key\"\n\nBase URL: https://strykr-prism.up.railway.app"
      },
      {
        "title": "🔍 Asset Resolution (Core Feature)",
        "body": "Resolve ANY asset identifier to canonical form:\n\n# Resolve symbol (handles BTC, BTCUSD, XBT, bitcoin, etc.)\ncurl \"$PRISM_URL/resolve/BTC\"\ncurl \"$PRISM_URL/resolve/BTCUSDT\"\ncurl \"$PRISM_URL/resolve/bitcoin\"\n\n# Natural language resolution (for agents)\ncurl -X POST \"$PRISM_URL/agent/resolve\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"query\": \"price of ethereum\"}'\n\n# Batch resolve\ncurl -X POST \"$PRISM_URL/resolve/batch\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"symbols\": [\"BTC\", \"ETH\", \"AAPL\", \"GOLD\"]}'\n\n# Find trading venues for asset\ncurl \"$PRISM_URL/resolve/venues/BTC\""
      },
      {
        "title": "💰 Price Data",
        "body": "# Crypto price\ncurl \"$PRISM_URL/crypto/price/BTC\"\ncurl \"$PRISM_URL/crypto/price/ETH\"\n\n# Batch crypto prices\ncurl -X POST \"$PRISM_URL/batch/crypto/prices\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"symbols\": [\"BTC\", \"ETH\", \"SOL\"]}'\n\n# Stock quote\ncurl \"$PRISM_URL/stocks/AAPL/quote\"\n\n# Batch stock quotes\ncurl -X POST \"$PRISM_URL/stocks/batch/quotes\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"symbols\": [\"AAPL\", \"MSFT\", \"GOOGL\"]}'"
      },
      {
        "title": "📊 Market Overview",
        "body": "# Full market overview (crypto + tradfi)\ncurl \"$PRISM_URL/market/overview\"\n\n# Crypto global stats\ncurl \"$PRISM_URL/crypto/global\"\n\n# Fear & Greed Index\ncurl \"$PRISM_URL/market/fear-greed\"\n\n# Trending crypto\ncurl \"$PRISM_URL/crypto/trending\"\n\n# Stock movers\ncurl \"$PRISM_URL/stocks/gainers\"\ncurl \"$PRISM_URL/stocks/losers\"\ncurl \"$PRISM_URL/stocks/active\""
      },
      {
        "title": "🛡️ Token Security Analysis",
        "body": "# Analyze token for risks\ncurl \"$PRISM_URL/analyze/BTC\"\n\n# Copycat/scam detection\ncurl \"$PRISM_URL/analyze/copycat/PEPE\"\n\n# Check for rebrands (MATIC → POL)\ncurl \"$PRISM_URL/analyze/rebrand/MATIC\"\n\n# Fork detection\ncurl \"$PRISM_URL/analyze/fork/ETH\"\n\n# Holder analytics (whale concentration)\ncurl \"$PRISM_URL/analytics/holders/0x1234...\""
      },
      {
        "title": "🔥 Trending & Discovery",
        "body": "# Trending crypto overall\ncurl \"$PRISM_URL/crypto/trending\"\n\n# Solana Pump.fun bonding tokens (UNIQUE!)\ncurl \"$PRISM_URL/crypto/trending/solana/bonding\"\n\n# Graduated from bonding curve\ncurl \"$PRISM_URL/crypto/trending/solana/graduated\"\n\n# Trending DEX pools\ncurl \"$PRISM_URL/crypto/trending/pools\"\n\n# EVM trending\ncurl \"$PRISM_URL/crypto/trending/evm\"\n\n# Multi-day stock movers\ncurl \"$PRISM_URL/stocks/multi-day-movers\""
      },
      {
        "title": "📈 DeFi & Derivatives",
        "body": "# DEX pairs\ncurl \"$PRISM_URL/dex/pairs\"\n\n# Hyperliquid perps\ncurl \"$PRISM_URL/dex/hyperliquid/pairs\"\ncurl \"$PRISM_URL/dex/hyperliquid/BTC/funding\"\ncurl \"$PRISM_URL/dex/hyperliquid/BTC/oi\"\n\n# Cross-venue funding rates\ncurl \"$PRISM_URL/dex/BTC/funding/all\"\n\n# Cross-venue open interest\ncurl \"$PRISM_URL/dex/BTC/oi/all\""
      },
      {
        "title": "💼 Wallet & On-Chain",
        "body": "# Wallet balances (multi-chain)\ncurl \"$PRISM_URL/wallets/0xYourAddress/balances\"\n\n# Native balance only\ncurl \"$PRISM_URL/wallets/0xYourAddress/native\"\n\n# Supported chains\ncurl \"$PRISM_URL/chains\"\n\n# On-chain price\ncurl \"$PRISM_URL/analytics/price/onchain/0xContractAddress\""
      },
      {
        "title": "🌍 Traditional Finance",
        "body": "# Forex rates\ncurl \"$PRISM_URL/forex\"\ncurl \"$PRISM_URL/forex/USD/tradeable\"\n\n# Commodities\ncurl \"$PRISM_URL/commodities\"\ncurl \"$PRISM_URL/commodities/GOLD/tradeable\"\n\n# ETFs\ncurl \"$PRISM_URL/etfs/popular\"\n\n# Indexes\ncurl \"$PRISM_URL/indexes\"\ncurl \"$PRISM_URL/indexes/sp500\"\ncurl \"$PRISM_URL/indexes/nasdaq100\"\n\n# Sectors\ncurl \"$PRISM_URL/sectors\""
      },
      {
        "title": "🔧 System & Health",
        "body": "# API health\ncurl \"$PRISM_URL/health\"\n\n# Data source status\ncurl \"$PRISM_URL/crypto/sources/status\"\n\n# Registry health\ncurl \"$PRISM_URL/registry/health\""
      },
      {
        "title": "Natural Language Price Lookup",
        "body": "When user asks \"what's the price of bitcoin\" or \"how much is ETH\":\n\nUse /agent/resolve for natural language → canonical asset\nUse /crypto/price/{symbol} or /stocks/{symbol}/quote for price\nReturn formatted response"
      },
      {
        "title": "Token Security Check",
        "body": "When user asks \"is this token safe\" or \"check 0x1234...\":\n\nUse /analyze/{symbol} for general analysis\nUse /analyze/copycat/{symbol} for scam detection\nUse /analytics/holders/{contract} for whale concentration\nReturn risk assessment"
      },
      {
        "title": "Market Overview",
        "body": "When user asks \"how's the market\" or \"what's trending\":\n\nUse /market/overview for full picture\nUse /market/fear-greed for sentiment\nUse /crypto/trending for hot coins\nUse /stocks/gainers + /losers for stock movers"
      },
      {
        "title": "Cross-Market Correlation",
        "body": "When user asks \"what correlates with bitcoin\":\n\nUse /market/overview for cross-market data\nCompare crypto vs stocks/commodities/forex\nPRISM's 120+ endpoints enable true cross-market analysis"
      },
      {
        "title": "Endpoint Speed Reference",
        "body": "EndpointSpeedUse Case/resolve/{symbol}140-200msSymbol resolution/crypto/price/{symbol}1.9-2.1sSingle price/market/fear-greed229msSentiment/crypto/trending242msHot coins/analyze/copycat/{symbol}160msScam detection/stocks/{symbol}/quote214msStock price/agent/resolve3.4sNL queries"
      },
      {
        "title": "Unique Data (Nobody Else Has)",
        "body": "/crypto/trending/solana/bonding — Pump.fun launches\n/analyze/copycat — Scam/copycat detection\n/analyze/rebrand — Token migrations (MATIC→POL)\n/dex/{symbol}/funding/all — Cross-venue funding rates"
      },
      {
        "title": "Price Lookup",
        "body": "User: \"price of bitcoin\"\nResponse: \"Bitcoin (BTC) is $43,250 (+2.1% 24h)\""
      },
      {
        "title": "Security Check",
        "body": "User: \"is PEPE safe\"\nResponse: \"🛡️ PEPE Analysis\n• Risk Score: 35/100 (Low)\n• Liquidity: Locked ✅\n• Top holders: 15% concentration\n• Copycat risk: None detected\nOverall: Lower risk, but DYOR\""
      },
      {
        "title": "Market Overview",
        "body": "User: \"how's the market\"\nResponse: \"📊 Market Overview\nCrypto: BTC $43.2K (+2%), ETH $2,290 (+1.8%)\nFear & Greed: 72 (Greed)\nTrending: SOL, ONDO, WIF\nStocks: S&P +0.3%, NASDAQ +0.5%\"\n\nBuilt by @NextXFrontier"
      }
    ],
    "body": "Finance Data API (Strykr PRISM)\n\nOne API for all markets. Real-time financial data for AI agents, trading bots, and fintech apps.\n\nPowered by Strykr PRISM — unified data across crypto, stocks, ETFs, forex, commodities, and DeFi.\n\nConfiguration\n\nSet your PRISM API key:\n\nexport PRISM_API_KEY=\"your-api-key\"\n\n\nBase URL: https://strykr-prism.up.railway.app\n\nQuick Reference\n🔍 Asset Resolution (Core Feature)\n\nResolve ANY asset identifier to canonical form:\n\n# Resolve symbol (handles BTC, BTCUSD, XBT, bitcoin, etc.)\ncurl \"$PRISM_URL/resolve/BTC\"\ncurl \"$PRISM_URL/resolve/BTCUSDT\"\ncurl \"$PRISM_URL/resolve/bitcoin\"\n\n# Natural language resolution (for agents)\ncurl -X POST \"$PRISM_URL/agent/resolve\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"query\": \"price of ethereum\"}'\n\n# Batch resolve\ncurl -X POST \"$PRISM_URL/resolve/batch\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"symbols\": [\"BTC\", \"ETH\", \"AAPL\", \"GOLD\"]}'\n\n# Find trading venues for asset\ncurl \"$PRISM_URL/resolve/venues/BTC\"\n\n💰 Price Data\n# Crypto price\ncurl \"$PRISM_URL/crypto/price/BTC\"\ncurl \"$PRISM_URL/crypto/price/ETH\"\n\n# Batch crypto prices\ncurl -X POST \"$PRISM_URL/batch/crypto/prices\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"symbols\": [\"BTC\", \"ETH\", \"SOL\"]}'\n\n# Stock quote\ncurl \"$PRISM_URL/stocks/AAPL/quote\"\n\n# Batch stock quotes\ncurl -X POST \"$PRISM_URL/stocks/batch/quotes\" \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"symbols\": [\"AAPL\", \"MSFT\", \"GOOGL\"]}'\n\n📊 Market Overview\n# Full market overview (crypto + tradfi)\ncurl \"$PRISM_URL/market/overview\"\n\n# Crypto global stats\ncurl \"$PRISM_URL/crypto/global\"\n\n# Fear & Greed Index\ncurl \"$PRISM_URL/market/fear-greed\"\n\n# Trending crypto\ncurl \"$PRISM_URL/crypto/trending\"\n\n# Stock movers\ncurl \"$PRISM_URL/stocks/gainers\"\ncurl \"$PRISM_URL/stocks/losers\"\ncurl \"$PRISM_URL/stocks/active\"\n\n🛡️ Token Security Analysis\n# Analyze token for risks\ncurl \"$PRISM_URL/analyze/BTC\"\n\n# Copycat/scam detection\ncurl \"$PRISM_URL/analyze/copycat/PEPE\"\n\n# Check for rebrands (MATIC → POL)\ncurl \"$PRISM_URL/analyze/rebrand/MATIC\"\n\n# Fork detection\ncurl \"$PRISM_URL/analyze/fork/ETH\"\n\n# Holder analytics (whale concentration)\ncurl \"$PRISM_URL/analytics/holders/0x1234...\"\n\n🔥 Trending & Discovery\n# Trending crypto overall\ncurl \"$PRISM_URL/crypto/trending\"\n\n# Solana Pump.fun bonding tokens (UNIQUE!)\ncurl \"$PRISM_URL/crypto/trending/solana/bonding\"\n\n# Graduated from bonding curve\ncurl \"$PRISM_URL/crypto/trending/solana/graduated\"\n\n# Trending DEX pools\ncurl \"$PRISM_URL/crypto/trending/pools\"\n\n# EVM trending\ncurl \"$PRISM_URL/crypto/trending/evm\"\n\n# Multi-day stock movers\ncurl \"$PRISM_URL/stocks/multi-day-movers\"\n\n📈 DeFi & Derivatives\n# DEX pairs\ncurl \"$PRISM_URL/dex/pairs\"\n\n# Hyperliquid perps\ncurl \"$PRISM_URL/dex/hyperliquid/pairs\"\ncurl \"$PRISM_URL/dex/hyperliquid/BTC/funding\"\ncurl \"$PRISM_URL/dex/hyperliquid/BTC/oi\"\n\n# Cross-venue funding rates\ncurl \"$PRISM_URL/dex/BTC/funding/all\"\n\n# Cross-venue open interest\ncurl \"$PRISM_URL/dex/BTC/oi/all\"\n\n💼 Wallet & On-Chain\n# Wallet balances (multi-chain)\ncurl \"$PRISM_URL/wallets/0xYourAddress/balances\"\n\n# Native balance only\ncurl \"$PRISM_URL/wallets/0xYourAddress/native\"\n\n# Supported chains\ncurl \"$PRISM_URL/chains\"\n\n# On-chain price\ncurl \"$PRISM_URL/analytics/price/onchain/0xContractAddress\"\n\n🌍 Traditional Finance\n# Forex rates\ncurl \"$PRISM_URL/forex\"\ncurl \"$PRISM_URL/forex/USD/tradeable\"\n\n# Commodities\ncurl \"$PRISM_URL/commodities\"\ncurl \"$PRISM_URL/commodities/GOLD/tradeable\"\n\n# ETFs\ncurl \"$PRISM_URL/etfs/popular\"\n\n# Indexes\ncurl \"$PRISM_URL/indexes\"\ncurl \"$PRISM_URL/indexes/sp500\"\ncurl \"$PRISM_URL/indexes/nasdaq100\"\n\n# Sectors\ncurl \"$PRISM_URL/sectors\"\n\n🔧 System & Health\n# API health\ncurl \"$PRISM_URL/health\"\n\n# Data source status\ncurl \"$PRISM_URL/crypto/sources/status\"\n\n# Registry health\ncurl \"$PRISM_URL/registry/health\"\n\nUse Cases\nNatural Language Price Lookup\n\nWhen user asks \"what's the price of bitcoin\" or \"how much is ETH\":\n\nUse /agent/resolve for natural language → canonical asset\nUse /crypto/price/{symbol} or /stocks/{symbol}/quote for price\nReturn formatted response\nToken Security Check\n\nWhen user asks \"is this token safe\" or \"check 0x1234...\":\n\nUse /analyze/{symbol} for general analysis\nUse /analyze/copycat/{symbol} for scam detection\nUse /analytics/holders/{contract} for whale concentration\nReturn risk assessment\nMarket Overview\n\nWhen user asks \"how's the market\" or \"what's trending\":\n\nUse /market/overview for full picture\nUse /market/fear-greed for sentiment\nUse /crypto/trending for hot coins\nUse /stocks/gainers + /losers for stock movers\nCross-Market Correlation\n\nWhen user asks \"what correlates with bitcoin\":\n\nUse /market/overview for cross-market data\nCompare crypto vs stocks/commodities/forex\nPRISM's 120+ endpoints enable true cross-market analysis\nEndpoint Speed Reference\nEndpoint\tSpeed\tUse Case\n/resolve/{symbol}\t140-200ms\tSymbol resolution\n/crypto/price/{symbol}\t1.9-2.1s\tSingle price\n/market/fear-greed\t229ms\tSentiment\n/crypto/trending\t242ms\tHot coins\n/analyze/copycat/{symbol}\t160ms\tScam detection\n/stocks/{symbol}/quote\t214ms\tStock price\n/agent/resolve\t3.4s\tNL queries\nUnique Data (Nobody Else Has)\n/crypto/trending/solana/bonding — Pump.fun launches\n/analyze/copycat — Scam/copycat detection\n/analyze/rebrand — Token migrations (MATIC→POL)\n/dex/{symbol}/funding/all — Cross-venue funding rates\nExample Responses\nPrice Lookup\nUser: \"price of bitcoin\"\nResponse: \"Bitcoin (BTC) is $43,250 (+2.1% 24h)\"\n\nSecurity Check\nUser: \"is PEPE safe\"\nResponse: \"🛡️ PEPE Analysis\n• Risk Score: 35/100 (Low)\n• Liquidity: Locked ✅\n• Top holders: 15% concentration\n• Copycat risk: None detected\nOverall: Lower risk, but DYOR\"\n\nMarket Overview\nUser: \"how's the market\"\nResponse: \"📊 Market Overview\nCrypto: BTC $43.2K (+2%), ETH $2,290 (+1.8%)\nFear & Greed: 72 (Greed)\nTrending: SOL, ONDO, WIF\nStocks: S&P +0.3%, NASDAQ +0.5%\"\n\n\nBuilt by @NextXFrontier"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/NextFrontierBuilds/strykr-prism",
    "publisherUrl": "https://clawhub.ai/NextFrontierBuilds/strykr-prism",
    "owner": "NextFrontierBuilds",
    "version": "1.1.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/strykr-prism",
    "downloadUrl": "https://openagent3.xyz/downloads/strykr-prism",
    "agentUrl": "https://openagent3.xyz/skills/strykr-prism/agent",
    "manifestUrl": "https://openagent3.xyz/skills/strykr-prism/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/strykr-prism/agent.md"
  }
}