Agentic Money
Analysis
The skill is coherent for Ethereum agent payments, but it asks the agent to use a wallet private key and can sign ETH transactions, while the registry metadata does not declare that credential requirement.
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.
Checks for instructions or behavior that redirect the agent, misuse tools, execute unexpected code, cascade across systems, exploit user trust, or continue outside the intended task.
Before executing any transaction, the agent MUST: 1. Confirm the action with the user before signing 2. Display the network, amount, recipient, and action type
The artifact explicitly contemplates transaction execution and signing; the safety rules are good, but the actions remain high-impact if skipped or misunderstood.
npm install @ethcf/agenticmoney ethers ... npx tsx -e
The skill relies on unpinned npm packages and npx-based execution; this is purpose-aligned for an SDK skill, but it increases supply-chain exposure when combined with wallet-key access.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
export AGENTICMONEY_PRIVATE_KEY="0x..." ... "This wallet will hold your funds."
The skill requires a raw Ethereum private key for SDK calls, giving any executed command signing authority over wallet funds.
