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

assistme

v0.8.2

Published

AssistMe CLI Agent - AI-powered agentic assistant for code, browser, and automation

Readme

@assistme/cli

AI-powered CLI agent that connects to the AssistMe web UI. Send messages from the web, and the CLI agent processes them locally using Claude with full tool access (file operations, shell commands, web search).

Quick Start

# Install dependencies
cd packages/assistme && npm install

# Build
npm run build

# Configure
assistme config set supabaseUrl https://your-project.supabase.co
assistme config set supabaseAnonKey your-anon-key
assistme config set anthropicApiKey sk-ant-...

# Login
assistme login -e [email protected] -p your-password

# Start the agent (in your project directory)
assistme start

Commands

| Command | Description | |---------|-------------| | assistme start | Start the agent daemon and listen for tasks | | assistme login | Authenticate with your AssistMe account | | assistme status | Check active sessions | | assistme config set <key> <value> | Set configuration | | assistme config show | Show current configuration |

Architecture

Web UI → Supabase DB (agent_tasks) → CLI Agent → Claude API → Tool Execution → Events back to DB → Web UI

The CLI agent:

  1. Registers a session in agent_sessions
  2. Polls agent_tasks for new pending tasks
  3. Processes each task using Claude with tool access
  4. Streams events to agent_task_events (text, tool calls, results)
  5. Web UI polls events for real-time display

Tools Available

  • read_file - Read file contents with line numbers
  • write_file - Create or overwrite files
  • search_files - Glob pattern file search
  • search_content - Regex content search across files
  • list_directory - List directory contents
  • execute_command - Run shell commands
  • web_fetch - Fetch web page content