{
  "schemaVersion": "1.0",
  "item": {
    "slug": "easyclaw",
    "name": "easyclaw",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ice-coldbell/easyclaw",
    "canonicalUrl": "https://clawhub.ai/ice-coldbell/easyclaw",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/easyclaw",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=easyclaw",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "env.example.txt",
      "package-lock.json",
      "package.json",
      "SKILL.md",
      "scripts/backend-common.js",
      "scripts/dex-agent.sh"
    ],
    "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/easyclaw"
    },
    "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/easyclaw",
    "agentPageUrl": "https://openagent3.xyz/skills/easyclaw/agent",
    "manifestUrl": "https://openagent3.xyz/skills/easyclaw/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/easyclaw/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": "EasyClaw User DEX Skill",
        "body": "Run only user workflows:\n\nbalance and open-order checks\norder submission (place order)\nbackend position/order/fill/history/orderbook/chart queries\nauthenticated agent/strategy controls and safety kill-switch\nrealtime websocket monitoring and signal-driven auto order execution\n\nDo not run admin/bootstrap/keeper workflows in this skill."
      },
      {
        "title": "Runtime & Credential Requirements",
        "body": "Wallet signer source: KEYPAIR_PATH or ANCHOR_WALLET (fallback ~/.config/solana/id.json).\nSolana RPC source: SOLANA_RPC_URL or ANCHOR_PROVIDER_URL (fallback http://127.0.0.1:8899).\nBackend endpoint source: EASYCLAW_API_BASE_URL / EASYCLAW_WS_URL (or alias vars in backend-common.js).\nOptional API credential: EASYCLAW_API_TOKEN (required for protected backend controls).\nLocal process usage: onboarding probes solana config get and can spawn child Node.js processes for autotrade execution.\nLocal file writes:\n\nonboarding persists selected wallet envs into easyclaw-skill/.env\nstrategy onboarding writes files into easyclaw-skill/state/strategies/"
      },
      {
        "title": "Command Interface",
        "body": "Use {baseDir}/scripts/dex-agent.sh:\n\n# toolchain + environment diagnostics\n{baseDir}/scripts/dex-agent.sh doctor\n\n# install local skill dependencies\n{baseDir}/scripts/dex-agent.sh install\n\n# wallet, USDC, margin, and open orders\n{baseDir}/scripts/dex-agent.sh balance\n{baseDir}/scripts/dex-agent.sh balance --json\n\n# submit order tx\n{baseDir}/scripts/dex-agent.sh order --market-id 1 --side buy --type market --margin 1000000\n{baseDir}/scripts/dex-agent.sh order --market-id 2 --side sell --type limit --margin 2000000 --price 3000000000\n\n# backend REST queries\n{baseDir}/scripts/dex-agent.sh backend positions --mine --limit 20\n{baseDir}/scripts/dex-agent.sh backend position-history --mine --limit 20\n{baseDir}/scripts/dex-agent.sh backend chart-candles --market BTCUSDT --timeframe 1m --limit 120\n{baseDir}/scripts/dex-agent.sh backend orderbook-heatmap --exchange binance --symbol BTCUSDT --limit 30\n{baseDir}/scripts/dex-agent.sh backend portfolio --period 7d\n{baseDir}/scripts/dex-agent.sh backend strategy-templates\n{baseDir}/scripts/dex-agent.sh backend agent-risk --agent-id agent-001\n\n# realtime WS monitor\n{baseDir}/scripts/dex-agent.sh watch --channels \"agent.signals,portfolio.updates,market.price.BTCUSDT\"\n\n# realtime signal -> auto order execution\n{baseDir}/scripts/dex-agent.sh autotrade --market-id 1 --margin 1000000 --min-confidence 0.75\n\n# guided onboarding + strategy capture + autotrade start\n{baseDir}/scripts/dex-agent.sh onboard --market-id 1 --margin 1000000"
      },
      {
        "title": "Files",
        "body": "scripts/balance.js: user balance and order summary\nscripts/order-execute.js: user order submission helper\nscripts/backend.js: backend REST API query helper\nscripts/ws-watch.js: backend websocket channel subscriber\nscripts/realtime-agent.js: signal-driven auto-order loop\nscripts/onboard.js: interactive onboarding flow (wallet selection, registration wait, strategy capture, autotrade kickoff)\nscripts/backend-common.js: backend endpoint/auth helpers\nscripts/common.js: PDA, signer, tx, and decode utilities\npackage.json: local runtime dependencies\n.env.example: required environment keys"
      },
      {
        "title": "Setup",
        "body": "Copy .env.example to .env.\nFill signer and RPC values.\nRun dex-agent.sh install.\nRun dex-agent.sh balance first to validate access.\nRun dex-agent.sh backend doctor and dex-agent.sh watch --channel system.status.\nRun dex-agent.sh onboard --market-id <id> --margin <u64> for guided onboarding.\n\nFor env definitions and option details, read references/dex-env.md."
      },
      {
        "title": "Safety",
        "body": "Keep KEYPAIR_PATH and private keys local.\nUse devnet/localnet unless explicitly instructed otherwise.\nConfirm ORDER_ENGINE_PROGRAM_ID and MARKET_REGISTRY_PROGRAM_ID before placing orders."
      }
    ],
    "body": "EasyClaw User DEX Skill\n\nRun only user workflows:\n\nbalance and open-order checks\norder submission (place order)\nbackend position/order/fill/history/orderbook/chart queries\nauthenticated agent/strategy controls and safety kill-switch\nrealtime websocket monitoring and signal-driven auto order execution\n\nDo not run admin/bootstrap/keeper workflows in this skill.\n\nRuntime & Credential Requirements\nWallet signer source: KEYPAIR_PATH or ANCHOR_WALLET (fallback ~/.config/solana/id.json).\nSolana RPC source: SOLANA_RPC_URL or ANCHOR_PROVIDER_URL (fallback http://127.0.0.1:8899).\nBackend endpoint source: EASYCLAW_API_BASE_URL / EASYCLAW_WS_URL (or alias vars in backend-common.js).\nOptional API credential: EASYCLAW_API_TOKEN (required for protected backend controls).\nLocal process usage: onboarding probes solana config get and can spawn child Node.js processes for autotrade execution.\nLocal file writes:\nonboarding persists selected wallet envs into easyclaw-skill/.env\nstrategy onboarding writes files into easyclaw-skill/state/strategies/\nCommand Interface\n\nUse {baseDir}/scripts/dex-agent.sh:\n\n# toolchain + environment diagnostics\n{baseDir}/scripts/dex-agent.sh doctor\n\n# install local skill dependencies\n{baseDir}/scripts/dex-agent.sh install\n\n# wallet, USDC, margin, and open orders\n{baseDir}/scripts/dex-agent.sh balance\n{baseDir}/scripts/dex-agent.sh balance --json\n\n# submit order tx\n{baseDir}/scripts/dex-agent.sh order --market-id 1 --side buy --type market --margin 1000000\n{baseDir}/scripts/dex-agent.sh order --market-id 2 --side sell --type limit --margin 2000000 --price 3000000000\n\n# backend REST queries\n{baseDir}/scripts/dex-agent.sh backend positions --mine --limit 20\n{baseDir}/scripts/dex-agent.sh backend position-history --mine --limit 20\n{baseDir}/scripts/dex-agent.sh backend chart-candles --market BTCUSDT --timeframe 1m --limit 120\n{baseDir}/scripts/dex-agent.sh backend orderbook-heatmap --exchange binance --symbol BTCUSDT --limit 30\n{baseDir}/scripts/dex-agent.sh backend portfolio --period 7d\n{baseDir}/scripts/dex-agent.sh backend strategy-templates\n{baseDir}/scripts/dex-agent.sh backend agent-risk --agent-id agent-001\n\n# realtime WS monitor\n{baseDir}/scripts/dex-agent.sh watch --channels \"agent.signals,portfolio.updates,market.price.BTCUSDT\"\n\n# realtime signal -> auto order execution\n{baseDir}/scripts/dex-agent.sh autotrade --market-id 1 --margin 1000000 --min-confidence 0.75\n\n# guided onboarding + strategy capture + autotrade start\n{baseDir}/scripts/dex-agent.sh onboard --market-id 1 --margin 1000000\n\nFiles\nscripts/balance.js: user balance and order summary\nscripts/order-execute.js: user order submission helper\nscripts/backend.js: backend REST API query helper\nscripts/ws-watch.js: backend websocket channel subscriber\nscripts/realtime-agent.js: signal-driven auto-order loop\nscripts/onboard.js: interactive onboarding flow (wallet selection, registration wait, strategy capture, autotrade kickoff)\nscripts/backend-common.js: backend endpoint/auth helpers\nscripts/common.js: PDA, signer, tx, and decode utilities\npackage.json: local runtime dependencies\n.env.example: required environment keys\nSetup\nCopy .env.example to .env.\nFill signer and RPC values.\nRun dex-agent.sh install.\nRun dex-agent.sh balance first to validate access.\nRun dex-agent.sh backend doctor and dex-agent.sh watch --channel system.status.\nRun dex-agent.sh onboard --market-id <id> --margin <u64> for guided onboarding.\n\nFor env definitions and option details, read references/dex-env.md.\n\nSafety\nKeep KEYPAIR_PATH and private keys local.\nUse devnet/localnet unless explicitly instructed otherwise.\nConfirm ORDER_ENGINE_PROGRAM_ID and MARKET_REGISTRY_PROGRAM_ID before placing orders."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ice-coldbell/easyclaw",
    "publisherUrl": "https://clawhub.ai/ice-coldbell/easyclaw",
    "owner": "ice-coldbell",
    "version": "0.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/easyclaw",
    "downloadUrl": "https://openagent3.xyz/downloads/easyclaw",
    "agentUrl": "https://openagent3.xyz/skills/easyclaw/agent",
    "manifestUrl": "https://openagent3.xyz/skills/easyclaw/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/easyclaw/agent.md"
  }
}