From 1d953d98da351f3c6ae27dd65925bbddccfca9fc Mon Sep 17 00:00:00 2001 From: Sajith-K-Sasi Date: Mon, 30 Mar 2026 11:33:13 +0530 Subject: [PATCH 1/2] Fix local and custom install commands for npm 7+ On npm 7+, `--` causes npm to treat subsequent flags as package names, resulting in a 404 error. Replace with `npx` which correctly passes flags to the install script. Co-Authored-By: Claude Opus 4.6 (1M context) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9e525fb..56f2e2f 100644 --- a/README.md +++ b/README.md @@ -212,10 +212,10 @@ One command. Installs the skill to `~/.claude/commands/seed/` — available in e npm i -g @chrisai/seed # Install to current project only -npm i -g @chrisai/seed -- --local +npx @chrisai/seed --local # Custom Claude config directory -npm i -g @chrisai/seed -- --config-dir /path/to/.claude +npx @chrisai/seed --config-dir /path/to/.claude ``` Then open Claude Code and type `/seed` to start. From f33ff977af591110b5502cf4e51b46c4e1f59fbc Mon Sep 17 00:00:00 2001 From: Sajith-K-Sasi Date: Mon, 30 Mar 2026 11:41:36 +0530 Subject: [PATCH 2/2] Fix global install command to use npx `npm i -g @chrisai/seed` registers the bin but does not run the installer to copy files to ~/.claude/commands/seed/. Replace all install commands with `npx @chrisai/seed` which correctly executes the install script across all npm versions. Fixes #1 Co-Authored-By: Claude Opus 4.6 (1M context) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 56f2e2f..b8adb9c 100644 --- a/README.md +++ b/README.md @@ -202,14 +202,14 @@ All integrations are additive. SEED works without any of them installed. ## Install ```bash -npm i -g @chrisai/seed +npx @chrisai/seed ``` One command. Installs the skill to `~/.claude/commands/seed/` — available in every workspace. ```bash # Global install (default) — available everywhere -npm i -g @chrisai/seed +npx @chrisai/seed # Install to current project only npx @chrisai/seed --local