@nudata/nu-claude-pm
v0.1.4
Published
Claude Code slash commands for end-to-end project management — session flow, vision, roadmap, research, and external comms.
Maintainers
Readme
nu-claude-pm (Node.js)
Node.js implementation of the nu-claude-pm command installer.
Installation
Option 1 — npx
Install globally into ~/.claude for all projects:
npx @nudata/nu-claude-pm installInstall into the current project only:
npx @nudata/nu-claude-pm install --localOption 2 — curl (no Node.js required)
curl -sL https://raw.githubusercontent.com/nuwire/nu-claude-pm/main/nodejs/install.sh | shHow it works
package.json has a "bin" field that maps the command name to a script:
"bin": {
"nu-claude-pm": "./bin/nu-claude-pm.js"
}When you run npx @nudata/nu-claude-pm install --local, npx:
- Downloads the package
- Matches the package name to the
"bin"entry - Runs
./bin/nu-claude-pm.js, passinginstall --localas arguments
The script itself parses the arguments — install, uninstall, list are not npx keywords.
Releasing
npm
Bump the version in package.json, then:
npm publishGitHub Release (for the curl installer)
just release