@remixhq/claude-plugin 0.1.22 → 0.1.24
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/.claude-plugin/plugin.json +1 -1
- package/agents/remix-collab.md +1 -1
- package/dist/hook-post-collab.cjs +5 -5
- package/dist/hook-post-collab.cjs.map +1 -1
- package/dist/hook-pre-git.cjs +2 -2
- package/dist/hook-pre-git.cjs.map +1 -1
- package/dist/hook-stop-collab.cjs +536 -86
- package/dist/hook-stop-collab.cjs.map +1 -1
- package/dist/hook-user-prompt.cjs +1047 -514
- package/dist/hook-user-prompt.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.cjs +508 -519
- package/dist/mcp-server.cjs.map +1 -1
- package/package.json +3 -3
- package/skills/safe-collab-workflow/SKILL.md +3 -3
- package/skills/submit-change-step/SKILL.md +6 -5
- package/skills/sync-and-reconcile/SKILL.md +1 -1
package/agents/remix-collab.md
CHANGED
|
@@ -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 (`
|
|
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.
|
|
864
|
+
version: "0.1.24",
|
|
865
865
|
description: "Claude Code plugin for Remix collaboration workflows",
|
|
866
866
|
homepage: "https://github.com/RemixDotOne/remix-claude-plugin",
|
|
867
867
|
license: "MIT",
|
|
@@ -899,8 +899,8 @@ var package_default = {
|
|
|
899
899
|
prepack: "npm run build"
|
|
900
900
|
},
|
|
901
901
|
dependencies: {
|
|
902
|
-
"@remixhq/core": "^0.1.
|
|
903
|
-
"@remixhq/mcp": "^0.1.
|
|
902
|
+
"@remixhq/core": "^0.1.19",
|
|
903
|
+
"@remixhq/mcp": "^0.1.19"
|
|
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-
|
|
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-
|
|
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);
|