AI Walllet Payment System
Analysis
This skill is a crypto-wallet/payment tool that can manage private keys and send ETH, and its artifacts include high-impact financial authority plus overstated security claims that users should review carefully.
Findings (4)
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.
- Performs secure ETH transactions via Web3 - AI agents that need to make automated payments
The skill explicitly enables an agent workflow for sending cryptocurrency transactions, which can move real funds and is not easily reversible.
git clone https://github.com/cerbug45/AI-Wallet-Payment-System.git ... pip install -r requirements.txt
The setup relies on cloning an external repository and installing Python dependencies; this is disclosed and purpose-aligned, but provenance matters for wallet software.
The code header lists 500+ security features. In reality, it implements a subset of core security practices. Many advanced features (HSM, quantum cryptography, TPM, etc.) are mentioned but not actually implemented.
The project itself acknowledges that prominent security claims are overstated compared with the implemented protections.
Checks whether tool use, credentials, dependencies, identity, account access, or inter-agent boundaries are broader than the stated purpose.
master_password = getpass.getpass("Enter master password: ")
api = MaximumSecurityPaymentAPI(master_password)
...
print(f" 🔑 Backup codes: {wallet['backup_codes']}")The skill handles a master password, wallet secrets, and backup codes, which are equivalent to high-value financial credentials.
