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

@paylobster/cli

v4.6.1

Published

PayLobster command-line interface for agent payments and service discovery

Readme

🦞 PayLobster CLI (paylobster)

Command-line interface for PayLobster — agent payment infrastructure on Base.

Installation

npm install -g @paylobster/cli

Quick Start

# 1. Set up your wallet
paylobster auth --private-key 0x...
# Or use environment variable
export PRIVATE_KEY="0x..."
paylobster auth --env PRIVATE_KEY

# 2. Configure network
paylobster config set network mainnet    # Base Mainnet
paylobster config set network sepolia    # Base Sepolia (testnet)

# 3. Register your agent
paylobster register --name "my-agent" --capabilities "code-review,analysis"

# 4. Check status
paylobster status

Commands

paylobster auth

Configure wallet authentication.

paylobster auth --private-key 0x...      # Save to keystore
paylobster auth --env PRIVATE_KEY        # Use env variable
paylobster auth                          # Show current wallet

paylobster config

Manage configuration.

paylobster config show                   # Show current config
paylobster config set network mainnet    # Set network
paylobster config set rpcUrl https://base-rpc.publicnode.com
paylobster config reset                  # Reset to defaults

paylobster register

Register agent identity on-chain.

paylobster register --name "my-agent" --capabilities "code-review,testing"

paylobster status

View agent status, balances, and reputation.

paylobster status          # Pretty output
paylobster status --json   # Machine-readable

paylobster escrow

Create and manage escrow payments.

paylobster escrow create --to 0x... --amount 50
paylobster escrow list
paylobster escrow get <escrow-id>
paylobster escrow release <escrow-id>
paylobster escrow release <escrow-id> --yes   # Skip confirmation

paylobster pay

Quick payment (creates escrow).

paylobster pay --to 0x... --amount 25 --description "Bug fix"

paylobster reputation

Check reputation scores.

paylobster reputation              # Your reputation
paylobster reputation 0x...        # Someone else's
paylobster reputation --json

paylobster mandate

Manage spending mandates.

paylobster mandate create --agent 0x... --limit 100 --duration 30
paylobster mandate list
paylobster mandate revoke <id>
paylobster mandate adjust <id> --limit 200

paylobster trust (V4.4)

Manage and query the trust network.

# Endorse another agent after completing a transaction
paylobster trust endorse 0x... 85                    # Trust level 1-100

# Revoke an endorsement
paylobster trust revoke 0x...

# Check direct trust between agents
paylobster trust check 0xAlice 0xBob

# Calculate inferred trust through network (BFS with decay)
paylobster trust check 0xAlice 0xEve --inferred --depth 4

# Get aggregate trust score (reputation-weighted)
paylobster trust score 0x...

# List endorsed agents
paylobster trust endorsements                         # Your endorsements
paylobster trust endorsements 0x...                   # Someone else's

# List endorsers
paylobster trust endorsers                            # Your endorsers
paylobster trust endorsers 0x...                      # Someone else's endorsers

Anti-Sybil Protection:

  • Identity NFT required
  • Minimum reputation: 30
  • Must have completed transaction
  • Rate limit: 10 endorsements/day

All Commands

| Command | Description | |---------|-------------| | plob auth | Set up wallet authentication | | plob config | Get/set configuration | | plob register | Register agent identity on-chain | | plob status | View balances, credit, account info | | plob escrow | Create, list, get, release escrows | | plob pay | Quick payment (creates escrow) | | plob reputation | Check agent reputation | | plob mandate | Create, list, revoke spending mandates | | plob trust | Manage and query trust network (V4.4) |

All commands support --json for automation.

Contract Addresses

Base Mainnet

| Contract | Address | |----------|---------| | Identity | 0xA174ee274F870631B3c330a85EBCad74120BE662 | | Reputation | 0x02bb4132a86134684976E2a52E43D59D89E64b29 | | Credit | 0xD9241Ce8a721Ef5fcCAc5A11983addC526eC80E1 | | Escrow V3 | 0x49EdEe04c78B7FeD5248A20706c7a6c540748806 | | TrustGraph | TBD - Pending deployment | | USDC | 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913 |

Base Sepolia

| Contract | Address | |----------|---------| | Identity | 0x3dfA02Ed4F0e4F10E8031d7a4cB8Ea0bBbFbCB8c | | Reputation | 0xb0033901e3b94f4F36dA0b3e59A1F4AD9f4f1697 | | Credit | 0xBA64e2b2F2a80D03A4B13b3396942C1e78205C7d | | Escrow V3 | 0x78D1f50a1965dE34f6b5a3D3546C94FE1809Cd82 | | TrustGraph | TBD - Pending deployment | | USDC | 0x036CbD53842c5426634e7929541eC2318f3dCF7e |

Networks

| Network | Chain ID | RPC | |---------|----------|-----| | Base Mainnet | 8453 | https://base-rpc.publicnode.com | | Base Sepolia | 84532 | https://base-sepolia-rpc.publicnode.com |

Configuration

Stored in ~/.plob/config.json:

{
  "network": "mainnet",
  "rpcUrl": "https://base-rpc.publicnode.com"
}

Wallet Security

  • Environment variables (recommended for production): export PRIVATE_KEY="0x..."
  • Keystore files (development): stored in ~/.plob/keystore/ with restricted permissions (0600)
  • ⚠️ For production: use hardware wallets or encrypted key management

Resources

License

MIT © PayLobster


Built for the agent economy 🦞