@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.
@@ -10642,7 +10642,7 @@ async function clearPendingTurnState(sessionId) {
10642
10642
  // package.json
10643
10643
  var package_default = {
10644
10644
  name: "@remixhq/claude-plugin",
10645
- version: "0.1.27",
10645
+ version: "0.1.29",
10646
10646
  description: "Claude Code plugin for Remix collaboration workflows",
10647
10647
  homepage: "https://github.com/RemixDotOne/remix-claude-plugin",
10648
10648
  license: "MIT",
@@ -10676,12 +10676,12 @@ var package_default = {
10676
10676
  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);"`,
10677
10677
  dev: "tsx src/mcp-server.ts",
10678
10678
  typecheck: "tsc -p tsconfig.json --noEmit",
10679
- test: "node --import tsx --test 'src/**/*.test.ts'",
10679
+ 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",
10680
10680
  prepack: "npm run build"
10681
10681
  },
10682
10682
  dependencies: {
10683
- "@remixhq/core": "^0.1.22",
10684
- "@remixhq/mcp": "^0.1.22",
10683
+ "@remixhq/core": "^0.1.23",
10684
+ "@remixhq/mcp": "^0.1.23",
10685
10685
  "@modelcontextprotocol/sdk": "^1.27.1",
10686
10686
  zod: "^3.25.76"
10687
10687
  },
@@ -11116,7 +11116,7 @@ var import_promises23 = __toESM(require("fs/promises"), 1);
11116
11116
  var import_node_path12 = __toESM(require("path"), 1);
11117
11117
  var import_node_crypto5 = require("crypto");
11118
11118
 
11119
- // node_modules/@remixhq/core/dist/chunk-DZRFUAOL.js
11119
+ // node_modules/@remixhq/core/dist/chunk-BNY4BVH6.js
11120
11120
  async function readJsonSafe(res) {
11121
11121
  const ct = res.headers.get("content-type") ?? "";
11122
11122
  if (!ct.toLowerCase().includes("application/json")) return null;
@@ -11404,6 +11404,7 @@ function createApiClient(config, opts) {
11404
11404
  return request(`/v1/apps${suffix}`, { method: "GET" });
11405
11405
  },
11406
11406
  getApp: (appId) => request(`/v1/apps/${encodeURIComponent(appId)}`, { method: "GET" }),
11407
+ openApp: (appId, payload) => request(`/v1/apps/${encodeURIComponent(appId)}/open`, { method: "POST", body: JSON.stringify(payload ?? {}) }),
11407
11408
  getAppContext: (appId) => request(`/v1/apps/${encodeURIComponent(appId)}/context`, { method: "GET" }),
11408
11409
  getAppOverview: (appId) => request(`/v1/apps/${encodeURIComponent(appId)}/overview`, { method: "GET" }),
11409
11410
  listAppTimeline: (appId, params) => {
@@ -32461,16 +32462,19 @@ function createSupabaseAuthHelpers(config) {
32461
32462
  };
32462
32463
  }
32463
32464
 
32464
- // node_modules/@remixhq/core/dist/chunk-LGOQVGBB.js
32465
+ // node_modules/@remixhq/core/dist/chunk-62JBEMJH.js
32465
32466
  var import_zod2 = require("zod");
32466
32467
  var DEFAULT_API_URL = "https://api.remix.one";
32467
32468
  var DEFAULT_SUPABASE_URL = "https://iheivdccexqigeoiekvc.supabase.co";
32468
32469
  var DEFAULT_SUPABASE_ANON_KEY = "sb_publishable_YipyrVON-lwzW3ugjE3T1g_cE2do_JW";
32469
- var defaultConfigRaw = {
32470
- apiUrl: DEFAULT_API_URL,
32471
- supabaseUrl: DEFAULT_SUPABASE_URL,
32472
- supabaseAnonKey: DEFAULT_SUPABASE_ANON_KEY
32473
- };
32470
+ function createDefaultConfigRaw() {
32471
+ return {
32472
+ apiUrl: process.env.REMIX_API_URL ?? DEFAULT_API_URL,
32473
+ supabaseUrl: DEFAULT_SUPABASE_URL,
32474
+ supabaseAnonKey: DEFAULT_SUPABASE_ANON_KEY
32475
+ };
32476
+ }
32477
+ var defaultConfigRaw = createDefaultConfigRaw();
32474
32478
  function isValidUrl(value) {
32475
32479
  try {
32476
32480
  new URL(value);