@remixhq/claude-plugin 0.1.27 → 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.
@@ -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.27",
10699
+ version: "0.1.28",
10700
10700
  description: "Claude Code plugin for Remix collaboration workflows",
10701
10701
  homepage: "https://github.com/RemixDotOne/remix-claude-plugin",
10702
10702
  license: "MIT",
@@ -10734,8 +10734,8 @@ var package_default = {
10734
10734
  prepack: "npm run build"
10735
10735
  },
10736
10736
  dependencies: {
10737
- "@remixhq/core": "^0.1.22",
10738
- "@remixhq/mcp": "^0.1.22",
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-DZRFUAOL.js
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-LGOQVGBB.js
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
- var defaultConfigRaw = {
32358
- apiUrl: DEFAULT_API_URL,
32359
- supabaseUrl: DEFAULT_SUPABASE_URL,
32360
- supabaseAnonKey: DEFAULT_SUPABASE_ANON_KEY
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);