From 29025c1a9fbfc7431f8ecfbf7237528eb59dc057 Mon Sep 17 00:00:00 2001 From: Madison Steiner <8176115+mh0pe@users.noreply.github.com> Date: Sat, 13 Jun 2026 22:29:52 -0700 Subject: [PATCH] docs(readme): add npx install example Add a dedicated npx block to the Install section showing both global and local install patterns via `npx @chrisai/seed` and `npx @chrisai/seed --local`, alongside the existing npm -g instructions. Co-Authored-By: Claude Opus 4.8 (1M context) --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index a988802..881f77c 100644 --- a/README.md +++ b/README.md @@ -208,6 +208,8 @@ All integrations are additive. SEED works without any of them installed. ## Install +### npm (global) + ```bash npm i -g @chrisai/seed ``` @@ -225,6 +227,18 @@ npm i -g @chrisai/seed -- --local npm i -g @chrisai/seed -- --config-dir /path/to/.claude ``` +### npx (no global install) + +Prefer not to install globally? Run it directly with `npx` — no prior install needed: + +```bash +# Global install (default) — available everywhere +npx @chrisai/seed + +# Install to current project only +npx @chrisai/seed --local +``` + Then open Claude Code and type `/seed` to start. ### What Gets Installed