{
  "schemaVersion": "1.0",
  "item": {
    "slug": "authenticate-wallet",
    "name": "Authenticate Wallet",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/0xRAG/authenticate-wallet",
    "canonicalUrl": "https://clawhub.ai/0xRAG/authenticate-wallet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/authenticate-wallet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=authenticate-wallet",
    "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-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/authenticate-wallet"
    },
    "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/authenticate-wallet",
    "agentPageUrl": "https://openagent3.xyz/skills/authenticate-wallet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/authenticate-wallet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/authenticate-wallet/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": "Authenticating with the Payments Wallet",
        "body": "When the wallet is not signed in (detected via npx awal status or when wallet operations fail with authentication errors), use the npx awal CLI to authenticate.\n\nIf you have access to email, you can authenticate the wallet yourself, otherwise you'll need to ask your human to give you an email address and to tell you the OTP code they receive."
      },
      {
        "title": "Authentication Flow",
        "body": "Authentication uses a two-step email OTP process:"
      },
      {
        "title": "Step 1: Initiate login",
        "body": "npx awal@latest auth login <email>\n\nThis sends a 6-digit verification code to the email and outputs a flowId."
      },
      {
        "title": "Step 2: Verify OTP",
        "body": "npx awal@latest auth verify <flowId> <otp>\n\nUse the flowId from step 1 and the 6-digit code from the user's email to complete authentication. If you have the ability to access the user's email, you can read the OTP code, or you can ask your human for the code."
      },
      {
        "title": "Checking Authentication Status",
        "body": "npx awal@latest status\n\nDisplays wallet server health and authentication status including wallet address."
      },
      {
        "title": "Example Session",
        "body": "# Check current status\nnpx awal@latest status\n\n# Start login (sends OTP to email)\nnpx awal@latest auth login user@example.com\n# Output: flowId: abc123...\n\n# After user receives code, verify\nnpx awal@latest auth verify abc123 123456\n\n# Confirm authentication\nnpx awal@latest status"
      },
      {
        "title": "Available CLI Commands",
        "body": "CommandPurposenpx awal@latest statusCheck server health and auth statusnpx awal@latest auth login <email>Send OTP code to email, returns flowIdnpx awal@latest auth verify <flowId> <otp>Complete authentication with OTP codenpx awal@latest balanceGet USDC wallet balancenpx awal@latest addressGet wallet addressnpx awal@latest showOpen the wallet companion window"
      },
      {
        "title": "JSON Output",
        "body": "All commands support --json for machine-readable output:\n\nnpx awal@latest status --json\nnpx awal@latest auth login user@example.com --json\nnpx awal@latest auth verify <flowId> <otp> --json"
      }
    ],
    "body": "Authenticating with the Payments Wallet\n\nWhen the wallet is not signed in (detected via npx awal status or when wallet operations fail with authentication errors), use the npx awal CLI to authenticate.\n\nIf you have access to email, you can authenticate the wallet yourself, otherwise you'll need to ask your human to give you an email address and to tell you the OTP code they receive.\n\nAuthentication Flow\n\nAuthentication uses a two-step email OTP process:\n\nStep 1: Initiate login\nnpx awal@latest auth login <email>\n\n\nThis sends a 6-digit verification code to the email and outputs a flowId.\n\nStep 2: Verify OTP\nnpx awal@latest auth verify <flowId> <otp>\n\n\nUse the flowId from step 1 and the 6-digit code from the user's email to complete authentication. If you have the ability to access the user's email, you can read the OTP code, or you can ask your human for the code.\n\nChecking Authentication Status\nnpx awal@latest status\n\n\nDisplays wallet server health and authentication status including wallet address.\n\nExample Session\n# Check current status\nnpx awal@latest status\n\n# Start login (sends OTP to email)\nnpx awal@latest auth login user@example.com\n# Output: flowId: abc123...\n\n# After user receives code, verify\nnpx awal@latest auth verify abc123 123456\n\n# Confirm authentication\nnpx awal@latest status\n\nAvailable CLI Commands\nCommand\tPurpose\nnpx awal@latest status\tCheck server health and auth status\nnpx awal@latest auth login <email>\tSend OTP code to email, returns flowId\nnpx awal@latest auth verify <flowId> <otp>\tComplete authentication with OTP code\nnpx awal@latest balance\tGet USDC wallet balance\nnpx awal@latest address\tGet wallet address\nnpx awal@latest show\tOpen the wallet companion window\nJSON Output\n\nAll commands support --json for machine-readable output:\n\nnpx awal@latest status --json\nnpx awal@latest auth login user@example.com --json\nnpx awal@latest auth verify <flowId> <otp> --json"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/0xRAG/authenticate-wallet",
    "publisherUrl": "https://clawhub.ai/0xRAG/authenticate-wallet",
    "owner": "0xRAG",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/authenticate-wallet",
    "downloadUrl": "https://openagent3.xyz/downloads/authenticate-wallet",
    "agentUrl": "https://openagent3.xyz/skills/authenticate-wallet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/authenticate-wallet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/authenticate-wallet/agent.md"
  }
}