← 返回 Skills 市场
nihaovand

Kite Agent Wallet

作者 nihaovand · GitHub ↗ · v1.0.0
cross-platform ✓ 安全检测通过
349
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install kite-agent-wallet
功能描述
Provides a modular smart wallet protocol for AI agents enabling session keys, spending limits, and secure delegated transaction management on Kite AI network.
使用说明 (SKILL.md)

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

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

Deployed Contracts (Testnet)

Contract Address
ModuleRegistry 0xfdf654b7dDbdFf0C7ec9017Aece166a75a5197B5
SpendingLimitModule 0x00E593eA476DfC0b22d9DF0A8fe436e5323Ae05F
SessionKeyModule 0x5b6C45EC7C9d7C688413d6bB2CC3B0A35f5B79B8
AgentSmartWalletFactory 0x0fa9F878B038DE435b1EFaDA3eed1859a6Dc098a

Network Configuration

Testnet (Ozone)

Mainnet

Usage

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


Version History

  • v1.0.0 (2026-02-25): Initial deployment on Kite AI Testnet
安全使用建议
This skill appears coherent for its stated purpose, but exercise caution before using it: - Source provenance is unknown (no homepage or repository). Ask the author for the contract source code and an audit or repo link. - Verify the listed contract addresses on the Kite explorers (testnet first) and inspect contract bytecode/source before sending real funds. - Never give your primary private key to an agent. Use ephemeral session keys, a dedicated agent wallet with minimal funds, or a hardware wallet for signing. - Test all flows on the testnet RPC (https://rpc-testnet.gokite.ai) and use small amounts before any mainnet interaction. - If you need higher assurance, request the full smart-contract source and an external audit; otherwise treat this as experimental and limit any funds or privileges you grant.
功能分析
Type: OpenClaw Skill Name: kite-agent-wallet Version: 1.0.0 The skill bundle describes a smart wallet protocol for AI agents on the Kite AI network. All files consistently provide documentation, contract addresses, and network configurations (RPC URLs, Chain IDs) for interacting with the specified blockchain. The JavaScript code snippets in SKILL.md and README.md are illustrative examples for interacting with smart contracts, not direct commands for the OpenClaw agent to execute arbitrary code. There are no signs of prompt injection attempts, data exfiltration, malicious execution, persistence mechanisms, or obfuscation. The future `publishedAt` date in `_meta.json` and version history is unusual but appears to be a consistent placeholder or planned release date, not indicative of malice.
能力评估
Purpose & Capability
The name/description describe an AI-agent smart wallet; the SKILL.md provides contract addresses, RPC endpoints, and example ethers.js calls (create wallet, add session key, execute with session key) that are consistent with that purpose. There are no unrelated dependencies or surprising claims.
Instruction Scope
The runtime instructions are limited to interacting with on-chain contracts (examples use ethers.getContractFactory / getContractAt and RPC URLs). The instructions do not tell the agent to read arbitrary files, harvest environment variables, or transmit data to unknown endpoints. They do assume a provider and signer exist but do not instruct exfiltration of secrets.
Install Mechanism
Instruction-only skill with no install spec and no code files to run; nothing is downloaded or written to disk by the skill itself, which minimizes install-time risk.
Credentials
The skill declares no required environment variables or credentials (reasonable for an instruction-only spec). However, real use requires a JSON-RPC provider and signing keys (private keys, wallets or ephemeral session keys). The skill does not request these directly, so granting an agent the ability to sign or access private keys would be the principal risk — make sure any keys are provided deliberately and minimally (e.g., ephemeral session keys, hardware wallets, or dedicated agent accounts).
Persistence & Privilege
always is false and the skill is user-invocable; it doesn't request persistent system presence or modify other skills/config. Autonomous invocation is enabled by default but is not combined with other red flags here.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install kite-agent-wallet
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /kite-agent-wallet 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.0.0
Kite AI Agent Wallet Protocol initial release: - Enables AI agents to create and manage smart wallets on the Kite AI Testnet. - Provides modular, extensible wallet architecture with support for session keys and programmable spending limits. - Features layered permissions (owner, agent, session key) and robust security controls, including session key revocation and module isolation. - Includes deployed smart contract addresses for the Kite AI Testnet. - Offers developer usage examples and main/testnet configuration details.
元数据
Slug kite-agent-wallet
版本 1.0.0
许可证
累计安装 0
当前安装数 0
历史版本数 1
常见问题

Kite Agent Wallet 是什么?

Provides a modular smart wallet protocol for AI agents enabling session keys, spending limits, and secure delegated transaction management on Kite AI network. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 349 次。

如何安装 Kite Agent Wallet?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install kite-agent-wallet」即可一键安装,无需额外配置。

Kite Agent Wallet 是免费的吗?

是的,Kite Agent Wallet 完全免费(开源免费),可自由下载、安装和使用。

Kite Agent Wallet 支持哪些平台?

Kite Agent Wallet 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Kite Agent Wallet?

由 nihaovand(@nihaovand)开发并维护,当前版本 v1.0.0。

💬 留言讨论