pump-fun-reactive

pump-fun-reactive is a skill for Claude Code, Codex from nirholas/three.ws. It costs 20 tokens per session (523 once invoked), scanned A, original, Apache-2.0.

A connector that listens to live pump.fun market events through a WebSocket, a persistent connection for receiving updates.

In plain words
What is it for?
Use it to start or stop live reactions, reconnect after interruptions, and emit gestures, emotions, and speech from market activity.
Why use it?
It lets an avatar react to launches, large buys, and migrations as they happen without asking an AI model for every reaction.

Skill for Claude CodeCodex

Part of the three-ws-pump-fun plugin — 5 skills shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/nirholas/three.ws/reactive
Any agent
npx skills add nirholas/three.ws --skill reactive
Clone the repo
git clone --depth 1 https://github.com/nirholas/three.ws

Made for: Claude Code, Codex.

Or install three-ws-pump-fun, the plugin that ships this one along with the rest of its 5 skills.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for pump-fun-reactive

README.md
[![agentmods](https://agentmods.dev/badge/skills/nirholas/three.ws/reactive.svg)](https://agentmods.dev/skills/nirholas/three.ws/reactive)
Your own site
<a href="https://agentmods.dev/skills/nirholas/three.ws/reactive"><img src="https://agentmods.dev/badge/skills/nirholas/three.ws/reactive.svg" alt="Measured on agentmods" height="20"></a>
Per session 20 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 523 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00020 $0.00523
Opus 5 $0.00010 $0.00262
Sonnet 5 $0.00004 $0.00105
Haiku 4.5 $0.00002 $0.00052

Measured yesterday against content hash 8da17d4f4771, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

pump-fun-reactive scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured yesterday.

The scan reads SKILL.md. This mod also ships 1 executable file (handlers.js), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

pump-fun-skills/reactive/SKILL.md · 54 lines

What it actually says

pump-fun-reactive

Connects to the real PumpPortal WebSocket feed and drives <agent-3d> avatar reactions from live pump.fun events — no LLM in the loop.

Tools

enable_live_reactions

Opens a WebSocket to wss://pumpportal.fun/api/data, subscribes to new token launches and migrations, and starts emitting avatar events every 2 seconds based on market activity.

  • Returns { ok: true, started: true } on first call.
  • Returns { ok: true, already: true } if already running.
  • Reconnects automatically on disconnect (exponential backoff, up to 10 attempts).

Requires ctx.protocol — an AgentProtocol instance (or any object with an emit(action) method).

disable_live_reactions

Closes the WebSocket and stops the aggregator. Returns { ok: true, stopped: true }.

Event logic (2-second aggregator window)

Priority order within each window:

  1. Any migration (txType: 'migrate')gesture: celebrate + emote: celebration + speak: "<name> graduated!"
  2. Big initial buy (highest-solAmount create event has solAmount > 5 SOL) → emote: curiosity + speak: "<name> just opened with a X.XX SOL buy."
  3. Count of txType: 'create' events:
    • 0 → emote: patience
    • 1–2 → emote: curiosity + look-at: user
    • 3–9 → gesture: wave + emote: curiosity
    • 10+ → gesture: wave + emote: celebration + speak: "Pump.fun is on fire — N new launches in 2 seconds."

Usage

// Install the skill and call enable
await registry.install({ uri: './pump-fun-skills/reactive/' });
const skill = registry.findSkillForTool('enable_live_reactions');
await skill.invoke('enable_live_reactions', {}, { protocol });

// Stop later
await skill.invoke('disable_live_reactions', {}, {});
Files

What ships with it

4 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. yesterday First seen · 54 lines · 20 tokens per session scan A 8da17d4f4771

Subscribe to this mod's changes

pump-fun-reactive is a skill published in the GitHub repository nirholas/three.ws (110 stars, last pushed yesterday), licensed Apache-2.0. It adds 20 tokens to every session and 523 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

blockchain-cross-chain

Cross-chain protocols, IBC, LayerZero, Wormhole, Axelar, CCIP, bridges, atomic composability, shared sequencer, cross-chain message passing. Covers trust models (light clients, external validators, ZK proofs), bridge security, token representation (canonical, wrapped, native), relayer economics, and cross-chain…

j4flmao/agent-skills · 108 tokens

xpr-network-dev

XPR Network (formerly Proton) blockchain development - proton-tsc smart contracts, @proton CLI and web SDK, RPC and Hyperion queries, DeFi (MetalX, Alcor, LOAN), NFTs, the XPR Agents job board, node and Hyperion operations. Use for anything mentioning XPR, Proton, or @proton packages.

XPRNetwork/xpr-network-dev-skill · 77 tokens

blockchain-management

Use this skill when asked about blockchain project management, DAO governance, multi-sig operations, treasury management, tokenomics design, and web3 project methodology. Languages: Solidity, TypeScript, Python. Covers DAO governance frameworks (Compound Governor, Aave, Snapshot, Tally), multi-sig wallet operations…

j4flmao/agent-skills · 207 tokens

modernize-move

Detects and modernizes outdated Move V1 syntax, patterns, and APIs to Move V2+. Use when upgrading legacy contracts, migrating to modern syntax, or converting old patterns to current best practices. NOT for writing new contracts (use write-contracts) or fixing bugs.

aptos-labs/aptos-agent-skills · 60 tokens

threejs-docs

Comprehensive Three.js reference covering core API (objects, cameras, lights, materials, geometries, renderers, scenes, textures, math, animation, audio, loaders, helpers, nodes), all addons (controls, postprocessing, loaders, exporters, geometries, shaders, WebXR, physics), TSL (Three.js Shading Language) functions…

pledgeandgrow/pledge-skills · 112 tokens

coinmarketcap

Expert assistant for CoinMarketCap Pro API — price quotes, listings, historical OHLCV, market metrics, Fear & Greed Index, CMC100/CMC20 indices, exchange data, DEX data, airdrops, trending, community sentiment. Covers 10+ endpoint categories across REST + MCP + x402 pay-per-call modes. Use when the user wants: current…

Vo1ganin/crypto-claude-skills · 183 tokens