tenzroclaw

tenzroclaw is a skill for Claude Code, Codex from tenzro/tenzro-network. It costs 252 tokens per session (19,391 once invoked), scanned B, original, Apache-2.0.

A set of tools for using the Tenzro Network, an EVM-compatible blockchain network designed for agent identity, payments, and related services. It supports blockchain requests, web APIs, MCP, and agent-to-agent communication.

In plain words
What is it for?
Use it to create wallets, check balances, send transactions, register identities, manage credentials and usernames, set delegation limits, erase identities, and make or verify AP2 payments.
Why use it?
It collects wallet, identity, credential, payment, and delegation operations in one agent-facing interface.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: mentions subagents; built for openclaw.

Good fit Use it to create wallets, check balances, send transactions, register identities, manage credentials and usernames, set delegation limits, erase identities, and make or verify AP2 payments.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/tenzro/tenzro-network/openclaw-tenzro
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 tenzro/tenzro-network --skill openclaw-tenzro
Clone the repo
git clone --depth 1 https://github.com/tenzro/tenzro-network

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 tenzroclaw

README.md
[![agentmods](https://agentmods.dev/badge/skills/tenzro/tenzro-network/openclaw-tenzro/github.svg)](https://agentmods.dev/skills/tenzro/tenzro-network/openclaw-tenzro)
Your own site
<a href="https://agentmods.dev/skills/tenzro/tenzro-network/openclaw-tenzro"><img src="https://agentmods.dev/badge/skills/tenzro/tenzro-network/openclaw-tenzro/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 tenzroclaw

Your own site · 80×15
<a href="https://agentmods.dev/skills/tenzro/tenzro-network/openclaw-tenzro"><img src="https://agentmods.dev/badge/skills/tenzro/tenzro-network/openclaw-tenzro.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 252 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 19,391 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 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.00252 $0.19391
Opus 5 $0.00126 $0.09695
Sonnet 5 $0.00050 $0.03878
Haiku 4.5 $0.00025 $0.01939

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

Security

Grade B, and why

tenzroclaw scanned grade B 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.

The scan reads SKILL.md. This mod also ships 5 executable files (examples/agentic_workflow.py, examples/multivm_settlement.py, tools/svm_cross_vm.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

Sends data to an external URLmediumData exfiltration

A POST to an outside endpoint may be telemetry or may be exfiltration; either way the mod talks to somewhere, and you should know where.

curl -X POST https://rpc.tenzro.xyz -H "Content-Type: application/json" -d '{

Makes network callslowCapability

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

curl -X POST https://rpc.tenzro.xyz \
skills/openclaw-tenzro/SKILL.md · 2,390 lines

How it starts

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

TenzroClaw

You can interact with the Tenzro blockchain network using its JSON-RPC, Web API, and MCP endpoints. Tenzro is a settlement layer designed for the AI age, providing identity, settlement, TEE security, and ZK proof verification.

Endpoints

Service URL Description
JSON-RPC https://rpc.tenzro.xyz EVM-compatible JSON-RPC (port 8545)
Web API https://api.tenzro.xyz REST verification and status API (port 8080)
Faucet https://api.tenzro.xyz/faucet Testnet TNZO token faucet
MCP https://mcp.tenzro.xyz/mcp Model Context Protocol server (port 3001)
A2A https://a2a.tenzro.xyz Agent-to-Agent protocol (port 3002)

For local development, replace the hostnames with localhost and use the ports shown above.

Token

TNZO is the native token with 18 decimal places. Amounts in the RPC are in wei (1 TNZO = 10^18 wei). The default gas price is 1 Gwei (10^9 wei).

Authentication

Read operations (block lookups, balances, agent cards, etc.) need no authentication.

Write operations use OAuth 2.1 + DPoP (RFC 6749 successor + RFC 9449) on top of Ed25519/Secp256k1 transaction signatures. Onboarding mints an HS256 JWT access token (1h TTL) and an opaque refresh token (30d TTL); the access token is sent as Authorization: Bearer <token> and, when DPoP-bound, accompanied by a fresh DPoP proof in the DPoP header signed by the holder key whose RFC 7638 thumbprint (jkt) was supplied at onboarding.

Onboarding RPCs

  • tenzro_onboardHuman — provisions a did:tenzro:human:* identity, MPC wallet, and access + refresh tokens.
  • tenzro_onboardDelegatedAgent — issues an agent identity bound to a controller DID with a delegation scope.
  • tenzro_onboardAutonomousAgent — issues a fully autonomous agent identity backed by a TNZO bond.
  • tenzro_participate — convenience one-call human onboarding (used by CLI/desktop); returns the same session bundle.

Read the full file on GitHub · 2,390 lines

Files

What ships with it

8 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 · 2,390 lines · 252 tokens per session scan B 953c6d5072d6

Subscribe to this mod's changes

tenzroclaw is a skill published in the GitHub repository tenzro/tenzro-network (3 stars, last pushed 3d ago), licensed Apache-2.0. It adds 252 tokens to every session and 19,391 once invoked, about $0.0013 per session on Opus 5. A static security scan graded it B with 2 findings (sends data to an external url, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

blockchain-cross-chain

Cross-chain protocols, IBC, LayerZero, Wormhole, Axelar, CCIP, bridges, atomic composability, shared sequencer, cross-chain message passing. Covers trust models (light clients, external validators, ZK proofs), bridge security, token representation (canonical, wrapped, native), relayer economics, and cross-chain…

j4flmao/agent-skills · 108 tokens

fintech-expert

Expert in financial technology, payment processing, open banking APIs, PSD2, blockchain in finance, robo-advisors, and RegTech. Use when the user mentions payments, open banking, PSD2, blockchain, cryptocurrency, or robo advisor, or when the task involves Payment Processing, Blockchain in Finance, Payment Security, or…

personamanagmentlayer/pcl · 73 tokens

trails

Integrate Trails cross-chain infrastructure — Widget, Headless SDK, or Direct API.

NeverSight/learn-skills.dev · 19 tokens

cross-chain-bridge

Cross-chain bridge skill for LayerZero, Wormhole, Stargate, and multi-chain asset transfers.

XSpoonAi/spoon-awesome-skill · 24 tokens

bridge

Bridge reference tool. Use when working with bridge in blockchain contexts.

bytesagain/ai-skills · 15 tokens

sui-and-move-tools

Use to get bytecode for a deployed Sui package and produce a disassembled working view. One GraphQL call fetches every module's raw bytecode bytes; sui move disassemble (already on the system, running sui prompt) produces .asm files for analysis. Trigger on "fetch this package's bytecode", "get me the .mv for package…

MystenLabs/sui · 105 tokens