# Send Authenticate Wallet to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/authenticate-wallet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=authenticate-wallet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "authenticate-wallet",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T04:39:28.613Z",
      "expiresAt": "2026-05-06T04:39:28.613Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=authenticate-wallet",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=authenticate-wallet",
        "contentDisposition": "attachment; filename=\"authenticate-wallet-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "authenticate-wallet"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Authenticating with the Payments Wallet

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.

If 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.

### Authentication Flow

Authentication uses a two-step email OTP process:

### Step 1: Initiate login

npx awal@latest auth login <email>

This sends a 6-digit verification code to the email and outputs a flowId.

### Step 2: Verify OTP

npx awal@latest auth verify <flowId> <otp>

Use 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.

### Checking Authentication Status

npx awal@latest status

Displays wallet server health and authentication status including wallet address.

### Example Session

# Check current status
npx awal@latest status

# Start login (sends OTP to email)
npx awal@latest auth login user@example.com
# Output: flowId: abc123...

# After user receives code, verify
npx awal@latest auth verify abc123 123456

# Confirm authentication
npx awal@latest status

### Available CLI Commands

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

### JSON Output

All commands support --json for machine-readable output:

npx awal@latest status --json
npx awal@latest auth login user@example.com --json
npx awal@latest auth verify <flowId> <otp> --json
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: 0xRAG
- Version: 0.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-29T04:39:28.613Z
- Expires at: 2026-05-06T04:39:28.613Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/authenticate-wallet)
- [Send to Agent page](https://openagent3.xyz/skills/authenticate-wallet/agent)
- [JSON manifest](https://openagent3.xyz/skills/authenticate-wallet/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/authenticate-wallet/agent.md)
- [Download page](https://openagent3.xyz/downloads/authenticate-wallet)