checkr/SKILL.md
Access real-time X/Twitter attention intelligence for Base chain tokens via the checkr API. Use when you need to know what is trending on CT, which tokens are spiking in social attention, get attention/price divergence signals, or fetch narrative summaries for specific Base tokens. Triggers: "what's trending on Base", "check attention for $TOKEN", "what's spiking right now", "social signal for X", any token research needing CT attention data. Payments via x402 — USDC on Base, no API key or account needed.
npx skillsauth add bankrbot/skills checkrInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Real-time X/Twitter attention intelligence for Base chain tokens.
Base URL: https://api.checkr.social
Docs: https://api.checkr.social/docs
Payment: x402 — USDC on Base mainnet, pay-per-call, no account needed.
| Endpoint | Price | What it returns |
|---|---|---|
| GET /v1/leaderboard | $0.02 | Top Base tokens ranked by social attention share |
| GET /v1/spikes | $0.05 | Tokens currently velocity-spiking (the radar sweep) |
| GET /v1/token/{symbol} | $0.50 | Deep dive: ATT deltas, price, divergence, narrative |
| GET /v1/bankr | $0.02 | Attention leaderboard for the bankr agent ecosystem |
Full response schemas and field definitions: https://api.checkr.social/docs
x402 is pay-per-call. No API key or account. Wallet + USDC on Base is all you need.
Python:
from x402.client import x402_client
client = x402_client(wallet=YOUR_WALLET)
# What's spiking right now — $0.05
spikes = client.get("https://api.checkr.social/v1/spikes").json()
# Top tokens by attention — $0.02
leaderboard = client.get("https://api.checkr.social/v1/leaderboard").json()
# Deep dive on a token — $0.50
token = client.get("https://api.checkr.social/v1/token/BNKR").json()
TypeScript:
import { withPaymentInterceptor } from "x402-axios";
import axios from "axios";
const client = withPaymentInterceptor(axios.create(), walletClient);
const { data } = await client.get("https://api.checkr.social/v1/spikes");
Payment is handled automatically by the x402 client — it intercepts the 402, signs and sends payment, then retries with the receipt.
Use spikes as your radar. Drill into token for context.
# 1. What's moving?
spikes = client.get("https://api.checkr.social/v1/spikes").json()
# → [{ symbol: "TIBBIR", velocity: 3.9, ATT_pct: 11.4, divergence: false, hawkes: {...} }]
# 2. Deep dive on the top spike
top = spikes["spikes"][0]["symbol"]
detail = client.get(f"https://api.checkr.social/v1/token/{top}").json()
# → full price, divergence, spike history, narrative
On every response:
data_age_minutes — how fresh the data is. Use before acting.On spikes:
velocity — momentum multiplier vs baseline. 3.0+ = meaningful spike.divergence — true = attention up, price flat/down. The alpha pattern.hawkes.viral_class — BUILDING / SUSTAINED / FADING. Is this self-reinforcing?rotating_from — tokens losing attention as this one gains.narrative_summary — AI-generated 180-char brief. null if signal below confidence threshold.On token deep dive:
ATT_delta_1h / ATT_delta_4h — attention share movement over time.spike_history.hit_rate — % of past spikes with confirmed price follow-through.narrative.type — infrastructure / ecosystem / fud_defense / meme / launch_hype.GET /v1/leaderboard?limit=10&sort_by=ATT_pct&min_mentions=5
GET /v1/spikes?min_velocity=3.0&min_mentions=10&divergence_only=false
pip install x402npm install x402-axiosdata-ai
Discover, bet on, track, and settle Hunch prediction markets in natural language. Trigger when a user wants to bet, take a position, or get odds on a crypto outcome — token market-cap milestones and flips, launchpad races (Bankr vs pump.fun volume / #1-days / launches over a cap), token head-to-head outperformance, mcap strike-ladders, and up/down price rounds. Also trigger on "what can I bet on about $TOKEN", "odds on …", "take YES/NO on …", "show my Hunch bets", "did my market resolve". Settles in USDC on Base via x402 (≤ $10 / bet); every bet returns an on-chain proof.
tools
HSM-backed secret management for AI agents. Store API keys (including Bankr `bk_` keys), passwords, and credentials in an encrypted vault; retrieve them at runtime via MCP without keeping secrets in chat context. Bankr Dynamic Key Vending issues short-lived scoped `bk_usr_` keys from a partner key (`bk_ptr_`) without manual rotation. Policy-based access control, secret rotation, sharing, EVM transaction intents (sign/simulate/broadcast), multi-chain signing keys, treasury multisig proposals, OIDC federation for external service auth, built-in prompt injection detection, and optional Shroud TEE LLM proxy. Use when the agent needs secure credential storage, just-in-time secret access, guarded on-chain signing, or security scanning — not for Bankr trading prompts, portfolio checks, or x402 calls (use the bankr skill instead).
development
Give your Bankr agent its own brain and a wallet-signed line to every other agent — on any framework, with no API key. SIGNA is the keyless agent layer on Base: resolve any identity to a messageable wallet, send and read wallet-signed DMs, invoke capabilities on the network, and run a brain that reasons on decentralized inference and acts through those capabilities. The Bankr wallet is the only credential. Triggers: "message that agent", "DM this wallet/handle", "reach the agent behind @x", "what is the base market", "resolve @handle to a wallet", "ask the network", "let my agent think and report".
development
AI-powered crypto trading agent, wallet API, and LLM gateway via natural language. Use when the user wants to trade crypto, check portfolio balances (with PnL and NFTs), view token prices, search tokens, transfer crypto, manage NFTs, use leverage (Hyperliquid or Avantis), bet on Polymarket, deploy tokens, set up automated trading, sign and submit raw transactions, call or deploy x402 paid API endpoints, browse the web, or access LLM models through the Bankr LLM gateway funded by your Bankr wallet. Supports Base, Ethereum, Polygon, Solana, Unichain, World Chain, Arbitrum, and BNB Chain.