@remixhq/claude-plugin 0.1.20 → 0.1.21
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 +10 -10
- package/dist/hook-post-collab.cjs +2 -2
- package/dist/hook-post-collab.cjs.map +1 -1
- package/dist/hook-pre-git.cjs +6 -6
- package/dist/hook-pre-git.cjs.map +1 -1
- package/dist/hook-stop-collab.cjs +6 -6
- package/dist/hook-stop-collab.cjs.map +1 -1
- package/dist/hook-user-prompt.cjs +8 -8
- package/dist/hook-user-prompt.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.cjs +16 -347
- package/dist/mcp-server.cjs.map +1 -1
- package/package.json +2 -2
- package/skills/review-merge-request/SKILL.md +2 -2
- package/skills/safe-collab-workflow/SKILL.md +13 -15
- package/skills/submit-change-step/SKILL.md +25 -54
- package/skills/sync-and-reconcile/SKILL.md +2 -2
|
@@ -7824,7 +7824,7 @@ async function createPendingTurnState(params) {
|
|
|
7824
7824
|
// package.json
|
|
7825
7825
|
var package_default = {
|
|
7826
7826
|
name: "@remixhq/claude-plugin",
|
|
7827
|
-
version: "0.1.
|
|
7827
|
+
version: "0.1.21",
|
|
7828
7828
|
description: "Claude Code plugin for Remix collaboration workflows",
|
|
7829
7829
|
homepage: "https://github.com/RemixDotOne/remix-claude-plugin",
|
|
7830
7830
|
license: "MIT",
|
|
@@ -7863,7 +7863,7 @@ var package_default = {
|
|
|
7863
7863
|
},
|
|
7864
7864
|
dependencies: {
|
|
7865
7865
|
"@remixhq/core": "^0.1.15",
|
|
7866
|
-
"@remixhq/mcp": "^0.1.
|
|
7866
|
+
"@remixhq/mcp": "^0.1.16"
|
|
7867
7867
|
},
|
|
7868
7868
|
devDependencies: {
|
|
7869
7869
|
"@types/node": "^25.4.0",
|
|
@@ -8010,18 +8010,18 @@ async function findBoundRepo(startPath) {
|
|
|
8010
8010
|
function buildGlobalFinalRecordingReminder() {
|
|
8011
8011
|
return [
|
|
8012
8012
|
"Remix recording rule:",
|
|
8013
|
-
"
|
|
8014
|
-
"
|
|
8013
|
+
"Completed turns in Remix-bound repos are recorded automatically by the Remix plugin hooks.",
|
|
8014
|
+
"Do not call a finalize MCP tool; no such MCP tool is exposed. If no Remix-bound repo is involved in this turn, ignore this reminder."
|
|
8015
8015
|
].join("\n");
|
|
8016
8016
|
}
|
|
8017
8017
|
function buildRuntimeStatusOverride() {
|
|
8018
8018
|
return [
|
|
8019
8019
|
"[Remix runtime status]:",
|
|
8020
8020
|
"The Remix plugin's UserPromptSubmit hook fired for this turn, which proves the Remix hook system is active in this Claude Code session. The companion Stop hook will record this turn automatically when the assistant's response completes, including the prompt, the final response, and per-turn token usage.",
|
|
8021
|
-
"
|
|
8022
|
-
"- Do NOT call
|
|
8021
|
+
"Automatic recording for this turn:",
|
|
8022
|
+
"- Do NOT call a finalize MCP tool. The MCP surface no longer exposes one; the runtime is recording this turn.",
|
|
8023
8023
|
"- Do NOT call `remix_collab_drain_finalize_queue` as a precondition for any other tool. The runtime drains the queue automatically in the background, and `remix_collab_request_merge` / `remix_collab_reconcile_apply` drain internally before they run.",
|
|
8024
|
-
"
|
|
8024
|
+
"Use `remix_collab_drain_finalize_queue` only for explicit recovery flows, such as status reporting `await_finalize` before a merge-related operation."
|
|
8025
8025
|
].join("\n");
|
|
8026
8026
|
}
|
|
8027
8027
|
function buildBranchUnboundAdvisory(params) {
|
|
@@ -8034,7 +8034,7 @@ function buildBranchUnboundAdvisory(params) {
|
|
|
8034
8034
|
`Call \`remix_collab_init\` now. No arguments are required; the synchronous init creates the per-branch binding for ${branchLabel} (typically ~10s on the default branch, ~25s on a feature branch) and returns when the local baseline is on disk. After init returns, continue with whatever the user asked. Do this proactively \u2014 do NOT ask the user for permission first; the user opting Remix into this repo on other branches is the standing authorization.`,
|
|
8035
8035
|
"Until init has been called this turn:",
|
|
8036
8036
|
"- The Stop hook will NOT record this turn (the per-branch resolver returns null on this branch).",
|
|
8037
|
-
"-
|
|
8037
|
+
"- Remix mutation tools that require a branch binding, such as request-merge, will fail with a binding error.",
|
|
8038
8038
|
"Skip init ONLY if the user has explicitly told you in this conversation that they do NOT want Remix on this branch.",
|
|
8039
8039
|
`Repo: ${params.repoRoot}`
|
|
8040
8040
|
].join("\n");
|