{
  "schemaVersion": "1.0",
  "item": {
    "slug": "bitstamp-trader",
    "name": "Bitstamp Trader",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/zhen08/bitstamp-trader",
    "canonicalUrl": "https://clawhub.ai/zhen08/bitstamp-trader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/bitstamp-trader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=bitstamp-trader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/api-reference.md",
      "references/safety.md",
      "scripts/bitstamp.py"
    ],
    "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-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/bitstamp-trader"
    },
    "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/bitstamp-trader",
    "agentPageUrl": "https://openagent3.xyz/skills/bitstamp-trader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bitstamp-trader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bitstamp-trader/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": "Bitstamp Trader",
        "body": "Safety-first crypto trading CLI powered by CCXT."
      },
      {
        "title": "Quick Reference",
        "body": "All commands use the script at scripts/bitstamp.py. Run via:\n\npython3 scripts/bitstamp.py <command> [options]"
      },
      {
        "title": "Market Data (no auth needed)",
        "body": "python3 scripts/bitstamp.py ticker                    # BTC/USD price\npython3 scripts/bitstamp.py ticker -m ETH/USD         # ETH price\npython3 scripts/bitstamp.py orderbook -m BTC/USD -d 5 # Top 5 order book\npython3 scripts/bitstamp.py markets --all              # All available pairs"
      },
      {
        "title": "Account (requires API keys)",
        "body": "python3 scripts/bitstamp.py balance           # Account balances\npython3 scripts/bitstamp.py orders            # Open orders\npython3 scripts/bitstamp.py trades --limit 10 # Recent trade history"
      },
      {
        "title": "Trading (dry-run by default)",
        "body": "# Dry-run (simulation)\npython3 scripts/bitstamp.py buy 0.001 -m BTC/USD              # Market buy\npython3 scripts/bitstamp.py buy 0.001 -m BTC/USD -p 50000     # Limit buy\npython3 scripts/bitstamp.py sell 0.5 -m ETH/USD               # Market sell\n\n# Live execution (add --live)\npython3 scripts/bitstamp.py buy 0.001 -m BTC/USD --live       # REAL market buy\npython3 scripts/bitstamp.py sell 0.5 -m ETH/USD -p 4000 --live"
      },
      {
        "title": "Order Management",
        "body": "python3 scripts/bitstamp.py cancel --order-id 12345 -m BTC/USD\npython3 scripts/bitstamp.py cancel --all   # Cancel all open orders"
      },
      {
        "title": "Safety Controls",
        "body": "python3 scripts/bitstamp.py kill-switch                         # EMERGENCY STOP\npython3 scripts/bitstamp.py kill-switch --status                # Check status\npython3 scripts/bitstamp.py kill-switch --deactivate            # Resume trading\npython3 scripts/bitstamp.py config                              # View safety limits\npython3 scripts/bitstamp.py config --set max_order_size_usd=200 # Adjust limits\npython3 scripts/bitstamp.py audit --limit 30                    # View audit log"
      },
      {
        "title": "Setup",
        "body": "Set API keys as environment variables:\nexport BITSTAMP_API_KEY=\"your-key\"\nexport BITSTAMP_API_SECRET=\"your-secret\"\n\n\n\nOn Bitstamp, create an API key with Orders permission only (NO Withdrawals). Enable IP whitelisting.\n\n\nTest with: python3 scripts/bitstamp.py ticker"
      },
      {
        "title": "Safety Details",
        "body": "See references/safety.md for full safety architecture:\n\nDry-run default, kill switch, max order size, daily limits, price sanity checks"
      },
      {
        "title": "API Details",
        "body": "See references/api-reference.md for Bitstamp API specifics, permissions, and rate limits."
      },
      {
        "title": "Important Rules",
        "body": "NEVER place live orders without explicit user confirmation. Always dry-run first.\nNEVER store API keys in files. Use environment variables only.\nWhen user says \"buy\" or \"sell\" without --live, always run as dry-run and show what WOULD happen.\nFor live trades, always show the dry-run result first, then ask for confirmation before adding --live.\nIf anything seems wrong (price spike, unusual volume, API errors), activate the kill switch.\nLog everything. Check audit log when debugging issues."
      }
    ],
    "body": "Bitstamp Trader\n\nSafety-first crypto trading CLI powered by CCXT.\n\nQuick Reference\n\nAll commands use the script at scripts/bitstamp.py. Run via:\n\npython3 scripts/bitstamp.py <command> [options]\n\nMarket Data (no auth needed)\npython3 scripts/bitstamp.py ticker                    # BTC/USD price\npython3 scripts/bitstamp.py ticker -m ETH/USD         # ETH price\npython3 scripts/bitstamp.py orderbook -m BTC/USD -d 5 # Top 5 order book\npython3 scripts/bitstamp.py markets --all              # All available pairs\n\nAccount (requires API keys)\npython3 scripts/bitstamp.py balance           # Account balances\npython3 scripts/bitstamp.py orders            # Open orders\npython3 scripts/bitstamp.py trades --limit 10 # Recent trade history\n\nTrading (dry-run by default)\n# Dry-run (simulation)\npython3 scripts/bitstamp.py buy 0.001 -m BTC/USD              # Market buy\npython3 scripts/bitstamp.py buy 0.001 -m BTC/USD -p 50000     # Limit buy\npython3 scripts/bitstamp.py sell 0.5 -m ETH/USD               # Market sell\n\n# Live execution (add --live)\npython3 scripts/bitstamp.py buy 0.001 -m BTC/USD --live       # REAL market buy\npython3 scripts/bitstamp.py sell 0.5 -m ETH/USD -p 4000 --live\n\nOrder Management\npython3 scripts/bitstamp.py cancel --order-id 12345 -m BTC/USD\npython3 scripts/bitstamp.py cancel --all   # Cancel all open orders\n\nSafety Controls\npython3 scripts/bitstamp.py kill-switch                         # EMERGENCY STOP\npython3 scripts/bitstamp.py kill-switch --status                # Check status\npython3 scripts/bitstamp.py kill-switch --deactivate            # Resume trading\npython3 scripts/bitstamp.py config                              # View safety limits\npython3 scripts/bitstamp.py config --set max_order_size_usd=200 # Adjust limits\npython3 scripts/bitstamp.py audit --limit 30                    # View audit log\n\nSetup\n\nSet API keys as environment variables:\n\nexport BITSTAMP_API_KEY=\"your-key\"\nexport BITSTAMP_API_SECRET=\"your-secret\"\n\n\nOn Bitstamp, create an API key with Orders permission only (NO Withdrawals). Enable IP whitelisting.\n\nTest with: python3 scripts/bitstamp.py ticker\n\nSafety Details\n\nSee references/safety.md for full safety architecture:\n\nDry-run default, kill switch, max order size, daily limits, price sanity checks\nAPI Details\n\nSee references/api-reference.md for Bitstamp API specifics, permissions, and rate limits.\n\nImportant Rules\nNEVER place live orders without explicit user confirmation. Always dry-run first.\nNEVER store API keys in files. Use environment variables only.\nWhen user says \"buy\" or \"sell\" without --live, always run as dry-run and show what WOULD happen.\nFor live trades, always show the dry-run result first, then ask for confirmation before adding --live.\nIf anything seems wrong (price spike, unusual volume, API errors), activate the kill switch.\nLog everything. Check audit log when debugging issues."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/zhen08/bitstamp-trader",
    "publisherUrl": "https://clawhub.ai/zhen08/bitstamp-trader",
    "owner": "zhen08",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/bitstamp-trader",
    "downloadUrl": "https://openagent3.xyz/downloads/bitstamp-trader",
    "agentUrl": "https://openagent3.xyz/skills/bitstamp-trader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/bitstamp-trader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/bitstamp-trader/agent.md"
  }
}