# Send Sui Agent 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": "sui-agent-wallet",
    "name": "Sui Agent Wallet",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/EasonC13/sui-agent-wallet",
    "canonicalUrl": "https://clawhub.ai/EasonC13/sui-agent-wallet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/sui-agent-wallet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sui-agent-wallet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "extension/background.js",
      "extension/content.js",
      "extension/inject.js",
      "extension/manifest.json",
      "scripts/install.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/sui-agent-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/sui-agent-wallet",
    "downloadUrl": "https://openagent3.xyz/downloads/sui-agent-wallet",
    "agentUrl": "https://openagent3.xyz/skills/sui-agent-wallet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sui-agent-wallet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sui-agent-wallet/agent.md"
  }
}
```
## Documentation

### Sui Agent Wallet Skill

Give your AI agent its own Sui wallet to interact with DApps and sign transactions.

GitHub: https://github.com/EasonC13-agent/sui-skills/tree/main/sui-agent-wallet

### Architecture

Chrome Extension ◄──WebSocket──► Local Server ◄──API──► Agent
     │                                │
     ▼                                ▼
  DApp Page                    Key Management
  (Wallet Standard)            (Seed Phrase)

### Installation

cd <your-workspace>/skills/sui-agent-wallet

# Install server dependencies
cd server && bun install

# Start the server
bun run index.ts

Load Chrome Extension:

Open chrome://extensions/
Enable "Developer mode"
Click "Load unpacked"
Select the extension/ folder

### First Launch

The server automatically generates a 12-word seed phrase and stores it in macOS Keychain:

═══════════════════════════════════════════════════════════
  🔐 NEW WALLET CREATED
═══════════════════════════════════════════════════════════

  Seed phrase stored securely in macOS Keychain.

  To view your seed phrase for backup:
    curl http://localhost:3847/mnemonic

  Or use macOS Keychain Access app:
    Service: sui-agent-wallet
    Account: mnemonic
═══════════════════════════════════════════════════════════

### Secure Storage

LocationContentsmacOS KeychainSeed phrase (encrypted)~/.sui-agent-wallet/wallet.jsonAccount addresses, network settings (no sensitive data)

View Keychain entry:

# Command line
security find-generic-password -s "sui-agent-wallet" -a "mnemonic" -w

# Or open Keychain Access app
# Search for "sui-agent-wallet"

### Wallet Info

# Get current address
curl http://localhost:3847/address

# Get balance
curl http://localhost:3847/balance

# Get seed phrase (for backup)
curl http://localhost:3847/mnemonic

### Account Management

# List all accounts
curl http://localhost:3847/accounts

# Create new account
curl -X POST http://localhost:3847/accounts

# Create account at specific index
curl -X POST http://localhost:3847/accounts \\
  -H "Content-Type: application/json" \\
  -d '{"index": 2}'

# Switch account
curl -X POST http://localhost:3847/accounts/switch \\
  -H "Content-Type: application/json" \\
  -d '{"index": 1}'

### Network Management

# Get current network
curl http://localhost:3847/network

# Switch network (mainnet | testnet | devnet | localnet)
curl -X POST http://localhost:3847/network \\
  -H "Content-Type: application/json" \\
  -d '{"network": "testnet"}'

### Get Test Coins (Faucet)

Testnet:

Official Faucet: https://faucet.testnet.sui.io/
Discord: Join Sui Discord, post your wallet address in #testnet-faucet
CLI: sui client faucet --address <YOUR_ADDRESS>

Devnet:

Official Faucet: https://faucet.devnet.sui.io/
Discord: Post your wallet address in #devnet-faucet
CLI: sui client faucet --address <YOUR_ADDRESS>

Note: Mainnet requires real SUI tokens and cannot use faucets.

### Transaction Signing

# View pending transactions
curl http://localhost:3847/pending

# View transaction details
curl http://localhost:3847/tx/<request-id>

# Approve transaction
curl -X POST http://localhost:3847/approve/<request-id>

# Reject transaction
curl -X POST http://localhost:3847/reject/<request-id>

### Import/Export

# Import seed phrase (WARNING: overwrites existing wallet!)
curl -X POST http://localhost:3847/import \\
  -H "Content-Type: application/json" \\
  -d '{"mnemonic": "your twelve word seed phrase here ..."}'

### CLI Integration (Direct Signing)

Sign unsigned transactions generated by Sui CLI:

# 1. Generate unsigned transaction (using Agent Wallet address)
AGENT_ADDR=$(curl -s localhost:3847/address | jq -r .address)
TX_BYTES=$(sui client publish --serialize-unsigned-transaction \\
  --sender $AGENT_ADDR --gas-budget 100000000 | tail -1)

# 2. Sign and execute with Agent Wallet
curl -X POST http://localhost:3847/sign-and-execute \\
  -H "Content-Type: application/json" \\
  -d "{\\"txBytes\\": \\"$TX_BYTES\\"}"

# Or sign only without executing
curl -X POST http://localhost:3847/sign-raw \\
  -H "Content-Type: application/json" \\
  -d "{\\"txBytes\\": \\"$TX_BYTES\\"}"

Supported CLI commands:

sui client publish --serialize-unsigned-transaction
sui client call --serialize-unsigned-transaction
sui client transfer-sui --serialize-unsigned-transaction

### Transaction Parsing

When a signing request comes in, the agent sees:

{
  "id": "req_123",
  "method": "signTransaction",
  "origin": "http://localhost:5173",
  "payload": {
    "transaction": "{\\"commands\\":[{\\"MoveCall\\":{...}}]}",
    "chain": "sui:devnet"
  }
}

### Security Checklist

Before signing, verify:

Is the target contract trustworthy?
 Is the amount reasonable?
 Are there suspicious coin transfers?
 Is the gas budget normal?

### Test DApp

Built-in Counter DApp for testing:

# Start frontend
cd test-dapp/frontend && pnpm dev

# Open http://localhost:5173
# 1. Connect Wallet → Select "Sui Agent Wallet"
# 2. Click "+1" → Sends a signing request
# 3. Agent uses /pending to view, /approve to sign

### BIP44 Derivation Path

m/44'/784'/{accountIndex}'/0'/0'

784 = Sui's coin type
Each accountIndex corresponds to one address

### Wallet Standard Features

Implemented Sui Wallet Standard features:

standard:connect
standard:disconnect
standard:events
sui:signTransaction
sui:signAndExecuteTransaction
sui:signPersonalMessage

### Event Notifications

When switching accounts or networks, the server notifies the Extension via WebSocket:

accountChanged - Account changed
networkChanged - Network changed

### Related Skills

This skill is part of the Sui development skill suite:

SkillDescriptionsui-decompileFetch and read on-chain contract source codesui-moveWrite and deploy Move smart contractssui-coverageAnalyze test coverage with security analysissui-agent-walletBuild and test DApps frontend

Workflow:

sui-decompile → sui-move → sui-coverage → sui-agent-wallet
    Study        Write      Test & Audit   Build DApps

All skills: https://github.com/EasonC13-agent/sui-skills
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: EasonC13
- Version: 1.0.3
## Source health
- Status: healthy
- Source download looks usable.
- Yavira can redirect you to the upstream package for this source.
- Health scope: source
- Reason: direct_download_ok
- Checked at: 2026-04-30T16:55:25.780Z
- Expires at: 2026-05-07T16:55:25.780Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/sui-agent-wallet)
- [Send to Agent page](https://openagent3.xyz/skills/sui-agent-wallet/agent)
- [JSON manifest](https://openagent3.xyz/skills/sui-agent-wallet/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/sui-agent-wallet/agent.md)
- [Download page](https://openagent3.xyz/downloads/sui-agent-wallet)