@remixhq/claude-plugin 0.1.24 → 0.1.26
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/dist/hook-post-collab.cjs +3 -3
- package/dist/hook-post-collab.cjs.map +1 -1
- package/dist/hook-stop-collab.cjs +169 -142
- package/dist/hook-stop-collab.cjs.map +1 -1
- package/dist/hook-user-prompt.cjs +192 -190
- 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 +57 -20
- package/dist/mcp-server.cjs.map +1 -1
- package/package.json +3 -3
- package/skills/submit-change-step/SKILL.md +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remixhq/claude-plugin",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.26",
|
|
4
4
|
"description": "Claude Code plugin for Remix collaboration workflows",
|
|
5
5
|
"homepage": "https://github.com/RemixDotOne/remix-claude-plugin",
|
|
6
6
|
"license": "MIT",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"prepack": "npm run build"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@remixhq/core": "^0.1.
|
|
42
|
-
"@remixhq/mcp": "^0.1.
|
|
41
|
+
"@remixhq/core": "^0.1.21",
|
|
42
|
+
"@remixhq/mcp": "^0.1.21"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/node": "^25.4.0",
|
|
@@ -55,7 +55,7 @@ Use the live worktree as the source of truth for recorded work. If the repo is n
|
|
|
55
55
|
|
|
56
56
|
## Branch recovery
|
|
57
57
|
|
|
58
|
-
If status shows the current branch is unbound, **the next `UserPromptSubmit` hook will spawn `remix collab init` for you, detached, in the background.** Continue the requested work. The current turn lands in the deferred-turn queue and replays automatically once init completes; if init fails, the next prompt's context will explain it in plain language
|
|
58
|
+
If status shows the current branch is unbound, **the next `UserPromptSubmit` hook will spawn `remix collab init` for you, detached, in the background.** Continue the requested work. The current turn lands in the deferred-turn queue and replays automatically once init completes; if init fails, the next prompt's context will explain it in plain language.
|
|
59
59
|
|
|
60
60
|
You should not call `remix_collab_init` yourself for this case unless the user explicitly asks for an immediate, synchronous result. Calling it eagerly races the hook and produces no observable benefit.
|
|
61
61
|
|