wallet-health
Installation
SKILL.md
Wallet Health Analyzer
A security skill that profiles an address based on its on-chain footprint. It checks nonce (activity level), balance (liquidity), and contract interaction patterns to assign a rudimentary "Health Score".
Quick Start
# Analyze a target address
report = await agent.run_tool(
"wallet_health",
target_address="0x123..."
)
print(f"Health Score: {report['score']}/100")