โ† All skills
Tencent SkillHub ยท Developer Tools

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 openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, scripts/rugcheck.sh

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 9 sections Open source page

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: CommandDescriptionsummary <mint>Risk score (0-100 normalized), risk flags, LP lock %report <mint>Full report: metadata, holders, markets, creator infoinsiders <mint>Insider/connected wallet graphlockers <mint>LP vault/locker info (locked liquidity details)votes <mint>Community votes on the tokenleaderboardTop voters/analysts on the platformdomainsRegistered Solana domainstrendingMost voted tokens in past 24hnewRecently detected tokensrecentMost viewed tokens in past 24hverifiedRecently verified tokens

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: Mutable metadata (tokenMeta.mutable == true) โ€” Creator can change token name/image Low liquidity (risk with "Low Liquidity" or check market data) โ€” Easy to manipulate price High holder concentration โ€” Top 10 holders > 50% supply Single holder dominance โ€” One wallet holds >20% supply LP not locked (lpLockedPct == 0) โ€” Creator can pull liquidity anytime Mint authority exists (token.mintAuthority != null) โ€” Can mint infinite tokens Freeze authority exists (token.freezeAuthority != null) โ€” Can freeze wallets Few LP providers โ€” Only 1-2 wallets providing liquidity Low/zero trade volume โ€” No real market activity Creator holds large balance โ€” Creator still sitting on supply

Presenting Results

Format findings clearly for the user. Example: ๐Ÿ” RugCheck Analysis: CLWDN (ClawdNation) Mint: 3zvSRWfjPvcnt8wfTrKhgCtQVwVSrYfBY6g1jPwzfHJG โš ๏ธ Risk Score: 59/100 (Medium-High Risk) ๐Ÿšฉ Risk Flags: ๐Ÿ”ด Low Liquidity โ€” $102.55 โš ๏ธ Single holder ownership โ€” 40.00% โš ๏ธ High holder concentration โ€” Top 10 hold >50% โš ๏ธ Low amount of holders โš ๏ธ Low LP providers โš ๏ธ Mutable metadata ๐Ÿ”“ LP Locked: 0% (NOT LOCKED) ๐Ÿ“Š Top Holders: 1. 40.0% โ€” 3Y3g...p7rk 2. 15.0% โ€” 5bNH...4VGj 3. 15.0% โ€” 4dkX...Ncg6 4. 10.0% โ€” 8yY2...CKn8 5. 10.0% โ€” 2MT5...eB3h Verdict: HIGH RISK โ€” Multiple red flags. No locked liquidity, concentrated holdings, mutable metadata. Exercise extreme caution.

API Details

Base URL: https://api.rugcheck.xyz Auth: None required for read endpoints Rate limits: Respect 429 responses; add 2-3 second delays between bulk queries RugCheck web: https://rugcheck.xyz/tokens/<mint> (link for users)

Bulk Queries (requires auth)

These endpoints need a JWT from Solana wallet auth โ€” not available for most agents: POST /v1/bulk/tokens/summary โ€” Check multiple tokens at once POST /v1/bulk/tokens/report โ€” Full reports for multiple tokens

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/rugcheck.sh Scripts