@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 --versionThe package also installs explicit aliases that can coexist more clearly with the full distribution:
seed-pure --version
seed-code-pure --versionIf 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-pureBun
Install the same npm package globally with Bun:
bun add --global @happy-creative/seed-code-pure
seed-pure --version
seed-pureTo run a locally built Pure bundle with Bun:
bun ./dist-pure/cli-entry.js --version
bun ./dist-pure/cli-entry.jsNode.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-pureOne-shot prompt:
seed-pure --prompt "Explain this repository"Use MCP configuration and other CLI commands normally:
seed-pure mcp list
seed-pure sessions listFor the HTTP daemon and browser Web Shell, install the full package instead:
npm install --global @happy-creative/seed-code
seed serveBuild and publish
From the repository root:
npm run build -- --cli-only
npm run bundle:pure
npm run prepare:package:pure
npm run check:pure-packageInspect the package before publishing:
npm pack ./dist-pure --dry-runPublish the scoped package publicly:
npm publish ./dist-pure --access publicThe Pure and full packages have independent npm version histories, although using the same version for builds from the same source revision is recommended.
