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

elizaos-plugin-deepblue

v0.1.0

Published

DeepBlue x402 crypto trading signals for ElizaOS agents

Readme

elizaos-plugin-deepblue

Real-time crypto trading signals for ElizaOS agents, powered by the DeepBlue x402 API.

Your agent gets live BTC/ETH/SOL/XRP signals, market mood (fear/greed), and Polymarket position data — all via pay-per-call micropayments on Base using the x402 protocol.

Features

  • BTC Signal — Real-time direction (UP/DOWN), confidence %, price, order book imbalance
  • Market Mood — Fear/greed index, regime, per-asset bias for BTC/ETH/SOL/XRP
  • All Signals — Multi-coin signal sweep in a single call
  • Market Data Provider — Automatically injects current market context into every agent response (cached 60s)
  • x402 aware — Gracefully handles payment-required (402) responses with helpful messaging

Install

npm install elizaos-plugin-deepblue

Usage

Register in your character file

{
  "name": "MyAgent",
  "plugins": ["elizaos-plugin-deepblue"],
  "settings": {}
}

Register in code

import { createAgent } from "@elizaos/core";
import deepbluePlugin from "elizaos-plugin-deepblue";

const agent = await createAgent({
  character: myCharacter,
  plugins: [deepbluePlugin],
});

Actions

GET_BTC_SIGNAL

Triggers on: "BTC signal", "what is BTC doing", "should I buy BTC", "bitcoin direction", etc.

Calls GET /btc/realtime-signal?coin=btc and returns:

📈 BTC Signal: UP (Moderate)

• Direction: UP
• Confidence: 62%
• Current Price: $67,420
• Momentum: +0.15%
• Order Book: buy-side pressure (imbalance: 0.214)

Powered by DeepBlue — https://deepbluebase.xyz

Cost: 0.005 USDC per call (x402, USDC on Base)


GET_MARKET_MOOD

Triggers on: "market mood", "fear and greed", "market sentiment", "how is the market", etc.

Calls GET /market-mood and returns:

🌊 Market Mood Report

• Regime: bull_volatile
• Fear/Greed Index: 72/100 — Greed 😏

Per-Asset Bias:
  • BTC: 📈 UP | Momentum: +0.21%
  • ETH: 📈 UP | Momentum: +0.15%
  • SOL: ➡️ NEUTRAL | Momentum: -0.02%
  • XRP: 📉 DOWN | Momentum: -0.18%

Powered by DeepBlue — https://deepbluebase.xyz

Cost: 0.01 USDC per call (x402, USDC on Base)


GET_SIGNALS

Triggers on: "trading signals", "all signals", "what's moving", "signal summary", etc.

Calls GET /signals and returns a ranked multi-coin signal table.

Cost: 0.005 USDC per call (x402, USDC on Base)

Market Data Provider

The plugin automatically registers a provider that injects current market context into every agent response (no extra configuration needed):

Current market (DeepBlue): BTC BULLISH | Fear/Greed: 72/100 (greed) | Regime: bull_volatile | Other: ETH bullish, SOL neutral, XRP bearish

The provider caches results for 60 seconds to avoid hammering the API.

x402 Payments

DeepBlue uses the x402 protocol for micropayments. When an endpoint requires payment:

  1. The API returns HTTP 402 Payment Required with payment details
  2. The plugin catches this gracefully and tells the user: "This signal requires a micropayment (~0.005 USDC) via the x402 protocol (USDC on Base)."
  3. No crashes, no unhandled errors

To enable paid calls, your agent or application needs an x402-capable HTTP client with a funded Base wallet. See x402.org for client libraries.

API Reference

All endpoints are at https://api.deepbluebase.xyz:

| Endpoint | Description | Cost | |---|---|---| | GET /btc/realtime-signal?coin=btc | Real-time BTC signal | 0.005 USDC | | GET /market-mood | Fear/greed + regime | 0.01 USDC | | GET /signals | All-coin signal sweep | 0.005 USDC | | GET /performance | Win rate + P&L | 0.01 USDC | | GET /polymarket | Active positions | 0.01 USDC |

Links

  • Website: https://deepbluebase.xyz
  • GitHub: https://github.com/ERROR403agent/elizaos-plugin-deepblue
  • x402 Protocol: https://x402.org

License

MIT