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

@happy-creative/seed-code-pure

v0.0.3

Published

SEED Pure - command-line-only AI coding assistant

Readme

SEED Pure CLI

@happy-creative/seed-code-pure is the command-line-only SEED distribution. It keeps the interactive and headless CLI, model providers, built-in tools, MCP clients, skills, extensions, sessions, and sandbox support. It does not include the seed serve HTTP daemon or Web Shell.

Install

Install Pure as your main SEED command:

npm install --global @happy-creative/seed-code-pure
seed --version

The package also installs explicit aliases that can coexist more clearly with the full distribution:

seed-pure --version
seed-code-pure --version

If the full and Pure packages are both installed globally, npm may replace the shared seed bin link with the most recently installed package. Use seed-pure, or keep only one package installed globally.

Run without a global installation:

npx --package @happy-creative/seed-code-pure seed-pure

Bun

Install the same npm package globally with Bun:

bun add --global @happy-creative/seed-code-pure
seed-pure --version
seed-pure

To run a locally built Pure bundle with Bun:

bun ./dist-pure/cli-entry.js --version
bun ./dist-pure/cli-entry.js

Node.js 22+ remains the reference runtime. The package wrapper detects Bun and does not pass Node-only startup flags to it.

Use

Interactive mode:

seed-pure

One-shot prompt:

seed-pure --prompt "Explain this repository"

Use MCP configuration and other CLI commands normally:

seed-pure mcp list
seed-pure sessions list

For the HTTP daemon and browser Web Shell, install the full package instead:

npm install --global @happy-creative/seed-code
seed serve

Build and publish

From the repository root:

npm run build -- --cli-only
npm run bundle:pure
npm run prepare:package:pure
npm run check:pure-package

Inspect the package before publishing:

npm pack ./dist-pure --dry-run

Publish the scoped package publicly:

npm publish ./dist-pure --access public

The Pure and full packages have independent npm version histories, although using the same version for builds from the same source revision is recommended.