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

numenbox

v0.1.1

Published

NumenBox — a long-running AI worker for your repo. `numenbox init` then `numenbox work "<task>"`: edits real files, checkpoints durably, runs your tests, and writes a verified (non-vacuous) certificate. Resumable after interruption; branch-per-task with o

Readme

alfasteine

The standalone CLI for ALFASTEIN — a browser-native agent team builder with one-command deployment.

Install

npm install -g alfasteine

Quickstart

1. Build your team in the browser

Open the ALFASTEIN studio at /agent-studio, configure your team (model per vertex, tools per role), and click Deploy.

2. Paste the install command anywhere

The Deploy modal generates a one-liner:

npx alfasteine init --config=eyJ2ZXJzaW9uIjoxLC...

This decodes your team configuration and creates a new project directory with package.json, README.md, .env.example, and alfastein.config.json.

3. Run the agent

cd <team-name>
cp .env.example .env  # fill in API keys for your providers
alfasteine run --prompt "Your task here"

Note: As of v0.1.0, alfasteine run requires running from inside the ALFASTEIN monorepo. Standalone runtime is on the roadmap — see Phase 23.

Commands

  • alfasteine init --config=<base64> — decode a TeamConfig and scaffold a project directory
  • alfasteine init --config=<base64> --cwd=<dir> — scaffold into a specific directory
  • alfasteine init <name> — create a single agent from a template (non-team mode)
  • alfasteine init <name> --interactive — launch the 7-step setup wizard
  • alfasteine run — boot the agent against a team config (requires monorepo)
  • alfasteine run --vertex <id> — run a specific vertex from the team
  • alfasteine run --prompt "..." — one-shot prompt

Architecture

  • 11 LLM providers with auto-fallback: OpenAI, Anthropic, Google, OpenRouter, NovitaAI, Ollama, z.ai/GLM, Kimi/Moonshot, Arcee, MiniMax, xAI
  • 10 builtin tools: read_file, write_file, web_search, shell, ssh_shell, daytona_shell, screenshot, visual_diff, mcp_call, spawn_subagent
  • Auto-triggered skills (DeepSeek visual-primitives doctrine fires on UI/layout/render keywords)
  • Multi-turn ReAct loop with iteration budget + grace call + AbortSignal interrupts
  • Token quantization: Anthropic prompt cache stratification, per-role output budgets, optional Haiku-tier tool result compression
  • SSE token streaming for OpenAI- and Anthropic-compatible providers
  • Recursive subagent spawning (depth ≤ 3) with full parent-context inheritance
  • Sandbox backends: local shell, remote ssh_shell (allowlisted hosts + commands), daytona_shell (pre-provisioned Daytona workspaces)

License

MIT. Copyright © 2026 Yassine Drani.