@remixhq/claude-plugin 0.1.21 → 0.1.23

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "remix",
3
3
  "description": "Remix collaboration workflows for Claude Code",
4
- "version": "0.1.21",
4
+ "version": "0.1.23",
5
5
  "author": {
6
6
  "name": "Remix"
7
7
  },
@@ -17,7 +17,7 @@ Branch model:
17
17
 
18
18
  Source-blind recording rule:
19
19
 
20
- Any local content change since the last recorded turn — whether you typed it, the user typed it, a `git commit`, `git pull`, `git merge`, `git rebase`, or `git reset` produced it, or an IDE saved it — is recorded by exactly one completed-turn hook recording. Do not pick a different command (`re-anchor`, `sync`, `reconcile`) based on what produced the change. Those commands are only correct when `remix_collab_status.recommendedAction` explicitly names them. `re-anchor` in particular is reserved for the narrow case where no local Remix baseline exists yet for this lane (status reports `re_anchor`); it is not a recovery for "the local content changed."
20
+ Any local content change since the last recorded turn — whether you typed it, the user typed it, a `git commit`, `git pull`, `git merge`, `git rebase`, or `git reset` produced it, or an IDE saved it — is recorded by exactly one completed-turn hook recording. Do not pick a different command (`sync` or `reconcile`) based on what produced the change. Status should route missing revision baselines to `init`, server-only changes to `sync`, and two-sided changes to `reconcile`.
21
21
 
22
22
  Operating rules:
23
23
 
@@ -861,7 +861,7 @@ async function markPendingTurnConsultedMemory(sessionId) {
861
861
  // package.json
862
862
  var package_default = {
863
863
  name: "@remixhq/claude-plugin",
864
- version: "0.1.21",
864
+ version: "0.1.23",
865
865
  description: "Claude Code plugin for Remix collaboration workflows",
866
866
  homepage: "https://github.com/RemixDotOne/remix-claude-plugin",
867
867
  license: "MIT",
@@ -895,12 +895,12 @@ var package_default = {
895
895
  postbuild: `node -e "const fs=require('node:fs'); for (const p of ['dist/mcp-server.cjs','dist/hook-pre-git.cjs','dist/hook-user-prompt.cjs','dist/hook-post-collab.cjs','dist/hook-stop-collab.cjs']) fs.chmodSync(p, 0o755);"`,
896
896
  dev: "tsx src/mcp-server.ts",
897
897
  typecheck: "tsc -p tsconfig.json --noEmit",
898
- test: "node --import tsx --test src/**/*.test.ts",
898
+ test: "node --import tsx --test 'src/**/*.test.ts'",
899
899
  prepack: "npm run build"
900
900
  },
901
901
  dependencies: {
902
- "@remixhq/core": "^0.1.15",
903
- "@remixhq/mcp": "^0.1.16"
902
+ "@remixhq/core": "^0.1.18",
903
+ "@remixhq/mcp": "^0.1.18"
904
904
  },
905
905
  devDependencies: {
906
906
  "@types/node": "^25.4.0",
@@ -7764,7 +7764,7 @@ var {
7764
7764
  getCancelSignal: getCancelSignal2
7765
7765
  } = getIpcExport();
7766
7766
 
7767
- // node_modules/@remixhq/core/dist/chunk-WT6VRLXU.js
7767
+ // node_modules/@remixhq/core/dist/chunk-S4ECO35X.js
7768
7768
  async function runGit(args, cwd) {
7769
7769
  const res = await execa("git", args, { cwd, stderr: "ignore" });
7770
7770
  return String(res.stdout || "").trim();
@@ -7778,7 +7778,7 @@ async function getCurrentBranch(cwd) {
7778
7778
  }
7779
7779
  }
7780
7780
 
7781
- // node_modules/@remixhq/core/dist/chunk-YCFLOHJV.js
7781
+ // node_modules/@remixhq/core/dist/chunk-DBVN42RF.js
7782
7782
  var import_promises14 = __toESM(require("fs/promises"), 1);
7783
7783
  var import_path = __toESM(require("path"), 1);
7784
7784
  var import_promises15 = __toESM(require("fs/promises"), 1);