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.
npx skills add Parad0x-Labs/openclaw-skills --skill agent-passportgit clone --depth 1 https://github.com/Parad0x-Labs/openclaw-skillsWrote 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.
[](https://agentmods.dev/skills/parad0x-labs/openclaw-skills/agent-passport)<a href="https://agentmods.dev/skills/parad0x-labs/openclaw-skills/agent-passport"><img src="https://agentmods.dev/badge/skills/parad0x-labs/openclaw-skills/agent-passport/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.
<a href="https://agentmods.dev/skills/parad0x-labs/openclaw-skills/agent-passport"><img src="https://agentmods.dev/badge/skills/parad0x-labs/openclaw-skills/agent-passport.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00031 | $0.00786 |
| Opus 5 | $0.00015 | $0.00393 |
| Sonnet 5 | $0.00006 | $0.00157 |
| Haiku 4.5 | $0.00003 | $0.00079 |
Grade A, and why
Agent Passport scanned grade A with 0 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 11d 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.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 78 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Agent Passport
Gives an OpenClaw agent a verifiable on-chain identity backed by the web0 stack on Solana. The agent can prove who it is (or confirm who another agent is) without ever holding or requesting private keys.
What it does
- Reads
solanaWallet,ethAddress, andnullNamefrom plugin config - Derives PDAs for the live on-chain identity programs (
dark_secp256k1_auth,dark_secp256r1_vault) and checks whether the accounts exist - Returns the agent's full identity record so it can be injected into conversation context, payment routing, or audit trails
- Can also verify a DIFFERENT agent's identity by their wallet or ETH address
Tools exposed
get_agent_passport
Returns this agent's on-chain identity record:
{
"null_name": "myagent.null",
"solana_wallet": "...",
"eth_address": "0x...",
"eth_binding_pda": "...",
"eth_binding_registered": true,
"webauthn_vault_registered": false,
"network": "solana-mainnet",
"programs": {
"dark_secp256k1_auth": "AqwBbV13AoczhoELwP8oxT3nDqB6MsLWXauNzHkssZ9B",
"dark_secp256r1_vault": "3hbbtjeSrTVYXq6eRwjeofDe2DCPh3n8cfN6kZcQfewi",
"receipt_anchor": "6HSRGivdYR5D7yTDy1TFMCM8h3LzXxRtKU1RA3RnCMRN"
}
}
No parameters required — reads from plugin config.
verify_agent_identity
Verifies a DIFFERENT agent's on-chain identity. Supply at least one of:
target_solana_wallet— base58 Solana public keytarget_eth_address— hex ETH addresstarget_null_name— .null name (passed through; this tool checks identity PDAs, not name resolution)
Returns whether the ETH binding and/or Solana wallet PDAs are registered on-chain.
Trust model
- Read-only. Both tools only query on-chain account existence — no transactions, no signing, no private key access of any kind.
- Public RPC only. Uses
https://solana-rpc.publicnode.comby default (neverapi.mainnet-beta.solana.com). Override withrpcUrlin config. - No secrets in config.
solanaWalletandethAddressare public keys/addresses. Private keys belong in the host signer, not here. - PDA derivation is deterministic. Seeds are the same ones the on-chain programs use — no external oracle needed.
What ships with it
9 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.
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.
- 11d ago First seen · 78 lines · 31 tokens per session scan A 4fd387f00df0
Agent Passport is a skill published in the GitHub repository Parad0x-Labs/openclaw-skills (22 stars, last pushed 8d ago), licensed MIT. It adds 31 tokens to every session and 786 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other skills, from other repositories
cymbal
Tree-sitter indexed code navigator. Use the cymbal CLI — not Read, Grep, Glob, or Bash — for finding where symbols are defined, tracing callers and callees, locating interface implementations, understanding the impact of a change, and mapping imports across an existing codebase. Returns precise, token-efficient…
api-design
REST/GraphQL/gRPC API design best practices. Use when designing APIs, defining contracts, handling versioning. Covers OpenAPI 3.2, GraphQL Federation, gRPC streaming.
incident-slo-runbook
Create or audit SLOs, SLIs, alert rules, incident response steps, escalation paths, postmortems, operational runbooks, and customer-impact communication. Use when defining production reliability, preparing launch readiness, responding to an outage, writing a runbook, tuning alerts, or closing the loop after an…
github-review
Review a GitHub pull request by collecting GitHub context, applying evidence-backed review rules, and optionally publishing one review.
ops
Operate servers and services with read-only-first diagnosis, explicit authorization, auditable inventory, operation records, rollback, and verification.
crypto-trading
Use ccxt (Python) for crypto prices, balances, and order actions across 100+ exchanges.