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

simon-helper

v0.4.1

Published

Local daemon for simondoes.ai — holds API keys on your machine, proxies LLM calls.

Readme

simon-helper

The local daemon for simondoes.ai. Holds your API keys on your machine; the Simon cloud never sees them. Proxies LLM calls locally and posts results back to the cloud UI.

Install

curl -fsSL https://simondoes.ai/install.sh | bash

That script installs Node 20+, installs this package globally, prompts for your Simon API token + your Anthropic + OpenAI keys, and registers the device with the cloud. On macOS it installs a launchd agent so the helper runs at login; on Linux it installs a systemd --user unit.

Once the package is published to npm you can also run it without a global install:

npx simon-helper login <your-simon-api-token>
npx simon-helper key set anthropic sk-ant-...
npx simon-helper start

Manual usage

npm install -g simon-helper
simon-helper login <your-simon-api-token>
simon-helper key set anthropic sk-ant-...
simon-helper key set openai    sk-...
simon-helper register
simon-helper start

Get your API token at https://simondoes.ai/app/settings/helper.

Reliability

The daemon polls the cloud every 2 seconds while healthy. When the cloud is unreachable it backs off exponentially (with jitter) up to 60 seconds between attempts, then snaps back to fast polling on the first success. State transitions are logged as single lines (connection lost ... / back online after Ns ...) so a long outage does not flood the log.

If the API token is revoked (HTTP 401), the helper logs how to fix it — regenerate a token at https://simondoes.ai/app/settings/helper, then run simon-helper login <token> — and waits at the 60s cap instead of hot-looping. The new token is picked up without restarting the daemon.

Security

Keys live in ~/.simon/keys.json with 0600 perms, owned by your user. Nothing in this package ever transmits the raw key to the Simon cloud.

The cloud sends job specs (model, messages, params); the helper makes the actual provider call with the local key and posts back the response.

Per-agent integrations

Some agents need extra one-time wiring on this machine. The cloud will not be able to drive them until you complete this setup.

3D-Websites — Blender MCP

The 3d-websites agent produces premium brand sites with 3D anchors by directing Cursor + Blender via MCP. To enable it:

  1. Install Blender (5.x or newer) from https://www.blender.org/download.
  2. Install the BlenderMCP add-on. It needs to live at:
    ~/Library/Application Support/Blender/<ver>/scripts/addons/blender_mcp_addon.py   # macOS
    ~/.config/blender/<ver>/scripts/addons/blender_mcp_addon.py                       # Linux
    simon-helper drops it there automatically on install; if missing, download from the BlenderMCP project and place it manually.
  3. Wire the MCP server in your Claude / Cursor MCP config:
    "blender": { "command": "/opt/homebrew/bin/uvx", "args": ["blender-mcp"] }
    (Add to both ~/.cursor/mcp.json and ~/.claude.json so both surfaces see it.)
  4. Each Blender launch (the toggles persist across sessions, the server does not):
    • Open Blender → Edit → Preferences → Add-ons → search MCP → enable Blender MCP (one-time).
    • In a 3D Viewport, press N → click the BlenderMCP tab in the sidebar.
    • Use assets from Poly Haven — free, no key needed.
    • Use Hyper3D Rodin 3D model generation — click Set Free Trial API Key for a starter key, or paste your own.
    • Use assets from Sketchfab — paste API token from https://sketchfab.com/settings/password (free accounts include API access).
    • Click Connect to MCP server at the bottom. The button label flips to Disconnect from MCP server and shows Running on port 9876.
  5. Keep Blender open for the duration of any 3d-websites job. The MCP "server" is a TCP listener inside the Blender process; closing Blender kills it. If a job fails with "Could not connect to Blender", click Connect to MCP server again.

Smoke-test from any Claude/Cursor session (all four should succeed):

mcp__blender__get_polyhaven_status   → "PolyHaven integration is enabled and ready to use."
mcp__blender__get_sketchfab_status   → "Sketchfab integration is enabled and ready to use. Logged in as: <you>"
mcp__blender__get_hyper3d_status     → "Hyper3D Rodin integration is enabled and ready to use."
mcp__blender__get_scene_info         → JSON scene dump (default scene = Cube + Light + Camera)

Commands

| Command | What it does | |---|---| | simon-helper start | Run the daemon — polls for jobs | | simon-helper login <token> | Save the Simon API token | | simon-helper register | Register this device with the cloud | | simon-helper key set anthropic <sk> | Save Anthropic API key | | simon-helper key set openai <sk> | Save OpenAI API key | | simon-helper status | Print current config + key presence |

License

MIT