Agent skill

pubfi-wallet-portfolio-analysis

Analyze EVM wallet asset distribution and identify high-risk protocol exposure.

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill pubfi-wallet-portfolio-analysis --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/analysis/pubfi-wallet-portfolio-analysis/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Wallet Portfolio Analysis > **Goal**: Provide concise asset distribution analysis and risk assessment for EVM wallets. > ## Inputs - `wallet_address` (required): EVM address (0x...) ## Data Source **Primary**: Zerion API via `zerion-portfolio.py` ```bash # Get all assets python3 zerion-portfolio.py <address> # Get only DeFi positions python3 zerion-portfolio.py <address> --only-defi ``` **Environment**: `ZERION_API_KEY` must be set. If not set, get your API key at: https://www.zerion.io/api ## Execution Workflow ### Step 1: Validate Input ```yaml 1. Check address format: 0x + 40 hex characters 2. If invalid format: Exit with error message ``` ### Step 2: Fetch Portfolio Data ```bash # Execute Zerion portfolio script python3 skills/pubfi-wallet-portfolio-analysis/zerion-portfolio.py <address> ``` **Handle Edge Cases:** - Empty wallet → Report "Empty wallet" - API failure → Exit with error, cannot proceed - Zero-value positions → Skip ### Step 3: Categorize Assets ```yaml Group by type: Native: ETH, MATIC, BNB, etc. Stablecoins: USDC, USDT, DAI, USDS DeFi Positions: Has protocol attribute + position_type != 'wallet' Other Tokens: Everything else Track total value per category for d

What's inside
Steps it walks through
  1. Inputs
  2. Data Source
  3. Execution Workflow
  4. Step 1: Validate Input
  5. Step 2: Fetch Portfolio Data
  6. Step 3: Categorize Assets
  7. Step 4: Identify DeFi Protocols
  8. Step 5: Risk Assessment (DeFi Protocols Only)
  9. Step 6: Generate Report
  10. Output Format
  11. 1) Summary
  12. 2) Asset Distribution
  13. 3) Top Positions
  14. 4) Top Holdings (>2% of portfolio)
Ships with 1 file
  • metadata.json
Commands it runs
Get all assets
python3 zerion-portfolio.py <address>
Get only DeFi positions
python3 zerion-portfolio.py <address> --only-defi
Execute Zerion portfolio script
python3 skills/pubfi-wallet-portfolio-analysis/zerion-portfolio.py <address>
More from claude-skill-registry
All skills →
About this skill
What does the pubfi-wallet-portfolio-analysis skill do?

Analyze EVM wallet asset distribution and identify high-risk protocol exposure.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill pubfi-wallet-portfolio-analysis --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going