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

@crossmint/lobster-cli

v0.1.4

Published

Standalone CLI for lobster.cash Solana wallet operations. Agent-framework agnostic.

Readme

@crossmint/lobster-cli

Standalone CLI for lobster.cash Solana wallet operations. Agent-framework agnostic.

Manage smart wallets, check balances, send tokens, and create/approve transactions on Solana -- from any terminal or agent runtime.

Install

npm install @crossmint/lobster-cli

Quick start

# 1. Set up a wallet (opens consent URL for human approval)
lobster setup

# 2. Check balance
lobster balance

# 3. Send USDC
lobster send --to <address> --amount 10

Global options

| Flag | Description | Default | | ---------------- | --------------------------------------- | -------------------------- | | --server <url> | Server base URL | https://www.lobster.cash | | --timeout <ms> | Request timeout | 15000 | | --human | Human-readable output (default is JSON) | false |

Commands

setup

Generate a local keypair and start the consent flow. Run again after approval to finalize.

lobster setup [--agent-id <id>]

balance

Check wallet balances.

lobster balance [--agent-id <id>]

send

Send tokens in a single step (create + sign + approve).

lobster send --to <address> --amount <amount> [--token usdc] [--wait] [--timeout 60000] [--agent-id <id>]

tx create

Create a transaction without approving it.

# Transfer
lobster tx create --type transfer --to <address> --amount <amount> [--token usdc]

# Serialized transaction
lobster tx create --type serialized --serialized-transaction <data>

# Contract calls
lobster tx create --type calls --calls '<json array>'

tx approve

Approve a pending transaction by signing.

# Let the CLI sign the message from tx create
lobster tx approve --id <txId> --message <msg> [--encoding utf8]

# Or provide a pre-computed signature
lobster tx approve --id <txId> --signature <sig>

Add --wait to block until the transaction reaches a terminal state.

tx status

Check transaction status.

lobster tx status --id <txId> [--wait] [--timeout 60000]

wallet info

Show wallet details for an agent.

lobster wallet info [--agent-id <id>]

wallet list

List all stored wallets.

lobster wallet list

wallet delete

Delete a stored wallet.

lobster wallet delete --agent-id <id> [--yes]

Multi-agent support

Every command accepts --agent-id <id> to operate on a specific agent's wallet. The default agent ID is "main". Each agent has its own keypair, tokens, and smart wallet.

Library usage

The package also exports all core functions for programmatic use:

import {
  parseConfig,
  getOrCreateWallet,
  ensureAuthenticated,
  withAuthenticatedApi,
  getWalletBalance,
  createTransaction,
  approveTransaction,
  runSetupFlow,
} from "@crossmint/lobster-cli";

See src/index.ts for the full list of exports.

Storage

Wallets are stored at ~/.openclaw/lobster-cash/wallets.json (mode 0600). Override the directory with the LOBSTER_CASH_WALLETS_DIR environment variable.

Output

All commands output JSON by default for easy piping and scripting. Pass --human for formatted text output.

License

MIT