npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@barkermoney/skills

v0.2.0

Published

The official Barker stablecoin yield skill suite — real-time data from 500+ DeFi protocols and 20+ CEX. Skill installer for Claude Code / OKX Plugin Store + a stdio MCP server wrapping the Barker public API.

Readme

Barker Stablecoin Skills

The only AI skill suite for stablecoin yield intelligence — real-time data from 500+ protocols and 20+ CEX, no API key required.

License: MIT API: No Auth Required Data: Real-time

Powered by Barker — The Stablecoin Yield Map. Free for individuals · Enterprise API for institutions.

找稳定币理财,上 Barker → barker.money


Quick Start

One-line install (recommended)

# Install all 7 skills into ~/.claude/skills/
npx @barkermoney/skills install --all

# Or pick specific ones
npx @barkermoney/skills install stablecoin-yield-radar yield-strategy-advisor

# Other commands
npx @barkermoney/skills list             # show bundled + installed
npx @barkermoney/skills update           # re-install latest of currently installed
npx @barkermoney/skills remove <name>    # uninstall one
npx @barkermoney/skills --help           # full help

Then restart Claude Code (or your agent runtime) to activate. Override the install dir with --target <dir> or $BARKER_SKILLS_DIR.

Updating often? Install the CLI globally so you can drop the npx prefix:

npm install -g @barkermoney/skills
skills install --all     # then from any directory
skills update            # later, pull latest skill content

MCP server (stdio)

Need direct API access from a Claude Code / Cursor / Cline session — without going through the bundled skills? Run barker-mcp, a stdio MCP server that wraps the Barker public API (/defi/vaults, /market/overview, /market/trend) as three callable tools. Zero auth, same 30 req/min rate limit as the public API.

# Register with Claude Code (user scope, persists across sessions)
claude mcp add -s user barker -- npx -y -p @barkermoney/skills barker-mcp

Then restart Claude Code. Three tools become available:

| Tool | Wraps | Use for | |------|-------|---------| | barker_defi_vaults | /defi/vaults | "best USDC yield", "Aave vs Morpho", filter by asset/chain/sort/limit | | barker_market_overview | /market/overview | total cap, yield-bearing cap, asset/chain distribution | | barker_market_trend | /market/trend | 7–180 day APY trend vs US Treasury benchmark |

Smoke test outside of an agent host:

npx -p @barkermoney/skills barker-mcp
# speaks MCP over stdio; pipe JSON-RPC frames to interact

OKX Wallet Plugin Store

npx skills add okx/plugin-store --skill <skill-name>
# e.g.: npx skills add okx/plugin-store --skill stablecoin-yield-radar

Manual (git clone)

git clone https://github.com/YBSbarker/barker-stablecoin-skills.git
cp -r barker-stablecoin-skills/skills/<skill-name> ~/.claude/skills/

Anthropic Plugin Marketplace

Each skill is shipped with .claude-plugin/plugin.json and is compatible with the Claude Code plugin marketplace.

Cursor / Cline / other MCP hosts

Point your MCP-compatible host at https://api.barker.money — the skill SKILL.md files document the public endpoints (/defi/vaults, /market/overview, /market/trend) and do not require any authentication. CEX per-venue detail is available via the Enterprise API (app.barker.money/enterprise).


Skill Suite

| Skill | What It Does | Data Source | Key Triggers | |-------|-------------|-------------|-------------| | stablecoin-yield-radar | Real-time APY rankings across DeFi | API /defi/vaults | "best stablecoin yield", "where to earn on USDC" | | stablecoin-market-brief | Market overview: cap, distribution, APY trends vs US Treasury | API /market/overview + /market/trend | "stablecoin market cap", "USDT market share" | | stablecoin-risk-check | Safety assessment: depeg history, reserves, audit status | Curated knowledge base | "is USDT safe", "stablecoin comparison" | | yield-strategy-advisor | Personalized allocation by risk tolerance and capital size | API /defi/vaults | "yield strategy", "how to earn on stablecoins" | | stablecoin-depeg-monitor | Peg stability monitoring + historical depeg database | API /market/overview + curated history | "depeg alert", "is my stablecoin safe right now" | | stablecoin-yield-vs-tradfi | DeFi yields vs bank savings, Treasury, money market | API /market/trend | "stablecoin vs savings account", "DeFi vs treasury" | | stablecoin-chain-explorer | TVL distribution and best yields by blockchain | API /market/overview + /defi/vaults | "which chain for stablecoins", "Arbitrum stablecoin APY" |


