AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Agent Passport

skill-parad0x-labs-openclaw-skills-agent-passport · by Parad0x-Labs

On-chain identity for OpenClaw agents — .null name, ETH↔Solana binding, verifiable agent identity without touching private keys

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add skill-parad0x-labs-openclaw-skills-agent-passport

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No 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.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-parad0x-labs-openclaw-skills-agent-passport)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

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 →
Are you the author of Agent Passport? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

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, and nullName from 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 key
  • target_eth_address — hex ETH address
  • target_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.com by default

(never api.mainnet-beta.solana.com). Override with rpcUrl in config.

  • No secrets in config. solanaWallet and ethAddress are 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.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.