{
  "schemaVersion": "1.0",
  "item": {
    "slug": "xaman-wallet-integration",
    "name": "Xaman Wallet Integration",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/HarleysCodes/xaman-wallet-integration",
    "canonicalUrl": "https://clawhub.ai/HarleysCodes/xaman-wallet-integration",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/xaman-wallet-integration",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=xaman-wallet-integration",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.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/xaman-wallet-integration"
    },
    "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/xaman-wallet-integration",
    "agentPageUrl": "https://openagent3.xyz/skills/xaman-wallet-integration/agent",
    "manifestUrl": "https://openagent3.xyz/skills/xaman-wallet-integration/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/xaman-wallet-integration/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": "Quick Start",
        "body": "Load the SDK (in layout.tsx or HTML head):\n\n<script src=\"https://xumm.app/assets/cdn/xumm-oauth2-pkce.min.js\"></script>\n\nInitialize and connect:\n\nconst XummPkce = (window as any).XummPkce;\nconst xumm = new XummPkce(API_KEY, {\n  redirectUrl: window.location.origin + \"/dashboard\"\n});\n\n// Listen for auth events\nxumm.on(\"success\", async (state) => {\n  const account = (await xumm.state())?.me?.account;\n  console.log(\"Connected:\", account);\n});\n\n// Start auth flow (opens popup)\nawait xumm.authorize();"
      },
      {
        "title": "API Key",
        "body": "Get your API key from: https://xumm.app/dashboard/developer\n\nEnvironment variable: NEXT_PUBLIC_XAMAN_API_KEY"
      },
      {
        "title": "Key Methods",
        "body": "new XummPkce(apiKey, options) - Initialize SDK\nxumm.authorize() - Start OAuth flow, opens Xaman app\nxumm.state() - Get current user session\nxumm.logout() - Clear session\nxumm.on(\"success\", callback) - Listen for successful auth\nxumm.on(\"error\", callback) - Listen for errors"
      },
      {
        "title": "Options",
        "body": "{\n  redirectUrl: string,      // Where to redirect after auth\n  rememberJwt: boolean,     // Persist session in localStorage (default: true)\n  storage: Storage,        // Custom storage (default: localStorage)\n  implicit: boolean        // Use implicit flow (default: false)\n}"
      },
      {
        "title": "Session Recovery",
        "body": "The SDK auto-restores sessions. Call xumm.logout() before authorize() to force fresh login."
      },
      {
        "title": "Troubleshooting",
        "body": "Popup blocked: Browser popup blocker may prevent authorize() - call from user action\nAccount undefined: Use xumm.state().then(s => s.me.account) after success event\nCORS errors: Ensure redirectUrl matches your app's origin"
      }
    ],
    "body": "Xaman Wallet Integration\nQuick Start\nLoad the SDK (in layout.tsx or HTML head):\n<script src=\"https://xumm.app/assets/cdn/xumm-oauth2-pkce.min.js\"></script>\n\nInitialize and connect:\nconst XummPkce = (window as any).XummPkce;\nconst xumm = new XummPkce(API_KEY, {\n  redirectUrl: window.location.origin + \"/dashboard\"\n});\n\n// Listen for auth events\nxumm.on(\"success\", async (state) => {\n  const account = (await xumm.state())?.me?.account;\n  console.log(\"Connected:\", account);\n});\n\n// Start auth flow (opens popup)\nawait xumm.authorize();\n\nAPI Key\n\nGet your API key from: https://xumm.app/dashboard/developer\n\nEnvironment variable: NEXT_PUBLIC_XAMAN_API_KEY\n\nKey Methods\nnew XummPkce(apiKey, options) - Initialize SDK\nxumm.authorize() - Start OAuth flow, opens Xaman app\nxumm.state() - Get current user session\nxumm.logout() - Clear session\nxumm.on(\"success\", callback) - Listen for successful auth\nxumm.on(\"error\", callback) - Listen for errors\nOptions\n{\n  redirectUrl: string,      // Where to redirect after auth\n  rememberJwt: boolean,     // Persist session in localStorage (default: true)\n  storage: Storage,        // Custom storage (default: localStorage)\n  implicit: boolean        // Use implicit flow (default: false)\n}\n\nSession Recovery\n\nThe SDK auto-restores sessions. Call xumm.logout() before authorize() to force fresh login.\n\nTroubleshooting\nPopup blocked: Browser popup blocker may prevent authorize() - call from user action\nAccount undefined: Use xumm.state().then(s => s.me.account) after success event\nCORS errors: Ensure redirectUrl matches your app's origin"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/HarleysCodes/xaman-wallet-integration",
    "publisherUrl": "https://clawhub.ai/HarleysCodes/xaman-wallet-integration",
    "owner": "HarleysCodes",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/xaman-wallet-integration",
    "downloadUrl": "https://openagent3.xyz/downloads/xaman-wallet-integration",
    "agentUrl": "https://openagent3.xyz/skills/xaman-wallet-integration/agent",
    "manifestUrl": "https://openagent3.xyz/skills/xaman-wallet-integration/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/xaman-wallet-integration/agent.md"
  }
}