{
  "schemaVersion": "1.0",
  "item": {
    "slug": "prism-finance-os",
    "name": "PRISM OS SDK",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/StrykrAgent/prism-finance-os",
    "canonicalUrl": "https://clawhub.ai/StrykrAgent/prism-finance-os",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/prism-finance-os",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=prism-finance-os",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "docs/ARCHITECTURE.md",
      "docs/REAL_API_COVERAGE.md",
      "docs/UNIVERSAL_SDK.md",
      "examples/real-agents.ts"
    ],
    "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. 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."
        },
        {
          "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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/prism-finance-os"
    },
    "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/prism-finance-os",
    "agentPageUrl": "https://openagent3.xyz/skills/prism-finance-os/agent",
    "manifestUrl": "https://openagent3.xyz/skills/prism-finance-os/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/prism-finance-os/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. 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."
      },
      {
        "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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "PRISM Finance OS",
        "body": "Financial Data SDK for AI Agents\n\nRead-only market data SDK. 218+ endpoints for prices, fundamentals, and analytics."
      },
      {
        "title": "Security Notes",
        "body": "Read-only API — fetches public market data only\nNo wallet access — does not interact with wallets or private keys\nNo trading execution — execute modules are for quote simulation only, not live trades\nData only — returns JSON market data for analysis\nAPI key required — set PRISM_API_KEY environment variable"
      },
      {
        "title": "Quick Start",
        "body": "npm install prism-finance-os\n\nimport PrismOS from 'prism-finance-os';\n\nconst prism = new PrismOS({ apiKey: process.env.PRISM_API_KEY });\n\n// Get crypto price\nconst btc = await prism.crypto.getConsensusPrice('BTC');\n\n// Get stock fundamentals  \nconst aapl = await prism.stocks.getFundamentals('AAPL');\n\n// Get DeFi protocol TVL\nconst tvl = await prism.defi.getProtocolTVL('aave');"
      },
      {
        "title": "Required Environment Variable",
        "body": "export PRISM_API_KEY=your_api_key_here\n\nGet your free API key at api.prismapi.ai"
      },
      {
        "title": "Data Categories",
        "body": "CategoryExamplesCrypto PricesBTC, ETH, SOL prices across exchangesStock DataFundamentals, earnings, financialsDeFi AnalyticsProtocol TVL, yields, stablecoin supplyMacro DataFed rates, inflation, GDP (via FRED)Technical AnalysisRSI, MACD, moving averagesNews & SentimentMarket news with sentiment scores"
      },
      {
        "title": "Links",
        "body": "API Documentation\nGitHub Repository\nnpm Package"
      },
      {
        "title": "License",
        "body": "MIT License - see LICENSE"
      }
    ],
    "body": "PRISM Finance OS\n\nFinancial Data SDK for AI Agents\n\nRead-only market data SDK. 218+ endpoints for prices, fundamentals, and analytics.\n\nSecurity Notes\nRead-only API — fetches public market data only\nNo wallet access — does not interact with wallets or private keys\nNo trading execution — execute modules are for quote simulation only, not live trades\nData only — returns JSON market data for analysis\nAPI key required — set PRISM_API_KEY environment variable\nQuick Start\nnpm install prism-finance-os\n\nimport PrismOS from 'prism-finance-os';\n\nconst prism = new PrismOS({ apiKey: process.env.PRISM_API_KEY });\n\n// Get crypto price\nconst btc = await prism.crypto.getConsensusPrice('BTC');\n\n// Get stock fundamentals  \nconst aapl = await prism.stocks.getFundamentals('AAPL');\n\n// Get DeFi protocol TVL\nconst tvl = await prism.defi.getProtocolTVL('aave');\n\nRequired Environment Variable\nexport PRISM_API_KEY=your_api_key_here\n\n\nGet your free API key at api.prismapi.ai\n\nData Categories\nCategory\tExamples\nCrypto Prices\tBTC, ETH, SOL prices across exchanges\nStock Data\tFundamentals, earnings, financials\nDeFi Analytics\tProtocol TVL, yields, stablecoin supply\nMacro Data\tFed rates, inflation, GDP (via FRED)\nTechnical Analysis\tRSI, MACD, moving averages\nNews & Sentiment\tMarket news with sentiment scores\nLinks\nAPI Documentation\nGitHub Repository\nnpm Package\nLicense\n\nMIT License - see LICENSE"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/StrykrAgent/prism-finance-os",
    "publisherUrl": "https://clawhub.ai/StrykrAgent/prism-finance-os",
    "owner": "StrykrAgent",
    "version": "0.1.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/prism-finance-os",
    "downloadUrl": "https://openagent3.xyz/downloads/prism-finance-os",
    "agentUrl": "https://openagent3.xyz/skills/prism-finance-os/agent",
    "manifestUrl": "https://openagent3.xyz/skills/prism-finance-os/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/prism-finance-os/agent.md"
  }
}