{
  "schemaVersion": "1.0",
  "item": {
    "slug": "xerolite",
    "name": "Xerolite",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/xero-flex/xerolite",
    "canonicalUrl": "https://clawhub.ai/xero-flex/xerolite",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/xerolite",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=xerolite",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "scripts/xerolite.mjs",
      "references/API.md"
    ],
    "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/xerolite"
    },
    "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/xerolite",
    "agentPageUrl": "https://openagent3.xyz/skills/xerolite/agent",
    "manifestUrl": "https://openagent3.xyz/skills/xerolite/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/xerolite/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": "Xerolite",
        "body": "Trading Bridge from TradingView to Interactive Brokers.\n\nXerolite automates execution of your trading ideas: it connects TradingView alerts to your Interactive Brokers account so orders are sent in real time with no manual steps. You design the logic and alerts in TradingView; Xerolite handles the bridge to IB (TWS or IB Gateway) and execution.\n\nThis skill lets your OpenClaw agent call the Xerolite REST API to place orders and search contracts — so you can trade or look up symbols from natural language or automation without leaving your workflow."
      },
      {
        "title": "Package Structure",
        "body": "skills/xerolite/\n├── SKILL.md              # This file\n├── scripts/\n│   ├── xerolite.mjs      # CLI (order place, contract search)\n└── references/\n    └── API.md            # REST API guide"
      },
      {
        "title": "Capabilities",
        "body": "Place orders via Xerolite REST API.\nSearch contracts via Xerolite REST API."
      },
      {
        "title": "Commands",
        "body": "Use these commands from the skill directory (or with {baseDir} in other skills).\n\nDefault flag values (optional; omit to use): --currency USD, --asset-class STOCK, --exch SMART."
      },
      {
        "title": "Place order",
        "body": "Required: --action, --qty, --symbol. Optional: --currency, --asset-class, --exch.\n\n# Minimal (defaults: USD, STOCK, SMART)\nnode {baseDir}/scripts/xerolite.mjs order place --symbol AAPL --action BUY --qty 10\n\n# Full\nnode {baseDir}/scripts/xerolite.mjs order place \\\n  --symbol AAPL \\\n  --currency USD \\\n  --asset-class STOCK \\\n  --exch SMART \\\n  --action BUY \\\n  --qty 10\n\nJSON sent to POST /api/internal/agent/order/place-order:\n\n{\n  \"name\": \"Agent\",\n  \"action\": \"BUY\",\n  \"qty\": \"10\",\n  \"symbol\": \"AAPL\",\n  \"currency\": \"USD\",\n  \"asset_class\": \"STOCK\",\n  \"exch\": \"SMART\"\n}"
      },
      {
        "title": "Search contract",
        "body": "Required: --symbol. Optional: --currency, --asset-class, --exch.\n\n# Minimal (defaults: USD, STOCK, SMART)\nnode {baseDir}/scripts/xerolite.mjs contract search --symbol AAPL\n\n# Full\nnode {baseDir}/scripts/xerolite.mjs contract search \\\n  --symbol AAPL \\\n  --currency USD \\\n  --asset-class STOCK \\\n  --exch SMART\n\nJSON sent to POST /api/internal/agent/contract/search:\n\n{\n  \"brokerName\": \"IBKR\",\n  \"symbol\": \"AAPL\",\n  \"currency\": \"USD\",\n  \"xeroAssetClass\": \"STOCK\"\n}"
      },
      {
        "title": "REST API",
        "body": "For the order and contract search endpoints used by this skill, see references/API.md."
      },
      {
        "title": "Requirements",
        "body": "Node.js 18+ (for built-in fetch)\nCLI only: Optional XEROLITE_API_URL — base URL for Xerolite API. If not set, defaults to http://localhost (same machine or local network). No API key in this version; may be added in a future version."
      }
    ],
    "body": "Xerolite\n\nTrading Bridge from TradingView to Interactive Brokers.\n\nXerolite automates execution of your trading ideas: it connects TradingView alerts to your Interactive Brokers account so orders are sent in real time with no manual steps. You design the logic and alerts in TradingView; Xerolite handles the bridge to IB (TWS or IB Gateway) and execution.\n\nThis skill lets your OpenClaw agent call the Xerolite REST API to place orders and search contracts — so you can trade or look up symbols from natural language or automation without leaving your workflow.\n\nPackage Structure\nskills/xerolite/\n├── SKILL.md              # This file\n├── scripts/\n│   ├── xerolite.mjs      # CLI (order place, contract search)\n└── references/\n    └── API.md            # REST API guide\n\nCapabilities\nPlace orders via Xerolite REST API.\nSearch contracts via Xerolite REST API.\nCommands\n\nUse these commands from the skill directory (or with {baseDir} in other skills).\n\nDefault flag values (optional; omit to use): --currency USD, --asset-class STOCK, --exch SMART.\n\nPlace order\n\nRequired: --action, --qty, --symbol. Optional: --currency, --asset-class, --exch.\n\n# Minimal (defaults: USD, STOCK, SMART)\nnode {baseDir}/scripts/xerolite.mjs order place --symbol AAPL --action BUY --qty 10\n\n# Full\nnode {baseDir}/scripts/xerolite.mjs order place \\\n  --symbol AAPL \\\n  --currency USD \\\n  --asset-class STOCK \\\n  --exch SMART \\\n  --action BUY \\\n  --qty 10\n\n\nJSON sent to POST /api/internal/agent/order/place-order:\n\n{\n  \"name\": \"Agent\",\n  \"action\": \"BUY\",\n  \"qty\": \"10\",\n  \"symbol\": \"AAPL\",\n  \"currency\": \"USD\",\n  \"asset_class\": \"STOCK\",\n  \"exch\": \"SMART\"\n}\n\nSearch contract\n\nRequired: --symbol. Optional: --currency, --asset-class, --exch.\n\n# Minimal (defaults: USD, STOCK, SMART)\nnode {baseDir}/scripts/xerolite.mjs contract search --symbol AAPL\n\n# Full\nnode {baseDir}/scripts/xerolite.mjs contract search \\\n  --symbol AAPL \\\n  --currency USD \\\n  --asset-class STOCK \\\n  --exch SMART\n\n\nJSON sent to POST /api/internal/agent/contract/search:\n\n{\n  \"brokerName\": \"IBKR\",\n  \"symbol\": \"AAPL\",\n  \"currency\": \"USD\",\n  \"xeroAssetClass\": \"STOCK\"\n}\n\nREST API\n\nFor the order and contract search endpoints used by this skill, see references/API.md.\n\nRequirements\nNode.js 18+ (for built-in fetch)\nCLI only: Optional XEROLITE_API_URL — base URL for Xerolite API. If not set, defaults to http://localhost (same machine or local network). No API key in this version; may be added in a future version."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/xero-flex/xerolite",
    "publisherUrl": "https://clawhub.ai/xero-flex/xerolite",
    "owner": "xero-flex",
    "version": "0.1.1",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/xerolite",
    "downloadUrl": "https://openagent3.xyz/downloads/xerolite",
    "agentUrl": "https://openagent3.xyz/skills/xerolite/agent",
    "manifestUrl": "https://openagent3.xyz/skills/xerolite/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/xerolite/agent.md"
  }
}