ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

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.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/psychotechv4/rugcheck
Or

RugCheck — 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:

CommandDescription
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
leaderboardTop voters/analysts on the platform
domainsRegistered Solana domains
trendingMost voted tokens in past 24h
newRecently detected tokens
recentMost viewed tokens in past 24h
verifiedRecently 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: Explanation
    • score: Raw risk contribution
  • lpLockedPct — Percentage of LP tokens locked (0 = none locked, very risky)
  • tokenProgram — SPL token program used
  • tokenType — Token type classification

Full Report Response

Additional fields from /v1/tokens/{mint}/report:

  • tokenMeta — Name, symbol, URI, mutable flag, updateAuthority
  • token — Supply, decimals, mintAuthority, freezeAuthority
  • creator / creatorBalance — Token creator wallet and their current balance
  • topHolders[] — Top holders with address, owner, pct (percentage), uiAmount
  • markets[] — DEX markets/pools with liquidity data
  • insiderNetworks — Connected insider wallet clusters

Red Flag Checklist

When analyzing a token, flag these risks to the user:

Metadata

Stars1171
Views0
Updated2026-02-19
View Author Profile
AI Skill Finder

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 skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-psychotechv4-rugcheck": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.