# Send RugCheck to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "rugcheck",
    "name": "RugCheck",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/PsychoTechV4/rugcheck",
    "canonicalUrl": "https://clawhub.ai/PsychoTechV4/rugcheck",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/rugcheck",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rugcheck",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/rugcheck.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "rugcheck",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-08T07:43:11.590Z",
      "expiresAt": "2026-05-15T07:43:11.590Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rugcheck",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=rugcheck",
        "contentDisposition": "attachment; filename=\"rugcheck-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "rugcheck"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/rugcheck"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/rugcheck",
    "downloadUrl": "https://openagent3.xyz/downloads/rugcheck",
    "agentUrl": "https://openagent3.xyz/skills/rugcheck/agent",
    "manifestUrl": "https://openagent3.xyz/skills/rugcheck/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/rugcheck/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: PsychoTechV4
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-08T07:43:11.590Z
- Expires at: 2026-05-15T07:43:11.590Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/rugcheck)
- [Send to Agent page](https://openagent3.xyz/skills/rugcheck/agent)
- [JSON manifest](https://openagent3.xyz/skills/rugcheck/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/rugcheck/agent.md)
- [Download page](https://openagent3.xyz/downloads/rugcheck)