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

@keich2realg/plugin-sentinel402

v0.1.0

Published

ElizaOS plugin: Smart Money Concepts trading signals (FVG, liquidity, BOS/CHoCH, ICT sessions) paid per call via x402 USDC on Base.

Readme

@keich2realg/plugin-sentinel402

ElizaOS plugin that gives any agent Smart Money Concepts market reads — market structure (BOS/CHoCH), fair value gaps, liquidity pools & sweeps, ICT sessions/kill zones — by calling the Sentinel402 x402 API. Pay-per-call in USDC on Base (gasless, via x402). No subscription, no API key.

Install

npm install @keich2realg/plugin-sentinel402

Configure

The agent pays per call from its own wallet. Set these in your character secrets / env:

| Setting | Required | Description | |---|---|---| | SENTINEL402_WALLET_KEY | ✅ | Private key of the agent wallet that pays per call. Must hold USDC on Base. Keep secret. | | SENTINEL402_URL | – | Service base URL (default https://sentinel402.onrender.com). | | SENTINEL402_RPC_URL | – | Base RPC (default https://mainnet.base.org). |

import { sentinel402Plugin } from "@keich2realg/plugin-sentinel402";

export const character = {
  name: "TraderAgent",
  plugins: [sentinel402Plugin],
  settings: {
    secrets: { SENTINEL402_WALLET_KEY: process.env.SENTINEL402_WALLET_KEY },
  },
};

Use

The agent exposes the GET_SMC_SIGNAL action. It triggers on requests like:

  • "What's the SMC structure on BTCUSDT 15m?"
  • "Check liquidity and FVGs for ETH on the 1h"
  • "solana 4h order flow"

Returns a concise summary plus the full structured snapshot in result.data.snapshot.

Direct use (no agent)

import { fetchSmcSignal } from "@keich2realg/plugin-sentinel402";

const r = await fetchSmcSignal(
  "https://sentinel402.onrender.com",
  process.env.WALLET_KEY!,
  { symbol: "BTCUSDT", timeframe: "15m" },
);
console.log(r.snapshot.structure.bias, r.snapshot.fvg.length);

Notes

  • Payment is handled transparently by x402: the first call gets a 402, the plugin signs an EIP-3009 USDC authorization, and retries. The facilitator submits the transfer — the agent pays no gas.
  • Not financial advice. SMC structure is an analytical input, not a signal to trade.

MIT