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

sentinelscout

v0.1.0

Published

Autonomous Solana portfolio guardian agent

Readme

SENTINEL-SCOUT

Autonomous Solana portfolio guardian — the buff crab watches your wallet so you don't have to.


Install

npm install -g sentinelscout
sentinelscout setup
sentinelscout start

How It Works

  • Risk loop: Every 15 min, pulls your portfolio via Zerion CLI, scores risk with Claude Sonnet, and swaps into USDC if risk exceeds your threshold.
  • Yield loop: Every 60 min, scans Meteora LP pools via LPAgent, and migrates your position to the highest-APY pool if improvement is above your threshold.
  • Social: After every action, generates a build-in-public tweet via Claude and posts to X and Telegram automatically.

CLI Commands

| Command | Description | |---------------------------|---------------------------------------------------------| | sentinelscout setup | Interactive setup wizard — configure API keys & thresholds | | sentinelscout start | Start the agent natively via PM2 | | sentinelscout stop | Stop the native PM2 agent | | sentinelscout logs | Stream live agent logs (PM2) | | sentinelscout status | Print agent status table | | sentinelscout update | Update the agent via npm | | sentinelscout config | Reconfigure — pre-populated with existing values |


Config Options

| Variable | Default | Description | |------------------------|---------------|------------------------------------------------| | WALLET_ADDRESS | — | Solana wallet to monitor | | WALLET_PRIVATE_KEY | — | REQUIRED. Base58 private key for trades/migrations | | SOLANA_RPC | devnet | Solana RPC URL (e.g., devnet or mainnet) | | ANTHROPIC_API_KEY | — | Claude API key for AI decisions | | ZERION_API_KEY | — | Zerion CLI integration key | | LPAGENT_API_KEY | — | LPAgent.io API key for pool data | | TELEGRAM_BOT_TOKEN | — | Telegram bot for alerts | | TELEGRAM_CHAT_ID | — | Telegram chat to send alerts to | | X_API_KEY | — | X (Twitter) API credentials | | SUPABASE_URL | — | Supabase project URL for decision logging | | RISK_THRESHOLD | 70 | Score 0-100; hedge when exceeded | | YIELD_IMPROVEMENT_PCT| 20 | Min APY % improvement to trigger migration | | AGENT_MODE | autonomous | autonomous = execute trades, notify = alerts only | | RISK_INTERVAL_MIN | 15 | Minutes between risk scans | | YIELD_INTERVAL_MIN | 60 | Minutes between yield scans |


Requirements

  • Node.js 18+
  • zerion-cli installed globally (REQUIRED): npm install -g zerion-cli

Supabase Table

Create a decisions table in your Supabase project:

create table decisions (
  id uuid primary key default gen_random_uuid(),
  wallet text not null,
  action text not null,
  risk_score int,
  reason text,
  tx_signature text,
  created_at timestamptz default now()
);

License

MIT © 2025 SentinelScout