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.
npx skills add eugenepyvovarov/mcpbundler-agent-skills-marketplace --skill meteoragit clone --depth 1 https://github.com/eugenepyvovarov/mcpbundler-agent-skills-marketplaceWrote 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.
[](https://agentmods.dev/skills/eugenepyvovarov/mcpbundler-agent-skills-marketplace/meteora)<a href="https://agentmods.dev/skills/eugenepyvovarov/mcpbundler-agent-skills-marketplace/meteora"><img src="https://agentmods.dev/badge/skills/eugenepyvovarov/mcpbundler-agent-skills-marketplace/meteora/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/eugenepyvovarov/mcpbundler-agent-skills-marketplace/meteora"><img src="https://agentmods.dev/badge/skills/eugenepyvovarov/mcpbundler-agent-skills-marketplace/meteora.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00059 | $0.07174 |
| Opus 5 | $0.00030 | $0.03587 |
| Sonnet 5 | $0.00012 | $0.01435 |
| Haiku 4.5 | $0.00006 | $0.00717 |
Grade A, and why
meteora 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 12d ago.
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.
How it starts
The opening of the file, as written. The whole thing — 960 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Meteora Protocol Development Guide
A comprehensive guide for building Solana DeFi applications with Meteora's suite of SDKs - the leading liquidity infrastructure on Solana.
Overview
Meteora provides a complete DeFi infrastructure stack on Solana:
- DLMM (Dynamic Liquidity Market Maker): Concentrated liquidity with dynamic fees
- DAMM v2 (Dynamic AMM): Next-generation AMM with advanced pool management
- Dynamic Bonding Curve: Customizable token launch curves with auto-graduation
- Dynamic Vault: Yield-optimized token vaults
- Alpha Vault: Anti-bot protection for token launches
- Stake-for-Fee (M3M3): Staking rewards from trading fees
Quick Start
Installation
# DLMM SDK
npm install @meteora-ag/dlmm @coral-xyz/anchor @solana/web3.js
# DAMM v2 SDK
npm install @meteora-ag/cp-amm-sdk @solana/web3.js
# Dynamic Bonding Curve SDK
npm install @meteora-ag/dynamic-bonding-curve-sdk
# Vault SDK
npm install @meteora-ag/vault-sdk @coral-xyz/anchor @solana/web3.js @solana/spl-token
# Alpha Vault SDK
npm install @meteora-ag/alpha-vault
# Stake-for-Fee (M3M3) SDK
npm install @meteora-ag/m3m3 @coral-xyz/anchor @solana/web3.js @solana/spl-token
Program Addresses
| Program | Mainnet/Devnet Address |
|---|---|
| DLMM | LBUZKhRxPF3XUpBCjp4YzTKgLccjZhTSDM9YuVaPwxo |
| DAMM v2 | cpamdpZCGKUy5JxQXB4dcpGPiikHawvSWAd6mEn1sGG |
| Dynamic Bonding Curve | dbcij3LWUppWqq96dh6gJWwBifmcGfLSB5D4DuSMaqN |
| Dynamic Vault | 24Uqj9JCLxUeoC3hGfh5W3s9FM9uCHDS2SG3LYwBpyTi |
| Stake-for-Fee | FEESngU3neckdwib9X3KWqdL7Mjmqk9XNp3uh5JbP4KP |
DLMM SDK (Dynamic Liquidity Market Maker)
The DLMM SDK provides programmatic access to Meteora's concentrated liquidity protocol with dynamic fees based on volatility.
Basic Setup
import { Connection, PublicKey, Keypair } from '@solana/web3.js';
import DLMM from '@meteora-ag/dlmm';
const connection = new Connection('https://api.mainnet-beta.solana.com');
const poolAddress = new PublicKey('POOL_ADDRESS');
// Create DLMM instance for existing pool
const dlmm = await DLMM.create(connection, poolAddress);
// Create multiple pools
const dlmmPools = await DLMM.createMultiple(connection, [pool1, pool2, pool3]);
What ships with it
26 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.
- docs/fee-structures.md 6.6 KB
- docs/migration-guide.md 6.3 KB
- docs/strategy-guide.md 10 KB
- docs/troubleshooting.md 9.2 KB
- examples/alpha-vault/participation.ts 9.4 KB runs code
- examples/bonding-curve/create-token.ts 5.3 KB runs code
- examples/bonding-curve/graduation.ts 7.2 KB runs code
- examples/bonding-curve/trade.ts 7.4 KB runs code
- examples/damm-v2/create-pool.ts 5.5 KB runs code
- examples/damm-v2/manage-position.ts 7.9 KB runs code
- examples/damm-v2/swap.ts 5.5 KB runs code
- examples/dlmm/add-liquidity.ts 4.5 KB runs code
- examples/dlmm/claim-fees.ts 5.4 KB runs code
- examples/dlmm/swap.ts 3.0 KB runs code
- examples/stake-for-fee/staking.ts 9.8 KB runs code
- examples/vault/deposit-withdraw.ts 8.0 KB runs code
- resources/alpha-vault-reference.md 9.7 KB
- resources/bonding-curve-reference.md 9.2 KB
- resources/damm-v2-api-reference.md 11 KB
- resources/dlmm-api-reference.md 8.6 KB
- resources/m3m3-api-reference.md 10 KB
- resources/program-addresses.md 4.4 KB
- resources/vault-api-reference.md 6.9 KB
- templates/liquidity-manager.ts 13 KB runs code
- templates/token-launch.ts 9.2 KB runs code
- templates/trading-bot.ts 9.4 KB runs code
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.
- 12d ago First seen · 960 lines · 59 tokens per session scan A 35900919f1c9
meteora is a skill published in the GitHub repository eugenepyvovarov/mcpbundler-agent-skills-marketplace (12 stars, last pushed 6mo ago), licensed MIT. It adds 59 tokens to every session and 7,174 once invoked, about $0.0003 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-08-30.
Other skills, from other repositories
clawallex-skill
Pay for anything with USDC — virtual cards for any online checkout.
a16z-crypto
Use when evaluating crypto networks and companies through an a16z crypto lens: web3 adoption, infrastructure vs apps, open networks, and long-duration crypto ecosystem investing.
cobie-cycle-filter
Use when evaluating crypto decisions through a Cobie-style cycle filter: common-sense risk, narrative traps, leverage humility, and avoiding obvious stupid trades.
cryptocred-structure
Use when evaluating crypto charts through a CryptoCred-style structure lens: levels, confluence, market structure, risk definition, and educational technical process.
willy-woo-onchain
Use when evaluating Bitcoin and crypto cycles through a Willy Woo-style on-chain lens: holder behavior, realized value, supply dynamics, and on-chain demand.
prompt-proximity-architecture
Turn an approved measurement charter, ICPs, and buyer jobs into a budget-aware prompt coverage blueprint across proximity bands, aided status, information acts, journey states, roles, locales, evidence grades, partitions, and measurement lanes. Use before prompt wording to define required, optional, and prohibited…