Install
$ agentstack add skill-parad0x-labs-openclaw-skills-agent-passport ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
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
(never api.mainnet-beta.solana.com). Override with rpcUrl in 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.
Current status
ETH↔Solana binding (dark_secp256k1_auth) and WebAuthn P-256 vault (dark_secp256r1_vault) are live on mainnet. .null name resolution wiring comes with the null-resolver deployment — nullName is surfaced from config as-is until then.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: Parad0x-Labs
- Source: Parad0x-Labs/openclaw-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.