# Send Kite 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "kite-agent-wallet",
    "name": "Kite Agent Wallet",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/nihaovand/kite-agent-wallet",
    "canonicalUrl": "https://clawhub.ai/nihaovand/kite-agent-wallet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/kite-agent-wallet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kite-agent-wallet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "skill.json"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "kite-agent-wallet",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T02:28:02.302Z",
      "expiresAt": "2026-05-09T02:28:02.302Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kite-agent-wallet",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=kite-agent-wallet",
        "contentDisposition": "attachment; filename=\"kite-agent-wallet-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "kite-agent-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/kite-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/kite-agent-wallet",
    "downloadUrl": "https://openagent3.xyz/downloads/kite-agent-wallet",
    "agentUrl": "https://openagent3.xyz/skills/kite-agent-wallet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/kite-agent-wallet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/kite-agent-wallet/agent.md"
  }
}
```
## Documentation

### Kite AI Agent Wallet Full-Stack Universal Protocol

Version: 1.0.0
Build on Kite AI Testnet
Smart wallet protocol for AI agents with modular architecture

### Overview

Kite AI Agent Wallet Protocol enables AI agents to create and manage smart wallets on Kite AI network. Inspired by Biconomy Nexus design, this protocol provides extensible, secure wallet infrastructure for autonomous AI agents.

### Architecture

┌─────────────────────────────────────────────────────────────┐
│              AgentSmartWalletFactory                         │
│         (Wallet Factory - Batch Creation)                   │
└─────────────────────┬───────────────────────────────────────┘
                      │
                      ▼
┌─────────────────────────────────────────────────────────────┐
│              AgentSmartWallet                                │
│  - owner: Human user (root authority)                      │
│  - agent: AI agent (delegated authority)                  │
│  - sessionKeys: Temporary keys (automation)                 │
└─────────────────────┬───────────────────────────────────────┘
                      │
          ┌───────────┴───────────┐
          ▼                       ▼
┌─────────────────┐    ┌─────────────────┐
│SpendingLimit    │    │SessionKey       │
│Module           │    │Module           │
└─────────────────┘    └─────────────────┘

### Core Features

🔐 Session Keys - Temporary authorization keys with fine-grained permissions
💰 Spending Limits - Programmable transaction limits
🧩 Modular Architecture - Extensible module system
🔄 Iterative Capability - Support for upgrades and new modules

### Security Features

Layered Permissions: Owner > Agent > Session Key
Limit Protection: Transactions cannot exceed set limits
Revocable: Owner can revoke session keys anytime
Module Isolation: Functional modules can be replaced

### Deployed Contracts (Testnet)

ContractAddressModuleRegistry0xfdf654b7dDbdFf0C7ec9017Aece166a75a5197B5SpendingLimitModule0x00E593eA476DfC0b22d9DF0A8fe436e5323Ae05FSessionKeyModule0x5b6C45EC7C9d7C688413d6bB2CC3B0A35f5B79B8AgentSmartWalletFactory0x0fa9F878B038DE435b1EFaDA3eed1859a6Dc098a

### Testnet (Ozone)

Chain ID: 2368
RPC: https://rpc-testnet.gokite.ai
Explorer: https://testnet.kitescan.ai
Faucet: https://faucet.gokite.ai

### Mainnet

Chain ID: 2366
RPC: https://rpc.gokite.ai
Explorer: https://kitescan.ai

### 1. Create Wallet

const factory = await ethers.getContractFactory("AgentSmartWalletFactory");
const wallet = await factory.createWallet(agentAddress, ethers.utils.parseEther("1"));

### 2. Add Session Key

const wallet = await ethers.getContractAt("AgentSmartWallet", walletAddress);
await wallet.addSessionKey(
    sessionKeyAddress,      // Agent's session key
    ethers.utils.parseEther("0.1"), // Limit
    [bytes4("0x...")]     // Allowed function selectors
);

### 3. Agent Executes Transaction

// Agent uses session key to execute
await wallet.executeWithSessionKey(
    encodedData,  // (target, value, callData)
    signature     // Owner signature
);

### Expandability

Protocol supports:

Add new modules (TimeLock, MultiSig)
Upgrade wallet logic
Cross-chain compatibility (Via Protocol Bridge)

### References

Kite AI Docs
Biconomy Nexus
ERC-4337
ERC-7579

Version History

v1.0.0 (2026-02-25): Initial deployment on Kite AI Testnet
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: nihaovand
- Version: 1.0.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-05-02T02:28:02.302Z
- Expires at: 2026-05-09T02:28:02.302Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/kite-agent-wallet)
- [Send to Agent page](https://openagent3.xyz/skills/kite-agent-wallet/agent)
- [JSON manifest](https://openagent3.xyz/skills/kite-agent-wallet/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/kite-agent-wallet/agent.md)
- [Download page](https://openagent3.xyz/downloads/kite-agent-wallet)