openplanr 1.25.0 → 1.25.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,27 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.25.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [`7d3bf2c`](https://github.com/openplanr/OpenPlanr/commit/7d3bf2c4c04a91f94b97aca1f47d503bc6291589) Fix `planr setup` failing against the published plugin tuple.
8
+
9
+ The CLI pins its pipeline sibling exactly in `optionalDependencies`, and at
10
+ runtime resolves the installed copy's version to decide which Claude plugin
11
+ version to expect — compared by strict equality. The 1.25.0 release shipped that
12
+ pin at `0.40.0` while publishing alongside pipeline `0.41.0`, so every `planr
13
+ setup` on a correctly-installed machine failed `E_CLAUDE_PLUGIN_UPDATE_FAILED`
14
+ and rolled back, reporting the user's newer plugin as drift. The skills plugin
15
+ target was stale for the same reason (`1.26.0`, published `1.26.1`), silently
16
+ omitting it from prescriptions.
17
+
18
+ Both pins now track the released tuple, and a new parity guard compares the
19
+ declared pin against the pipeline revision the environment resolves — the same
20
+ guard the skills bundle already had, which is why the release canary caught its
21
+ stale pin and nothing caught this one. No existing test could: the suites set
22
+ `OPENPLANR_PIPELINE_ROOT` to a source checkout, which bypasses the node_modules
23
+ resolution the pin governs.
24
+
3
25
  ## 1.25.0
4
26
 
5
27
  ### Minor Changes
@@ -8,7 +8,7 @@ export declare const OPENPLANR_CLAUDE_MARKETPLACE_SOURCE = "openplanr/marketplac
8
8
  * were current. Bumping it with each skills release is the interim contract; deriving it
9
9
  * from the published manifest instead is tracked separately.
10
10
  */
11
- export declare const OPENPLANR_SKILLS_VERSION = "1.26.0";
11
+ export declare const OPENPLANR_SKILLS_VERSION = "1.26.1";
12
12
  export type ClaudePluginOperationKind = 'add-marketplace' | 'refresh-marketplace' | 'install' | 'update' | 'enable';
13
13
  export interface ClaudePluginOperation {
14
14
  runtime: 'claude-code';
@@ -11,7 +11,7 @@ export const OPENPLANR_CLAUDE_MARKETPLACE_SOURCE = 'openplanr/marketplace';
11
11
  * were current. Bumping it with each skills release is the interim contract; deriving it
12
12
  * from the published manifest instead is tracked separately.
13
13
  */
14
- export const OPENPLANR_SKILLS_VERSION = '1.26.0';
14
+ export const OPENPLANR_SKILLS_VERSION = '1.26.1';
15
15
  /**
16
16
  * `OPENPLANR_CLAUDE_BIN` is a test seam of the same shape as `upgrade-service.ts`'s
17
17
  * `OPENPLANR_NPM_BIN`: a path to a Node script standing in for the `claude` binary, so a
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openplanr",
3
- "version": "1.25.0",
3
+ "version": "1.25.1",
4
4
  "description": "AI-powered planning CLI — backlog, sprints, task templates, estimation, GitHub and Linear sync, and AI agent rules for Cursor, Claude Code, and Codex",
5
5
  "type": "module",
6
6
  "main": "./dist/cli/index.js",
@@ -94,7 +94,7 @@
94
94
  "zod": "^4.3.6"
95
95
  },
96
96
  "optionalDependencies": {
97
- "planr-pipeline": "0.40.0"
97
+ "planr-pipeline": "0.41.0"
98
98
  },
99
99
  "devDependencies": {
100
100
  "@biomejs/biome": "^2.4.9",