@nudata/nu-claude-pm 0.1.0 → 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,74 @@
1
+ # nu-claude-pm
2
+
3
+ Claude Code slash commands for end-to-end project management — session flow, vision, roadmap, research, and external comms.
4
+
5
+ Once installed, run `/nu-pm-user-guide` from inside Claude to see all commands and how they work together.
6
+
7
+ ---
8
+
9
+ ## Installation
10
+
11
+ ### Option 1 — npm (recommended for developers)
12
+
13
+ Install globally into ~/.claude for all projects:
14
+
15
+ ```bash
16
+ npx @nudata/nu-claude-pm install
17
+ ```
18
+
19
+ Install into the current project only (instead of globally):
20
+
21
+ ```bash
22
+ nu-claude-pm install --local
23
+ ```
24
+
25
+ ### Option 2 — curl (no Node.js required)
26
+
27
+ ```bash
28
+ curl -sL https://raw.githubusercontent.com/nuwire/nu-claude-pm/main/install.sh | sh
29
+ ```
30
+
31
+ This fetches the latest GitHub release and copies the commands into `~/.claude/commands/`.
32
+
33
+ ---
34
+
35
+ ## Commands
36
+
37
+ | Command | What it does |
38
+ |---------|-------------|
39
+ | `/nu-pm-scaffold` | Bootstrap a new project — creates the full `product/` directory structure |
40
+ | `/nu-pm-vision` | Create or review `vision.md` |
41
+ | `/nu-pm-roadmap` | Create or review `roadmap.md` |
42
+ | `/nu-pm-continue` | Start of session — read resume brief and orient to active work |
43
+ | `/nu-pm-status` | After a task — find the next task with prerequisite check |
44
+ | `/nu-pm-update` | Mid-session checkpoint — append snapshot to session report |
45
+ | `/nu-pm-halt` | End of session — update docs, commit, push, shut down infra |
46
+ | `/nu-pm-research` | Create a structured research or competitive analysis document |
47
+ | `/nu-pm-spike` | Run a time-boxed technical feasibility investigation |
48
+ | `/nu-pm-one-pager` | Generate or refresh a one-page project summary |
49
+ | `/nu-pm-elevator-pitch` | Generate pitch variants (tweet, 30-sec, 60-sec) |
50
+ | `/nu-pm-user-guide` | Full user guide — start here |
51
+
52
+ ---
53
+
54
+ ## Releasing
55
+
56
+ This package is released two ways.
57
+
58
+ ### npm
59
+
60
+ Bump the version in `package.json`, then:
61
+
62
+ ```bash
63
+ npm publish
64
+ ```
65
+
66
+ ### GitHub Release (for the curl installer)
67
+
68
+ Requires [just](https://github.com/casey/just) and the [gh CLI](https://cli.github.com/).
69
+
70
+ ```bash
71
+ just release
72
+ ```
73
+
74
+ This reads the version from `package.json`, packages `commands/` into a tarball, creates a git tag, and publishes a GitHub release with the tarball as an asset.
@@ -36,9 +36,8 @@ function install() {
36
36
  console.log(` installed: ${file}`);
37
37
  }
38
38
 
39
- const scope = isLocal ? "project (.claude/commands/)" : "global (~/.claude/commands/)";
40
- console.log(`\n✓ ${files.length} commands installed ${scope}`);
41
- console.log(" Reload Claude Code to pick up new commands.");
39
+ console.log(`\nSuccessfully installed into ${targetDir}`);
40
+ console.log("Run /nu-pm-user-guide from inside Claude to get started.");
42
41
  }
43
42
 
44
43
  function uninstall() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nudata/nu-claude-pm",
3
- "version": "0.1.0",
3
+ "version": "0.1.3",
4
4
  "description": "Claude Code slash commands for end-to-end project management — session flow, vision, roadmap, research, and external comms.",
5
5
  "keywords": ["claude", "claude-code", "pm", "project-management", "ai"],
6
6
  "license": "MIT",