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

@slopus/agent

v0.1.0

Published

CLI client for controlling Happy Coder agents remotely

Readme

Happy Agent

CLI client for controlling Happy Coder agents remotely.

Unlike happy-cli which both runs and controls agents, happy-agent only controls them — creating sessions, sending messages, reading history, monitoring state, and stopping sessions.

Installation

From the monorepo:

yarn workspace happy-agent build

Or link globally:

cd packages/happy-agent && npm link

Authentication

Happy Agent uses account authentication via QR code, the same flow as linking a device in the Happy mobile app.

# Authenticate by scanning QR code with the Happy mobile app
happy-agent auth login

# Check authentication status
happy-agent auth status

# Clear stored credentials
happy-agent auth logout

Credentials are stored at ~/.happy/agent.key.

Commands

List sessions

# List all sessions
happy-agent list

# List only active sessions
happy-agent list --active

# Output as JSON
happy-agent list --json

Session status

# Get live session state (supports ID prefix matching)
happy-agent status <session-id>

# Output as JSON
happy-agent status <session-id> --json

Create a session

# Create a new session with a tag
happy-agent create --tag my-project

# Specify a working directory
happy-agent create --tag my-project --path /home/user/project

# Output as JSON
happy-agent create --tag my-project --json

Send a message

# Send a message to a session
happy-agent send <session-id> "Fix the login bug"

# Send and wait for the agent to finish
happy-agent send <session-id> "Run the tests" --wait

# Output as JSON
happy-agent send <session-id> "Hello" --json

Message history

# View message history
happy-agent history <session-id>

# Limit to last N messages
happy-agent history <session-id> --limit 10

# Output as JSON
happy-agent history <session-id> --json

Stop a session

happy-agent stop <session-id>

Wait for idle

# Wait for agent to become idle (default 300s timeout)
happy-agent wait <session-id>

# Custom timeout
happy-agent wait <session-id> --timeout 60

Exit code 0 when agent becomes idle, 1 on timeout.

Environment Variables

  • HAPPY_SERVER_URL - API server URL (default: https://api.cluster-fluster.com)
  • HAPPY_HOME_DIR - Home directory for credential storage (default: ~/.happy)

Session ID Matching

All commands that accept a <session-id> support prefix matching. You can provide the first few characters of a session ID and the CLI will resolve the full ID.

Encryption

All session data is end-to-end encrypted. New sessions use AES-256-GCM with per-session keys. Existing sessions created by other clients are decrypted using the appropriate key scheme (AES-256-GCM or legacy NaCl secretbox).

Requirements

  • Node.js >= 20.0.0
  • A Happy mobile app account for authentication

Publishing to npm

Maintainers can publish a new version:

yarn release               # From repo root: choose library to release
# or directly:
yarn workspace happy-agent release

This flow:

  • runs tests/build checks via prepublishOnly
  • creates a release commit and happy-agent-vX.Y.Z tag
  • creates a GitHub release with generated notes
  • publishes happy-agent to npm

License

MIT