@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
|
@@ -10591,7 +10591,7 @@ async function clearPendingTurnState(sessionId) {
|
|
|
10591
10591
|
// package.json
|
|
10592
10592
|
var package_default = {
|
|
10593
10593
|
name: "@remixhq/claude-plugin",
|
|
10594
|
-
version: "0.1.
|
|
10594
|
+
version: "0.1.26",
|
|
10595
10595
|
description: "Claude Code plugin for Remix collaboration workflows",
|
|
10596
10596
|
homepage: "https://github.com/RemixDotOne/remix-claude-plugin",
|
|
10597
10597
|
license: "MIT",
|
|
@@ -10629,8 +10629,8 @@ var package_default = {
|
|
|
10629
10629
|
prepack: "npm run build"
|
|
10630
10630
|
},
|
|
10631
10631
|
dependencies: {
|
|
10632
|
-
"@remixhq/core": "^0.1.
|
|
10633
|
-
"@remixhq/mcp": "^0.1.
|
|
10632
|
+
"@remixhq/core": "^0.1.21",
|
|
10633
|
+
"@remixhq/mcp": "^0.1.21"
|
|
10634
10634
|
},
|
|
10635
10635
|
devDependencies: {
|
|
10636
10636
|
"@types/node": "^25.4.0",
|
|
@@ -11063,7 +11063,7 @@ var import_promises23 = __toESM(require("fs/promises"), 1);
|
|
|
11063
11063
|
var import_node_path12 = __toESM(require("path"), 1);
|
|
11064
11064
|
var import_node_crypto5 = require("crypto");
|
|
11065
11065
|
|
|
11066
|
-
// node_modules/@remixhq/core/dist/chunk-
|
|
11066
|
+
// node_modules/@remixhq/core/dist/chunk-YENZA6QR.js
|
|
11067
11067
|
async function readJsonSafe(res) {
|
|
11068
11068
|
const ct = res.headers.get("content-type") ?? "";
|
|
11069
11069
|
if (!ct.toLowerCase().includes("application/json")) return null;
|
|
@@ -11344,6 +11344,21 @@ function createApiClient(config, opts) {
|
|
|
11344
11344
|
const suffix = qs.toString() ? `?${qs.toString()}` : "";
|
|
11345
11345
|
return request(`/v1/merge-requests${suffix}`, { method: "GET" });
|
|
11346
11346
|
},
|
|
11347
|
+
listMergeRequestInbox: (params) => {
|
|
11348
|
+
const qs = new URLSearchParams();
|
|
11349
|
+
if (Array.isArray(params?.status)) {
|
|
11350
|
+
for (const status of params.status) qs.append("status", status);
|
|
11351
|
+
} else if (typeof params?.status === "string") {
|
|
11352
|
+
qs.set("status", params.status);
|
|
11353
|
+
}
|
|
11354
|
+
if (params?.kind) qs.set("kind", params.kind);
|
|
11355
|
+
if (typeof params?.limit === "number") qs.set("limit", String(params.limit));
|
|
11356
|
+
if (typeof params?.offset === "number") qs.set("offset", String(params.offset));
|
|
11357
|
+
if (typeof params?.includeReview === "boolean") qs.set("includeReview", String(params.includeReview));
|
|
11358
|
+
if (typeof params?.includeDiffs === "boolean") qs.set("includeDiffs", String(params.includeDiffs));
|
|
11359
|
+
const suffix = qs.toString() ? `?${qs.toString()}` : "";
|
|
11360
|
+
return request(`/v1/merge-requests/inbox${suffix}`, { method: "GET" });
|
|
11361
|
+
},
|
|
11347
11362
|
openMergeRequest: (sourceAppId) => request("/v1/merge-requests", { method: "POST", body: JSON.stringify({ sourceAppId }) }),
|
|
11348
11363
|
getMergeRequestReview: (mrId) => request(`/v1/merge-requests/${encodeURIComponent(mrId)}/review`, { method: "GET" }),
|
|
11349
11364
|
updateMergeRequest: (mrId, payload) => request(`/v1/merge-requests/${encodeURIComponent(mrId)}`, { method: "PATCH", body: JSON.stringify(payload) }),
|