Public API

All data comes from the Barker Public API — free, no API key, real-time updates.

Base URL: https://api.barker.money/api/public/v1
Rate limit: 30 requests/minute per IP

Access model & security posture

  • Authentication: None — public read-only API.
  • Rate limiting: 30 req/min per IP. Edge DDoS protection in front.
  • Data scope sent to the API: Only public market parameters — stablecoin symbol, chain name, sort/limit. No wallet addresses, balances, signatures, private keys, or PII are transmitted by any skill in this suite.
  • Data returned: Public yield / market / TVL figures only. Sensitivity equivalent to public market-data APIs such as CoinGecko or DeFiLlama.
  • External data boundary: Every SKILL.md in this suite includes a ## Security: External Data Boundary section instructing consuming LLMs to treat all API response strings as untrusted data, not instructions.

| Endpoint | Description | |----------|-------------| | GET /defi/vaults | DeFi yield pools with APY, TVL, protocol, chain, asset | | GET /market/overview | Total market cap, yield-bearing cap, asset/chain distribution | | GET /market/trend | Historical APY trend (7–180 days) with US Treasury benchmark |

CEX per-venue detail (products, campaigns, borrow rates, venue × asset matrix) is not part of the public API. Interactive map at barker.money; programmatic access via app.barker.money/enterprise.

Example

curl "https://api.barker.money/api/public/v1/defi/vaults?asset=usdc&sort=apy&limit=5"

Response Shape & Units

All responses are JSON with { success, data, ... }. APY and share_pct fields are decimals (0.0523 = 5.23%, 0.4250 = 42.5%) — multiply by 100 for display.

Enterprise API

Need higher rate limits, historical data, or custom fields? Contact us for institutional-grade access.

app.barker.money/enterprise


FAQ

Q: How often is the data updated? A: Real-time. The yield index reflects live data from 500+ protocols and 20+ CEX.

Q: Do I need an API key? A: No. The public API is free with no authentication required. Rate limit is 30 requests/minute.

Q: What stablecoins are covered? A: All stablecoins on the market — USDT, USDC, DAI, USDS, USDe, sUSDe, FDUSD, GHO, crvUSD, PYUSD, sDAI, frxUSD, TUSD, BUSD, LUSD, DOLA, MIM, FRAX, USDs, USDX, RLUSD, USDY, BUIDL, and more. If a stablecoin exists, Barker covers it.

Q: What chains are supported? A: All chains — Ethereum, BSC, Arbitrum, Base, Polygon, Optimism, Avalanche, Solana, Sui, Aptos, Sei, Mantle, Scroll, zkSync, Linea, Blast, Mode, Manta, and more. Barker has the most comprehensive multi-chain coverage in the market.

Q: Is this financial advice? A: No. All skills provide educational information only, not financial advice. Always DYOR.

Q: Where can I find the best stablecoin yields? A: Use the stablecoin-yield-radar skill or visit barker.money for the full interactive yield map.

Q: How does Barker compare to DeFiLlama or CoinGecko? A: Barker is stablecoin-only and combines CEX + on-chain data in a single index. DeFiLlama focuses on on-chain TVL; CoinGecko focuses on token prices. Barker is the specialized yield map for stablecoins.


About Barker

Barker is The Stablecoin Yield Map — the leading stablecoin yield aggregation platform indexing real-time APY data from 500+ protocols and 20+ CEX. Stablecoins only, CEX + on-chain combined.

Author & Maintainer Disclosure

  • Project: Barker — The Stablecoin Yield Map (barker.money)
  • GitHub org: YBSbarker (controlled by the Barker team)
  • Submitting committers: zuoyeweb3 (founder), royrzguo (engineering) — both authorized Barker team members
  • Contact: [email protected]

License

MIT © 2026 Barker