planrails 0.4.0 → 0.4.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.4.1 — 2026-09-13
4
+
5
+ - The Claude Code skill is `/planrails`, not `/plan`, because Claude Code has a
6
+ `/plan` of its own. Install it at `~/.claude/skills/planrails/`; the README and
7
+ the sentence `init` prints say so. Nothing else changed.
8
+
3
9
  ## 0.4.0 — 2026-09-13
4
10
 
5
11
  A review of 0.3.0 against a real multi-session plan, the Claude Code docs, and
package/PLANNER.md CHANGED
@@ -1,4 +1,4 @@
1
- <!-- planrails 0.4.0 -->
1
+ <!-- planrails 0.4.1 -->
2
2
  # The Planner
3
3
 
4
4
  You are about to plan a piece of work with a person, then help execute it so the
package/README.md CHANGED
@@ -92,11 +92,12 @@ The checker needs Node to run. If your project has no Node at all, skip it — t
92
92
  plan still works, and your agent enforces the gate the way `PLANNER.md` says. The
93
93
  planner method does not depend on any language.
94
94
 
95
- ### As a `/plan` command in Claude Code
95
+ ### As a `/planrails` command in Claude Code
96
96
 
97
- Copy [`skill/`](skill) to `~/.claude/skills/plan/`. Then `/plan` starts the same
98
- flow in any project that has run `npx planrails init` — the skill reads the
99
- project's own copy of `PLANNER.md`, so every project follows the version it has.
97
+ Copy [`skill/`](skill) to `~/.claude/skills/planrails/`. Then `/planrails` starts
98
+ the same flow in any project that has run `npx planrails init` — the skill reads
99
+ the project's own copy of `PLANNER.md`, so every project follows the version it
100
+ has. (It is not called `/plan`, because Claude Code has a `/plan` of its own.)
100
101
 
101
102
  ## How a plan works
102
103
 
package/bin/planrails.mjs CHANGED
@@ -83,7 +83,7 @@ function init(args) {
83
83
  console.log(`
84
84
  Next:
85
85
  1. Tell your agent: Follow .project-management/planrails/PLANNER.md and tell me when you are ready to plan <the feature> with me.
86
- (Or, in Claude Code, use /plan if you installed the skill.)
86
+ (Or, in Claude Code, use /planrails if you installed the skill.)
87
87
  2. Add to the command you run before every commit:
88
88
  node .project-management/planrails/check-plans.mjs
89
89
  3. When the agent writes a plan, it adds one line to your CLAUDE.md so the plan
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "planrails",
3
- "version": "0.4.0",
3
+ "version": "0.4.1",
4
4
  "description": "Plans that survive a lost session, and \"done\" that means done. A planner prompt and a tiny checker.",
5
5
  "type": "module",
6
6
  "license": "MIT",
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- // planrails 0.4.0
2
+ // planrails 0.4.1
3
3
  /**
4
4
  * check-plans — the machine-checked rails of the planner.
5
5
  *