rugcheck
Analyze Solana tokens for rug pull risks using the RugCheck API (rugcheck.xyz). Use when asked to check a Solana token safety, risk score, liquidity, holder distribution, metadata mutability, or insider trading patterns. Also use for discovering trending, new, or recently verified Solana tokens. Triggers on token check, rug check, token safety, Solana token analysis, is this token safe, token risk score, LP locked, holder concentration.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/psychotechv4/rugcheckRugCheck — Solana Token Risk Analysis
Analyze any Solana token by mint address using the free RugCheck API. No API key required for read endpoints.
Quick Start
# Get risk summary (score + flags)
bash scripts/rugcheck.sh summary <MINT_ADDRESS>
# Get full detailed report (holders, markets, metadata, LP)
bash scripts/rugcheck.sh report <MINT_ADDRESS>
Script Reference
Run bash scripts/rugcheck.sh help for all commands:
| Command | Description |
|---|---|
summary <mint> | Risk score (0-100 normalized), risk flags, LP lock % |
report <mint> | Full report: metadata, holders, markets, creator info |
insiders <mint> | Insider/connected wallet graph |
lockers <mint> | LP vault/locker info (locked liquidity details) |
votes <mint> | Community votes on the token |
leaderboard | Top voters/analysts on the platform |
domains | Registered Solana domains |
trending | Most voted tokens in past 24h |
new | Recently detected tokens |
recent | Most viewed tokens in past 24h |
verified | Recently verified tokens |
Interpreting Results
Summary Response
Key fields from /v1/tokens/{mint}/report/summary:
score_normalised— Risk score 0-100. Higher = riskier. Below 1000 raw score ≈ "Good".- 0-30: Low risk (Good)
- 30-60: Medium risk (caution)
- 60-100: High risk (danger)
risks[]— Array of risk flags, each with:name: Risk type (e.g. "Mutable metadata", "Low Liquidity", "Single holder ownership")level:"warn"or"danger"value: Human-readable detail (e.g. "$102.55", "40.00%")description: Explanationscore: Raw risk contribution
lpLockedPct— Percentage of LP tokens locked (0 = none locked, very risky)tokenProgram— SPL token program usedtokenType— Token type classification
Full Report Response
Additional fields from /v1/tokens/{mint}/report:
tokenMeta— Name, symbol, URI,mutableflag,updateAuthoritytoken— Supply, decimals,mintAuthority,freezeAuthoritycreator/creatorBalance— Token creator wallet and their current balancetopHolders[]— Top holders withaddress,owner,pct(percentage),uiAmountmarkets[]— DEX markets/pools with liquidity datainsiderNetworks— Connected insider wallet clusters
Red Flag Checklist
When analyzing a token, flag these risks to the user:
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-psychotechv4-rugcheck": {
"enabled": true,
"auto_update": true
}
}
}