birdeye
Token and wallet analytics on Solana plus EVM: security checks, holders, networth. Use when vetting a token, scanning a wallet, or checking honeypot risk (e.g. is $X safe, top holders, this wallet's portfolio).
What this skill does
## Script Usage
Script-mode skill — read this file, then invoke from a `bash` block:
```bash
python3 - <<'EOF'
import sys, json
sys.path.insert(0, "/data/workspace/skills/birdeye")
from exports import birdeye_token_overview, birdeye_token_security, birdeye_wallet_networth
# SOL overview
sol = birdeye_token_overview(address="So11111111111111111111111111111111111111112", chain="solana")
print(json.dumps(sol, indent=2))
EOF
```
Available functions in `exports.py`: `birdeye_token_security`,
`birdeye_token_overview`, `birdeye_wallet_networth`. Read `exports.py`
directly for exact signatures.
# Birdeye
Multi-chain data provider for token intelligence and wallet analytics. Covers Solana + EVM chains (Ethereum, Arbitrum, Base, etc.). Focus on Birdeye's unique capabilities for security analysis and portfolio tracking.
## Function Reference (signatures)
All functions are in `exports.py`. `chain` defaults to `solana`. EVM
chains supported: `ethereum`, `bsc`, `polygon`, `arbitrum`, `optimism`,
`base`, `avalanche`, `zksync`, `sui`. Token `address` for Solana is
the mint address (e.g. SOL = `So11111111111111111111111111111111111111112`).
| Function | Description |
|---|---|
| `birdeye_token_overview(address, chain='solana')` | Comprehensive token data: price, marketCap, fdv, supply, holders, liquidity, 24h volume, social links. Returns `{data: {...}}` wrapper. |
| `birdeye_token_security(address, chain='solana')` | Security audit: ownership, mintability, freezable, top holders concentration, mutable metadata, rug-pull indicators. |
| `birdeye_wallet_networth(wallet, chain='solana')` | Wallet net worth + token breakdown. `wallet` = wallet address. |
Birdeye uses camelCase fields (`marketCap`, `priceChange24h`, etc.).
All responses are wrapped in a `{data: {...}}` envelope — extract via
`result.get('data', {})`.
## Available Tools (3)
### Token Intelligence (2 tools)
- **birdeye_token_security**: Security score and rug pull risk analysis
- **birdeye_token_overview**: Comprehensive token data (price, volume, market cap, liquidity)
### Wallet Analytics (1 tool)
- **birdeye_wallet_networth**: Current wallet net worth and portfolio breakdown
## When to Use Each Tool
**"Is this token safe?"** → `birdeye_token_security`
Security score, rug pull risk analysis, and contract vulnerability detection.
**"Give me the full rundown on this token"** → `birdeye_token_overview`
Price, volume, market cap, liquidity, and price changes all in one call.
**"What's this wallet worth?"** → `birdeye_wallet_networth`
Current portfolio value and detailed token breakdown with balances and values.
## Multi-Chain Support
All tools accept a `chain` parameter:
- **Solana**: `solana` (default for most queries)
- **EVM**: `ethereum`, `arbitrum`, `base`, `optimism`, `polygon`, `bsc`, `avalanche`, `zksync`, `sui`
**Chain selection guidelines:**
- Solana: Most active trading, best for memecoins
- Ethereum: Blue-chip tokens, DeFi protocols
- Arbitrum/Base: L2 trading, low-fee DeFi
- Use the chain where the token/wallet is native
## Interpretation Guides
### Security Scores
| Score | Risk Level | Action |
|-------|-----------|--------|
| 90-100 | Very Low | Safe to trade, verified contract |
| 70-89 | Low | Generally safe, standard risks |
| 50-69 | Medium | Proceed with caution, check issues list |
| 30-49 | High | High risk — investigate issues carefully |
| 0-29 | Very High | Likely rug pull or scam — avoid |
**Common red flags:**
- Mint authority not renounced (owner can print tokens)
- Freeze authority enabled (owner can freeze trading)
- Low liquidity (< $10k = high rug risk)
- Concentrated holdings (top 10 holders > 80% supply)
- No social links or website
### Token Overview Metrics
**Price & Market Cap**: Current valuation and trading price
**Volume**: Trading activity indicates liquidity and interest
**Liquidity**: Available liquidity for trades (higher = safer exits)
**Price Change %**: 1h/24h/7d price movements
**Interpreting liquidity:**
- < $10k: Very high risk, easy to manipulate
- $10k-$100k: Moderate risk, watch for large exits
- $100k-$1M: Good liquidity for small/medium trades
- > $1M: Strong liquidity, safer for larger positions
### Wallet Net Worth
**Total USD Value**: Sum of all token holdings at current prices
**Token Breakdown**: Individual holdings with balances and values
**Portfolio Concentration**: How diversified is the wallet?
**Portfolio health indicators:**
- High concentration (>80% in one token) = high risk
- Balanced holdings = better risk management
- Large unrealized gains = potential for profit-taking
## Common Workflows
### Token Due Diligence
1. **birdeye_token_security** — Security score and risk check
2. **birdeye_token_overview** — Price, volume, market cap, liquidity
**Red flags**: Low security score (<50) + low liquidity (<$10k) = rug pull risk
**Example:**
```
User: "Is this token safe? [Solana address]"
1. Check birdeye_token_security → Score 85 (Low risk)
2. Check birdeye_token_overview → $500k liquidity, $2M volume
3. Result: Generally safe, good liquidity for trading
```
### Wallet Analysis
1. **birdeye_wallet_networth** — Current portfolio value and breakdown
**Use cases:**
- Track your own portfolio value
- Analyze whale wallets
- Monitor competitor holdings
**Example:**
```
User: "What's in this wallet? [address]"
1. Check birdeye_wallet_networth → $45k total value
2. Breakdown: 60% SOL, 25% USDC, 15% memecoins
3. Result: Balanced Solana portfolio with stablecoin hedging
```
### Quick Token Check
For quick validation of a token before trading:
**birdeye_token_overview** → Get price, liquidity, volume in one call
If liquidity < $10k or volume < $1k → High risk, proceed with caution
## Tool Details
### birdeye_token_security
**Parameters:**
- `address` (required): Token contract address
- `chain` (optional): Blockchain (default: `solana`)
**Returns:**
- Security score (0-100)
- Risk level
- List of detected issues
- Contract analysis results
**Example:**
```
birdeye_token_security(
address="EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
chain="solana"
)
```
### birdeye_token_overview
**Parameters:**
- `address` (required): Token contract address
- `chain` (optional): Blockchain (default: `solana`)
**Returns:**
- Symbol, name
- Current price
- 24h volume
- Market cap
- Liquidity
- Price changes (1h, 24h, 7d)
**Example:**
```
birdeye_token_overview(
address="EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
chain="solana"
)
```
### birdeye_wallet_networth
**Parameters:**
- `wallet` (required): Wallet address
- `chain` (optional): Blockchain (default: `solana`)
**Returns:**
- Total USD value
- Token holdings breakdown:
- Token symbol, name
- Balance
- Current price
- USD value
- Portfolio percentage
**Example:**
```
birdeye_wallet_networth(
wallet="7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
chain="solana"
)
```
**Note**: Wallet APIs have rate limits (5 req/s, 75 req/min). Space out requests.
## Chain-Specific Notes
**Solana**:
- Best supported chain for Birdeye
- Token addresses are base58 encoded
- Most liquid trading on Raydium, Orca
- Use for memecoin analysis and portfolio tracking
**Ethereum**:
- Blue-chip tokens and DeFi protocols
- Token addresses are 0x... format
- Higher gas fees = less micro-trading
**Arbitrum/Base**:
- L2 scaling solutions with lower fees
- Growing DeFi ecosystem
- Good for L2-native projects
## Integration with Other Skills
**Complementary to CoinGecko:**
- Use **Birdeye** for: Security checks, Solana tokens, wallet analytics
- Use **CoinGecko** for: Broad market data, historical prices, market cap rankings
**Don't duplicate**: Each service has unique strengths. Use Birdeye for its specialized data (security, Solana focus, wallet tracking).
## Notes
- **API key required**: Set `BIRDEYE_API_KEY` environment variable
- **Rate limits**: Wallet endpoints limited to 5 req/s, 75 req/min
- **Multi-chain**: Always specify `chain` parameter for nRelated in Security
mac-ops
IncludedComprehensive macOS workstation operations — diagnose kernel panics, identify failing drives, audit launchd startup items, decode wake reasons, triage TCC permission denials, manage APFS snapshots, recover from no-boot. Use for: Mac is slow, slow bootup, won't boot, kernel panic, kernel_task hot, mds_stores CPU, photoanalysisd, cloudd, login loop, gray screen, sleep wake failure, drive failing, IO errors, APFS snapshots eating space, Time Machine local snapshots, Spotlight indexing, launchd, LaunchAgent, LaunchDaemon, login items, TCC permissions, Full Disk Access, Screen Recording denied, Gatekeeper, quarantine, com.apple.quarantine, app is damaged, helper tool, /Library/PrivilegedHelperTools, pmset, wake reasons, dark wake, sysdiagnose, panic.ips, DiagnosticReports, configuration profile, MDM profile, remote diagnostics over SSH.
a11y-audit
IncludedRun accessibility audits on web projects combining automated scanning (axe-core, Lighthouse) with WCAG 2.1 AA compliance mapping, manual check guidance, and structured reporting. Output is configurable: markdown report only, markdown plus machine-readable JSON, or markdown plus issue tracker integration. Use this skill whenever the user mentions "accessibility audit", "a11y audit", "WCAG audit", "accessibility check", "compliance scan", or asks to check a web project for accessibility issues. Also trigger when the user wants to verify WCAG conformance or map findings to a specific standard (CAN-ASC-6.2, EN 301 549, ADA/AODA).
erpclaw
IncludedAI-native ERP system with self-extending OS. Full accounting, invoicing, inventory, purchasing, tax, billing, HR, payroll, advanced accounting (ASC 606/842, intercompany, consolidation), and financial reporting. 413 actions across 14 domains, 43 expansion modules. Constitutional guardrails, adversarial audit, schema migration. Double-entry GL, immutable audit trail, US GAAP.
assess
IncludedAssesses and rates quality 0-10 across multiple dimensions (correctness, maintainability, security, performance, testability, simplicity) with pros/cons analysis. Compares against project conventions and prior decisions from memory. Produces structured evaluation reports with actionable improvement suggestions. Use when evaluating code, designs, architectures, or comparing alternative approaches.
spring-boot-security-jwt
IncludedProvides JWT authentication and authorization patterns for Spring Boot 3.5.x covering token generation with JJWT, Bearer/cookie authentication, database/OAuth2 integration, and RBAC/permission-based access control using Spring Security 6.x. Use when implementing authentication or authorization in Spring Boot applications.
code-hardcode-audit
IncludedDetect hardcoded values, magic numbers, and leaked secrets. TRIGGERS - hardcode audit, magic numbers, PLR2004, secret scanning.