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

@hyperspaceng/pi-agent-id

v1.0.0

Published

Ethereum wallet management tool for pi agent system - HD wallets, secure key storage, and transaction signing

Readme

pi-agent-id Wallet Extension

✅ Successfully Built

pi-agent-id is a complete Ethereum wallet management tool implemented as a single binary for the pi agent system.

Features Implemented

| Feature | Status | |---------|--------| | HD Wallet Creation (BIP39/BIP44) | ✅ With 12-word mnemonic | | Simple Wallet Creation | ✅ Random key generation | | Private Key Import | ✅ Hex format support | | Mnemonic Import | ✅ 12/24 word phrases | | Keystore Import | ✅ Ethereum standard UTC files | | Message Signing | ✅ EIP-191 compatible | | Transaction Signing | ✅ Full ETH transfers | | Balance Checking | ✅ Any ERC20/ETH address | | Wallet Export | ✅ Private key & mnemonic | | Secure Storage | ✅ AES-256-GCM + PBKDF2 | | Multi-wallet | ✅ Unlimited wallets | | Cross-platform | ✅ All major platforms |

Binary Distribution

| Platform | Size | File | |----------|------|------| | macOS ARM64 (Apple Silicon) | ~10MB | pi-agent-id | | macOS AMD64 (Intel) | ~11MB | pi-agent-id-darwin-amd64 | | Linux AMD64 | ~11MB | pi-agent-id-linux-amd64 | | Linux ARM64 | ~10MB | pi-agent-id-linux-arm64 | | Windows AMD64 | ~12MB | pi-agent-id-windows-amd64.exe |

Installation

# Install to pi skills
pi skill add pi-agent-id ~/.pi/agent/skills/pi-agent-id/bin/pi-agent-id

# Or install globally
sudo cp ~/.pi/agent/skills/pi-agent-id/bin/pi-agent-id /usr/local/bin/

Usage Examples

# Create HD wallet with mnemonic
pi-agent-id create --name mywallet --hd --password "secure-pass"

# Import from private key
pi-agent-id import --name imported --key 0xabc123... --password "pass"

# List all wallets
pi-agent-id list

# Sign a message
pi-agent-id sign --address 0x123... --message "Hello" --password "pass"

# Check balance
pi-agent-id balance --address 0x123... --rpc https://eth.llamarpc.com

# Send transaction
pi-agent-id send --from 0x123... --to 0x456... --amount 1000000000000000000 \
  --rpc https://eth.llamarpc.com --password "pass"

# Export wallet
pi-agent-id export --name mywallet --password "pass" --private-key

# Recover from mnemonic
pi-agent-id recover --mnemonic "word1 word2 ... word12" --name recovered --password "pass"

Security Features

  • Encryption: AES-256-GCM with PBKDF2 (100,000 iterations)
  • Storage: Wallet files are encrypted at rest
  • Permissions: Files created with 0600 permissions (owner-only)
  • No plain text: Keys and mnemonics never stored unencrypted

Storage Location

  • macOS/Linux: ~/.config/pi-agent-id/wallets/
  • Windows: %APPDATA%/pi-agent-id/wallets/

Architecture

pi-agent-id/
├── cmd/           # CLI command implementations
├── wallet/        # Wallet logic & transactions
├── crypto/        # Signing & verification
├── storage/       # Encrypted persistence
├── main.go        # Entry point
└── bin/           # Compiled binaries

Dependencies

  • Go Ethereum (go-ethereum)
  • BIP39 implementation (tyler-smith/go-bip39)
  • Cobra CLI framework
  • Standard crypto libraries

Build Commands

# Build for current platform
cd ~/.pi/agent/skills/pi-agent-id
make build

# Build for all platforms
make build-all

# Run tests
make test

# Create release archives
make release

Files Created

  • SKILL.md - Documentation
  • main.go - Entry point
  • cmd/*.go - 10 command implementations
  • wallet/*.go - Wallet, transaction, keystore logic
  • crypto/*.go - Cryptographic operations
  • storage/*.go - Encrypted storage layer
  • Makefile - Build automation
  • build.sh - Cross-platform builder
  • go.mod - Module dependencies

Version

Current: dev (built from source)

Next Steps

  1. Tag a release version
  2. Upload binaries to GitHub releases
  3. Submit to pi skill registry
  4. Add ERC20 token support
  5. Add hardware wallet integration

Status: ✅ Complete and tested Location: ~/.pi/agent/skills/pi-agent-id/ Ready for: Pi skill registration and daily use