@remixhq/claude-plugin 0.1.26 → 0.1.28
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 +14 -5
- package/dist/hook-post-collab.cjs.map +1 -1
- package/dist/hook-stop-collab.cjs +1142 -4403
- package/dist/hook-stop-collab.cjs.map +1 -1
- package/dist/hook-user-prompt.cjs +1142 -4403
- package/dist/hook-user-prompt.cjs.map +1 -1
- package/dist/index.js +5 -3
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.cjs +15313 -34600
- package/dist/mcp-server.cjs.map +1 -1
- package/package.json +5 -3
- package/skills/runtime-env-secrets/SKILL.md +34 -0
- package/skills/runtime-targets-preview/SKILL.md +36 -0
- package/skills/sandbox-commands/SKILL.md +34 -0
|
@@ -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.28",
|
|
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,10 @@ 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.23",
|
|
903
|
+
"@remixhq/mcp": "^0.1.23",
|
|
904
|
+
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
905
|
+
zod: "^3.25.76"
|
|
904
906
|
},
|
|
905
907
|
devDependencies: {
|
|
906
908
|
"@types/node": "^25.4.0",
|
|
@@ -7778,7 +7780,7 @@ async function getCurrentBranch(cwd) {
|
|
|
7778
7780
|
}
|
|
7779
7781
|
}
|
|
7780
7782
|
|
|
7781
|
-
// node_modules/@remixhq/core/dist/chunk-
|
|
7783
|
+
// node_modules/@remixhq/core/dist/chunk-P4XIICU3.js
|
|
7782
7784
|
var import_promises14 = __toESM(require("fs/promises"), 1);
|
|
7783
7785
|
var import_path = __toESM(require("path"), 1);
|
|
7784
7786
|
var import_promises15 = __toESM(require("fs/promises"), 1);
|
|
@@ -7812,6 +7814,13 @@ function normalizeProjectId(value) {
|
|
|
7812
7814
|
const normalized = String(value ?? "").trim();
|
|
7813
7815
|
return normalized || null;
|
|
7814
7816
|
}
|
|
7817
|
+
async function readCurrentBranchOrNull(repoRoot) {
|
|
7818
|
+
try {
|
|
7819
|
+
return normalizeBranchName(await getCurrentBranch(repoRoot));
|
|
7820
|
+
} catch {
|
|
7821
|
+
return null;
|
|
7822
|
+
}
|
|
7823
|
+
}
|
|
7815
7824
|
function normalizeBranchBinding(value) {
|
|
7816
7825
|
if (!value?.currentAppId || !value?.upstreamAppId) return null;
|
|
7817
7826
|
return {
|
|
@@ -7858,7 +7867,7 @@ async function readCollabBindingState(repoRoot, options) {
|
|
|
7858
7867
|
const raw = await import_promises14.default.readFile(filePath, "utf8");
|
|
7859
7868
|
const parsed = JSON.parse(raw);
|
|
7860
7869
|
if (!parsed || typeof parsed !== "object") return null;
|
|
7861
|
-
const currentBranch =
|
|
7870
|
+
const currentBranch = await readCurrentBranchOrNull(repoRoot);
|
|
7862
7871
|
if (parsed.schemaVersion === 1) {
|
|
7863
7872
|
if (!parsed.currentAppId || !parsed.upstreamAppId) return null;
|
|
7864
7873
|
const projectId = normalizeProjectId(parsed.projectId);
|