From a4c6cfcdcc4d27191c4ae8e328063a45dc8d47ab Mon Sep 17 00:00:00 2001 From: Lintmus Date: Thu, 4 Jun 2026 00:09:48 -0700 Subject: [PATCH 1/3] =?UTF-8?q?Add=20Lintmus=20skill=20=E2=80=94=20token?= =?UTF-8?q?=20due=20diligence=20for=20EVM=20and=20Solana?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lintmus/SKILL.md | 76 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 lintmus/SKILL.md diff --git a/lintmus/SKILL.md b/lintmus/SKILL.md new file mode 100644 index 0000000000..32d6430a6e --- /dev/null +++ b/lintmus/SKILL.md @@ -0,0 +1,76 @@ +# Lintmus + +Token due diligence for the bankr.bot ecosystem. Get a safety score, honeypot detection, liquidity health, and deployer history for any EVM or Solana token — before you trade. + +## Install + +``` +install the lintmus skill from https://github.com/lintmus/lintmus +``` + +## Core Capabilities + +Lintmus analyzes a token contract and returns: + +- **Safety score** (0–100) — aggregated from all data sources +- **Honeypot detection** — via GoPlus Security API +- **Tax analysis** — buy/sell tax percentages +- **Ownership flags** — mintable, hidden owner, pausable, blacklist +- **Liquidity** — USD liquidity, 24h volume, LP lock status +- **Age** — how long the token has been trading +- **Contract verification** — is source code public? +- **Deployer history** — has this wallet rugged before? + +## Usage + +Once installed, ask your agent: + +``` +analyze token 0x532f27101965dd16442e59d40670faf5ebb142e4 on base +``` + +``` +is this token safe? 0xADDRESS on ethereum +``` + +``` +run lintmus on 0xADDRESS before I buy +``` + +## Supported chains + +- `base` — Base mainnet +- `eth` — Ethereum mainnet +- `polygon` — Polygon +- `solana` — Solana + +## Pricing + +**0.03 USDC per report** — paid via x402 on Base. + +Reports are cached for 60 minutes. If the same token is analyzed twice within an hour, the second request is free. + +## Endpoint + +``` +POST https://x402.bankr.bot/0xD3aDb4D4B787eE631A1B2618464e21B229873075/analyze +Content-Type: application/json + +{ + "address": "0x532f27101965dd16442e59d40670faf5ebb142e4", + "chain": "base" +} +``` + +## Data sources + +- [GoPlus Security](https://gopluslabs.io) — honeypot, tax, ownership flags +- [DexScreener](https://dexscreener.com) — liquidity, volume, price +- [Etherscan API V2](https://etherscan.io) — contract verification +- [Alchemy](https://alchemy.com) — deployer address lookup + +## About + +Built on the bankr.bot infrastructure layer. The Lintmus rug database grows with every analysis — historical accuracy data is published openly so anyone can verify the scoring methodology. + +Token: $LINTMUS on Base From 465dec041a2fe6c7bd6ec439707a9cee50274ad6 Mon Sep 17 00:00:00 2001 From: Lintmus Date: Thu, 4 Jun 2026 02:10:26 -0700 Subject: [PATCH 2/3] Update Lintmus endpoint URL to live x402 deployment --- lintmus/SKILL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lintmus/SKILL.md b/lintmus/SKILL.md index 32d6430a6e..86f7bb293c 100644 --- a/lintmus/SKILL.md +++ b/lintmus/SKILL.md @@ -53,7 +53,7 @@ Reports are cached for 60 minutes. If the same token is analyzed twice within an ## Endpoint ``` -POST https://x402.bankr.bot/0xD3aDb4D4B787eE631A1B2618464e21B229873075/analyze +POST https://x402.bankr.bot/0x8901c544cfb3f1e87ae80e66154b04aee5f0448f/Lintmus Content-Type: application/json { From 294194d793b8a8b1c1f49936770313d0c204b926 Mon Sep 17 00:00:00 2001 From: Lintmus Date: Fri, 5 Jun 2026 23:09:40 -0700 Subject: [PATCH 3/3] Add social signals, malicious holders, liquidity seeding, cross-chain deployer --- lintmus/SKILL.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lintmus/SKILL.md b/lintmus/SKILL.md index 86f7bb293c..55ddfe7a60 100644 --- a/lintmus/SKILL.md +++ b/lintmus/SKILL.md @@ -13,13 +13,16 @@ install the lintmus skill from https://github.com/lintmus/lintmus Lintmus analyzes a token contract and returns: - **Safety score** (0–100) — aggregated from all data sources -- **Honeypot detection** — via GoPlus Security API +- **Honeypot detection** — via GoPlus Security and honeypot.is - **Tax analysis** — buy/sell tax percentages - **Ownership flags** — mintable, hidden owner, pausable, blacklist - **Liquidity** — USD liquidity, 24h volume, LP lock status - **Age** — how long the token has been trading +- **Social signals** — website and social links presence +- **Liquidity seeding detection** — new tokens with suspiciously high liquidity +- **Malicious holder detection** — top holders flagged by GoPlus - **Contract verification** — is source code public? -- **Deployer history** — has this wallet rugged before? +- **Deployer history** — cross-chain rug history via Alchemy (Base, ETH, Polygon) ## Usage