ERC-8004 Trustless Agents

ReviewAudited by ClawScan on May 10, 2026.

Overview

The skill mostly matches its ERC-8004 blockchain purpose, but it uses a local Ethereum private key broadly, including through shared code used by read-only queries, and can make live on-chain changes.

Only install or use this skill if you are comfortable granting it access to an Ethereum wallet key. Use a separate low-balance wallet, test on Sepolia with --dry-run first, verify all contract addresses and transaction details, and avoid letting an agent run mainnet transaction commands without your explicit approval.

Findings (3)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

Running the skill can access a wallet private key from the local environment or filesystem; transaction scripts can then sign actions from that wallet.

Why it was flagged

The shared network loader automatically reads a local Ethereum private key when PRIVATE_KEY is not set. That is high-impact wallet authority, and it is broader than the metadata declaration of no primary credential or required environment variables.

Skill content
local pk_file="$HOME/.clawdbot/wallets/.deployer_pk"
if [[ -f "$pk_file" ]]; then
    export PRIVATE_KEY=$(cat "$pk_file")
...
export WALLET_ADDRESS=$(cast wallet address "$PRIVATE_KEY")
Recommendation

Declare the wallet credential requirement clearly, avoid auto-loading a default private-key file, and separate read-only queries from any code path that requires signing authority.

What this means

If invoked with a funded wallet, the skill can submit real Ethereum transactions and publish agent registration data on-chain.

Why it was flagged

The registration script defaults to mainnet and uses cast send to submit a live transaction. This is purpose-aligned, but it can spend gas and create permanent public blockchain records.

Skill content
NETWORK="mainnet"
...
TX_HASH=$(cast send "$IDENTITY_REGISTRY" "register(string)" "$URI" \
        --private-key "$PRIVATE_KEY" \
        --rpc-url "$RPC_URL"
Recommendation

Use testnet and --dry-run first, require explicit user confirmation before mainnet transactions, and use a limited-purpose wallet.

What this means

Users may install and run external tooling outside the skill package before using it.

Why it was flagged

The setup instructions ask the user to run a remote installer and install local command-line dependencies. This is user-directed and relevant to the skill, but it is not represented in the declared requirements.

Skill content
curl -L https://foundry.paradigm.xyz | bash
foundryup

# Install jq
brew install jq
Recommendation

Install dependencies from trusted sources, review installer instructions, and prefer pinned or verified installation methods where possible.