@remixhq/claude-plugin 0.1.27 → 0.1.29
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 +4 -4
- package/dist/hook-post-collab.cjs.map +1 -1
- package/dist/hook-stop-collab.cjs +15 -11
- package/dist/hook-stop-collab.cjs.map +1 -1
- package/dist/hook-user-prompt.cjs +15 -11
- package/dist/hook-user-prompt.cjs.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/mcp-server.cjs +59 -14
- package/dist/mcp-server.cjs.map +1 -1
- package/package.json +4 -4
|
@@ -10696,7 +10696,7 @@ async function createPendingTurnState(params) {
|
|
|
10696
10696
|
// package.json
|
|
10697
10697
|
var package_default = {
|
|
10698
10698
|
name: "@remixhq/claude-plugin",
|
|
10699
|
-
version: "0.1.
|
|
10699
|
+
version: "0.1.29",
|
|
10700
10700
|
description: "Claude Code plugin for Remix collaboration workflows",
|
|
10701
10701
|
homepage: "https://github.com/RemixDotOne/remix-claude-plugin",
|
|
10702
10702
|
license: "MIT",
|
|
@@ -10730,12 +10730,12 @@ var package_default = {
|
|
|
10730
10730
|
postbuild: `node -e "const fs=require('node:fs'); for (const p of ['dist/mcp-server.cjs','dist/hook-pre-git.cjs','dist/hook-user-prompt.cjs','dist/hook-post-collab.cjs','dist/hook-stop-collab.cjs']) fs.chmodSync(p, 0o755);"`,
|
|
10731
10731
|
dev: "tsx src/mcp-server.ts",
|
|
10732
10732
|
typecheck: "tsc -p tsconfig.json --noEmit",
|
|
10733
|
-
test: "node --import tsx --test
|
|
10733
|
+
test: "node --import tsx --test src/auto-fix-dispatcher.test.ts src/deferred-turn-drainer.test.ts src/deferred-turn-queue.test.ts src/finalize-failure-marker.test.ts src/transient-failure.test.ts src/usage/claudeCodeSession.test.ts src/usage/claudeCodeUsageHarvester.test.ts src/usage/integration.test.ts src/usage/sliceTranscriptIntoTurns.test.ts",
|
|
10734
10734
|
prepack: "npm run build"
|
|
10735
10735
|
},
|
|
10736
10736
|
dependencies: {
|
|
10737
|
-
"@remixhq/core": "^0.1.
|
|
10738
|
-
"@remixhq/mcp": "^0.1.
|
|
10737
|
+
"@remixhq/core": "^0.1.23",
|
|
10738
|
+
"@remixhq/mcp": "^0.1.23",
|
|
10739
10739
|
"@modelcontextprotocol/sdk": "^1.27.1",
|
|
10740
10740
|
zod: "^3.25.76"
|
|
10741
10741
|
},
|
|
@@ -11004,7 +11004,7 @@ function mergeOutcomeIntoMarker(existing, outcome) {
|
|
|
11004
11004
|
return existing;
|
|
11005
11005
|
}
|
|
11006
11006
|
|
|
11007
|
-
// node_modules/@remixhq/core/dist/chunk-
|
|
11007
|
+
// node_modules/@remixhq/core/dist/chunk-BNY4BVH6.js
|
|
11008
11008
|
async function readJsonSafe(res) {
|
|
11009
11009
|
const ct = res.headers.get("content-type") ?? "";
|
|
11010
11010
|
if (!ct.toLowerCase().includes("application/json")) return null;
|
|
@@ -11292,6 +11292,7 @@ function createApiClient(config, opts) {
|
|
|
11292
11292
|
return request(`/v1/apps${suffix}`, { method: "GET" });
|
|
11293
11293
|
},
|
|
11294
11294
|
getApp: (appId) => request(`/v1/apps/${encodeURIComponent(appId)}`, { method: "GET" }),
|
|
11295
|
+
openApp: (appId, payload) => request(`/v1/apps/${encodeURIComponent(appId)}/open`, { method: "POST", body: JSON.stringify(payload ?? {}) }),
|
|
11295
11296
|
getAppContext: (appId) => request(`/v1/apps/${encodeURIComponent(appId)}/context`, { method: "GET" }),
|
|
11296
11297
|
getAppOverview: (appId) => request(`/v1/apps/${encodeURIComponent(appId)}/overview`, { method: "GET" }),
|
|
11297
11298
|
listAppTimeline: (appId, params) => {
|
|
@@ -32349,16 +32350,19 @@ function createSupabaseAuthHelpers(config) {
|
|
|
32349
32350
|
};
|
|
32350
32351
|
}
|
|
32351
32352
|
|
|
32352
|
-
// node_modules/@remixhq/core/dist/chunk-
|
|
32353
|
+
// node_modules/@remixhq/core/dist/chunk-62JBEMJH.js
|
|
32353
32354
|
var import_zod2 = require("zod");
|
|
32354
32355
|
var DEFAULT_API_URL = "https://api.remix.one";
|
|
32355
32356
|
var DEFAULT_SUPABASE_URL = "https://iheivdccexqigeoiekvc.supabase.co";
|
|
32356
32357
|
var DEFAULT_SUPABASE_ANON_KEY = "sb_publishable_YipyrVON-lwzW3ugjE3T1g_cE2do_JW";
|
|
32357
|
-
|
|
32358
|
-
|
|
32359
|
-
|
|
32360
|
-
|
|
32361
|
-
|
|
32358
|
+
function createDefaultConfigRaw() {
|
|
32359
|
+
return {
|
|
32360
|
+
apiUrl: process.env.REMIX_API_URL ?? DEFAULT_API_URL,
|
|
32361
|
+
supabaseUrl: DEFAULT_SUPABASE_URL,
|
|
32362
|
+
supabaseAnonKey: DEFAULT_SUPABASE_ANON_KEY
|
|
32363
|
+
};
|
|
32364
|
+
}
|
|
32365
|
+
var defaultConfigRaw = createDefaultConfigRaw();
|
|
32362
32366
|
function isValidUrl(value) {
|
|
32363
32367
|
try {
|
|
32364
32368
|
new URL(value);
|