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

@robotmoney/cli

v0.3.0

Published

CLI for the Robot Money stablecoin yield vault on Base — for AI agents and autonomous machines

Readme

@robotmoney/cli

Experimental — pre-v1.0. Command syntax and response schemas may change. Always review transactions before signing.

CLI for the Robot Money stablecoin yield vault on Base. Built for AI agents and autonomous machines — every command emits JSON to stdout.

Every deposit auto-splits 95% to the vault + 5% across a fixed 7-token agent basket (VIRTUAL, ROBOT, BNKR, JUNO, ZFI, GIZA, PEAQ) atomically via Uniswap UniversalRouter — basket tokens land directly in the receiver's wallet. Use --no-basket for vault-only mode.

Install

# One-off use
npx @robotmoney/cli <command> --chain base

# Or as a project dependency
npm install @robotmoney/cli

Quickstart

End-to-end via OWS (no external wallet needed)

# 1. Bootstrap a wallet
npx @robotmoney/cli create-wallet --label my-agent

# 2. Fund the printed address with USDC + a small amount of ETH for gas on Base

# 3. Execute the deposit (signs + broadcasts via OWS, returns tx hashes)
npx @robotmoney/cli execute-deposit --chain base --wallet my-agent --amount 100

Prepare-only (you sign with your own wallet)

npx @robotmoney/cli prepare-deposit \
  --chain base \
  --user-address 0xYourAddress \
  --amount 100 \
  --receiver 0xYourAddress

Commands

| Command | Description | |---|---| | create-wallet | Bootstrap a new Open Wallet Standard wallet | | health-check | Check RPC connectivity and vault reachability | | get-vault | Full vault state (caps, fees, share price); --verbose adds per-adapter breakdown | | get-balance | A user's rmUSDC balance and USDC-equivalent value | | get-apy | Blended APY across Morpho, Aave, and Compound | | get-basket-holdings | All 7 basket-token balances + per-token USDC valuation | | prepare-deposit | Unsigned deposit txs (95% vault + 5% basket); --no-basket for vault-only, --basket-only to skip vault, --slippage-bps for basket slippage | | prepare-redeem | Unsigned redeem; supports basket sells via --sell-all, --sell-percent, --sell-tokens, --sell-amounts. --shares 0 to skip vault leg | | prepare-withdraw | Unsigned withdrawal by target net USDC; same basket-sell flags as prepare-redeem. --amount 0 to skip vault leg | | execute-deposit | Sign + broadcast a deposit (vault + basket) end-to-end via an OWS wallet | | execute-redeem | Sign + broadcast a redeem + optional basket sells end-to-end | | execute-withdraw | Sign + broadcast a withdraw + optional basket sells end-to-end |

RPC configuration

The CLI uses a built-in fallback pool of 5 free Base mainnet endpoints by default, with automatic retry across endpoints when any one rate-limits. Override with:

# Flag (highest priority)
npx @robotmoney/cli get-vault --chain base --rpc-url https://base-mainnet.g.alchemy.com/v2/<key>

# Environment variable
RPC_URL=https://base-mainnet.g.alchemy.com/v2/<key> npx @robotmoney/cli get-vault --chain base

OWS wallet + passphrase

execute-* commands use Open Wallet Standard to sign.

  • --wallet <name> — explicit wallet name. If omitted and only one wallet exists in ~/.ows/wallets/, it's auto-picked.
  • --passphrase <string> — passphrase flag (shell history hazard)
  • OWS_PASSPHRASE env var — clean passphrase path for agents
  • Otherwise, the CLI prompts interactively on a TTY

Full docs

License

MIT