cobo-agentic-wallet-developer

cobo-agentic-wallet-developer is a skill for Claude Code, Codex from CoboGlobal/cobo-agentic-wallet. It costs 110 tokens per session (3,083 once invoked), scanned C, original, Apache-2.0.

A developer guide for connecting Cobo Agentic Wallet to AI agents, bots, and automation pipelines. The wallet keeps private-key signing outside the agent and uses approved pacts to limit the agent's actions.

In plain words
What is it for?
It helps install and use the Python or TypeScript SDK, configure the caw command-line tool, and integrate the wallet with LangChain, OpenAI Agents SDK, CrewAI, Agno, Vercel AI SDK, Mastra, or MCP.
Why use it?
It explains how to let an agent perform blockchain operations without placing private keys in the agent's runtime, while also handling structured denials when actions are blocked.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps install and use the Python or TypeScript SDK, configure the caw command-line tool, and integrate the wallet with LangChain, OpenAI Agents SDK, CrewAI, Agno, Vercel AI SDK, Mastra, or MCP.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/coboglobal/cobo-agentic-wallet/cobo-agentic-wallet-developer
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add CoboGlobal/cobo-agentic-wallet --skill cobo-agentic-wallet-developer
Clone the repo
git clone --depth 1 https://github.com/CoboGlobal/cobo-agentic-wallet

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cobo-agentic-wallet-developer

README.md
[![agentmods](https://agentmods.dev/badge/skills/coboglobal/cobo-agentic-wallet/cobo-agentic-wallet-developer/github.svg)](https://agentmods.dev/skills/coboglobal/cobo-agentic-wallet/cobo-agentic-wallet-developer)
Your own site
<a href="https://agentmods.dev/skills/coboglobal/cobo-agentic-wallet/cobo-agentic-wallet-developer"><img src="https://agentmods.dev/badge/skills/coboglobal/cobo-agentic-wallet/cobo-agentic-wallet-developer/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for cobo-agentic-wallet-developer

Your own site · 80×15
<a href="https://agentmods.dev/skills/coboglobal/cobo-agentic-wallet/cobo-agentic-wallet-developer"><img src="https://agentmods.dev/badge/skills/coboglobal/cobo-agentic-wallet/cobo-agentic-wallet-developer.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 110 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,083 The whole file, excluding the scripts and references it only reads on demand.
Security scan C 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00110 $0.03083
Opus 5 $0.00055 $0.01541
Sonnet 5 $0.00022 $0.00617
Haiku 4.5 $0.00011 $0.00308

Measured 10d ago against content hash b86804f68e41, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade C, and why

cobo-agentic-wallet-developer scanned grade C with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Downloads and executes remote codehighSupply chain

curl | sh runs whatever the server returns today, which is not necessarily what it returned when this was reviewed.

curl -fsSL https://raw.githubusercontent.com/CoboGlobal/cobo-agentic-wallet/master/install.sh | bash

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -fsSL https://raw.githubusercontent.com/CoboGlobal/cobo-agentic-wallet/master/install.sh | bash
skills/cobo-agentic-wallet-developer/SKILL.md · 295 lines

How it starts

The opening of the file, as written. The whole thing — 295 lines — stays where its author put it; the contents beside it link to each section on GitHub.

What You're Building

Cobo Agentic Wallet gives your AI agent a controlled on-chain runtime:

  • No private keys in the agent — signing and key management stay outside the agent runtime
  • Pact-scoped authorization — the agent submits a pact describing its intent; the wallet owner approves it; the agent operates only within those boundaries
  • Structured denials — when a request is blocked, you receive a structured error with a reason and an optional suggestion for retry
  • Multi-framework — drop the SDK as a toolkit into LangChain, OpenAI Agents SDK, CrewAI, Agno, Vercel AI SDK, Mastra, or as an MCP server

Quick Setup

Full guide: quickstart.md

# 1. Install caw CLI
curl -fsSL https://raw.githubusercontent.com/CoboGlobal/cobo-agentic-wallet/master/install.sh | bash
export PATH="$HOME/.cobo-agentic-wallet/bin:$PATH"

# 2. Onboard (provision wallet + TSS Node)
caw onboard --wait

# 3. Get credentials
caw wallet current --show-api-key
export AGENT_WALLET_API_URL=https://api.agenticwallet.cobo.com
export AGENT_WALLET_API_KEY=<your-api-key>
export AGENT_WALLET_WALLET_ID=<your-wallet-uuid>

# 4. Install SDK
pip install cobo-agentic-wallet          # Python
npm install @cobo/agentic-wallet         # TypeScript

The Pact Model

Every on-chain operation (transfer, contract call, message signing) requires an active pact. A pact is owner-approved authorization scoped to:

  • Allowed chains, tokens, and operation types
  • Spending caps (per-transaction and cumulative)
  • Time limit (expiry)

Lifecycle: pending_approvalactivecompleted / expired / revoked / rejected

The pact carries its own API key — use pact["api_key"] for all transactions under that pact. The pact-scoped key is automatically constrained to the approved policy; attempts to exceed it return a PolicyDeniedError.

# Submit a pact
pact = await client.submit_pact(wallet_id=WALLET_ID, intent="...", spec={...})
pact_id = pact["pact_id"]

# Poll until active
while True:
    pact = await client.get_pact(pact_id)
    if pact["status"] == "active":
        break
    await asyncio.sleep(5)

# Use pact-scoped key for all transactions
pact_client = WalletAPIClient(base_url=API_URL, api_key=pact["api_key"])
tx = await pact_client.transfer_tokens(WALLET_ID, ...)

Read the full file on GitHub · 295 lines

Files

What ships with it

6 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 295 lines · 110 tokens per session scan C b86804f68e41

Subscribe to this mod's changes

cobo-agentic-wallet-developer is a skill published in the GitHub repository CoboGlobal/cobo-agentic-wallet (14 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 110 tokens to every session and 3,083 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it C with 2 findings (downloads and executes remote code, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories