@remixhq/claude-plugin 0.1.25 → 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 +19 -4
- package/dist/hook-stop-collab.cjs.map +1 -1
- package/dist/hook-user-prompt.cjs +19 -4
- 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 +19 -4
- package/dist/mcp-server.cjs.map +1 -1
- package/package.json +3 -3
|
@@ -10645,7 +10645,7 @@ async function createPendingTurnState(params) {
|
|
|
10645
10645
|
// package.json
|
|
10646
10646
|
var package_default = {
|
|
10647
10647
|
name: "@remixhq/claude-plugin",
|
|
10648
|
-
version: "0.1.
|
|
10648
|
+
version: "0.1.26",
|
|
10649
10649
|
description: "Claude Code plugin for Remix collaboration workflows",
|
|
10650
10650
|
homepage: "https://github.com/RemixDotOne/remix-claude-plugin",
|
|
10651
10651
|
license: "MIT",
|
|
@@ -10683,8 +10683,8 @@ var package_default = {
|
|
|
10683
10683
|
prepack: "npm run build"
|
|
10684
10684
|
},
|
|
10685
10685
|
dependencies: {
|
|
10686
|
-
"@remixhq/core": "^0.1.
|
|
10687
|
-
"@remixhq/mcp": "^0.1.
|
|
10686
|
+
"@remixhq/core": "^0.1.21",
|
|
10687
|
+
"@remixhq/mcp": "^0.1.21"
|
|
10688
10688
|
},
|
|
10689
10689
|
devDependencies: {
|
|
10690
10690
|
"@types/node": "^25.4.0",
|
|
@@ -10951,7 +10951,7 @@ function mergeOutcomeIntoMarker(existing, outcome) {
|
|
|
10951
10951
|
return existing;
|
|
10952
10952
|
}
|
|
10953
10953
|
|
|
10954
|
-
// node_modules/@remixhq/core/dist/chunk-
|
|
10954
|
+
// node_modules/@remixhq/core/dist/chunk-YENZA6QR.js
|
|
10955
10955
|
async function readJsonSafe(res) {
|
|
10956
10956
|
const ct = res.headers.get("content-type") ?? "";
|
|
10957
10957
|
if (!ct.toLowerCase().includes("application/json")) return null;
|
|
@@ -11232,6 +11232,21 @@ function createApiClient(config, opts) {
|
|
|
11232
11232
|
const suffix = qs.toString() ? `?${qs.toString()}` : "";
|
|
11233
11233
|
return request(`/v1/merge-requests${suffix}`, { method: "GET" });
|
|
11234
11234
|
},
|
|
11235
|
+
listMergeRequestInbox: (params) => {
|
|
11236
|
+
const qs = new URLSearchParams();
|
|
11237
|
+
if (Array.isArray(params?.status)) {
|
|
11238
|
+
for (const status of params.status) qs.append("status", status);
|
|
11239
|
+
} else if (typeof params?.status === "string") {
|
|
11240
|
+
qs.set("status", params.status);
|
|
11241
|
+
}
|
|
11242
|
+
if (params?.kind) qs.set("kind", params.kind);
|
|
11243
|
+
if (typeof params?.limit === "number") qs.set("limit", String(params.limit));
|
|
11244
|
+
if (typeof params?.offset === "number") qs.set("offset", String(params.offset));
|
|
11245
|
+
if (typeof params?.includeReview === "boolean") qs.set("includeReview", String(params.includeReview));
|
|
11246
|
+
if (typeof params?.includeDiffs === "boolean") qs.set("includeDiffs", String(params.includeDiffs));
|
|
11247
|
+
const suffix = qs.toString() ? `?${qs.toString()}` : "";
|
|
11248
|
+
return request(`/v1/merge-requests/inbox${suffix}`, { method: "GET" });
|
|
11249
|
+
},
|
|
11235
11250
|
openMergeRequest: (sourceAppId) => request("/v1/merge-requests", { method: "POST", body: JSON.stringify({ sourceAppId }) }),
|
|
11236
11251
|
getMergeRequestReview: (mrId) => request(`/v1/merge-requests/${encodeURIComponent(mrId)}/review`, { method: "GET" }),
|
|
11237
11252
|
updateMergeRequest: (mrId, payload) => request(`/v1/merge-requests/${encodeURIComponent(mrId)}`, { method: "PATCH", body: JSON.stringify(payload) }),
|