@makerbi/openclaude 0.14.8 → 0.14.9

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.
Files changed (3) hide show
  1. package/dist/cli.mjs +66 -29
  2. package/dist/sdk.mjs +15 -15
  3. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -232303,7 +232303,7 @@ var init_metadata = __esm(() => {
232303
232303
  isClaudeAiAuth: isClaudeAISubscriber(),
232304
232304
  version: "99.0.0",
232305
232305
  versionBase: getVersionBase(),
232306
- buildTime: "2026-05-26T10:21:00.272Z",
232306
+ buildTime: "2026-05-26T10:36:27.285Z",
232307
232307
  deploymentEnvironment: env2.detectDeploymentEnvironment(),
232308
232308
  ...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
232309
232309
  githubEventName: process.env.GITHUB_EVENT_NAME,
@@ -366127,6 +366127,13 @@ function getGitHubReleaseAssetName(platform4) {
366127
366127
  function getCurlExecutable() {
366128
366128
  return process.platform === "win32" ? "curl.exe" : "curl";
366129
366129
  }
366130
+ function getNullOutputPath() {
366131
+ return process.platform === "win32" ? "NUL" : "/dev/null";
366132
+ }
366133
+ function parseReleaseVersionFromUrl(url3) {
366134
+ const match = url3.trim().match(/\/releases\/tag\/(v?\d+\.\d+\.\d+(?:-\S+)?)$/);
366135
+ return match ? normalizeReleaseVersion(match[1]) : null;
366136
+ }
366130
366137
  function shouldFallbackToCurl(error42) {
366131
366138
  const message = error42 instanceof Error ? error42.message : String(error42);
366132
366139
  if (axios_default.isAxiosError(error42)) {
@@ -366134,6 +366141,29 @@ function shouldFallbackToCurl(error42) {
366134
366141
  }
366135
366142
  return /EAI_AGAIN|ECONNRESET|ETIMEDOUT|ENOTFOUND|network|timeout/i.test(message);
366136
366143
  }
366144
+ async function getLatestVersionFromGitHubLatestRedirect() {
366145
+ const latestUrl = `${GITHUB_RELEASES_WEB_URL}/latest`;
366146
+ const { stdout, stderr, code, error: error42 } = await execFileNoThrowWithCwd(getCurlExecutable(), [
366147
+ "-L",
366148
+ "--silent",
366149
+ "--show-error",
366150
+ "--max-time",
366151
+ "30",
366152
+ "--output",
366153
+ getNullOutputPath(),
366154
+ "--write-out",
366155
+ "%{url_effective}",
366156
+ latestUrl
366157
+ ], {
366158
+ timeout: 35000,
366159
+ preserveOutputOnError: true
366160
+ });
366161
+ if (code !== 0) {
366162
+ logForDebugging(`GitHub latest redirect fallback failed: ${error42 || stderr || `curl exited with code ${code}`}`, { level: "warn" });
366163
+ return null;
366164
+ }
366165
+ return parseReleaseVersionFromUrl(stdout);
366166
+ }
366137
366167
  async function fetchJsonWithCurl(url3, timeoutMs) {
366138
366168
  const { stdout, stderr, code, error: error42 } = await execFileNoThrowWithCwd(getCurlExecutable(), [
366139
366169
  "-L",
@@ -366235,6 +366265,13 @@ async function getLatestVersionFromGitHubReleases2(channel = "latest") {
366235
366265
  });
366236
366266
  return normalizeReleaseVersion(tagName.trim());
366237
366267
  } catch (error42) {
366268
+ if (channel === "latest") {
366269
+ const fallbackVersion = await getLatestVersionFromGitHubLatestRedirect();
366270
+ if (fallbackVersion) {
366271
+ logForDebugging(`Resolved latest GitHub release via redirect fallback: ${fallbackVersion}`, { level: "warn" });
366272
+ return fallbackVersion;
366273
+ }
366274
+ }
366238
366275
  const latencyMs = Date.now() - startTime;
366239
366276
  const errorMessage2 = error42 instanceof Error ? error42.message : String(error42);
366240
366277
  let httpStatus;
@@ -366491,7 +366528,7 @@ async function downloadVersion(version2, stagingPath) {
366491
366528
  await downloadVersionFromGitHubRelease(version2, stagingPath);
366492
366529
  return "binary";
366493
366530
  }
366494
- var GITHUB_RELEASES_API_URL = "https://api.github.com/repos/AndersonBY/openclaude/releases", GITHUB_RELEASE_DOWNLOAD_BASE_URL = "https://github.com/AndersonBY/openclaude/releases/download", ARTIFACTORY_REGISTRY_URL, DEFAULT_STALL_TIMEOUT_MS = 60000, MAX_DOWNLOAD_RETRIES = 3, StallTimeoutError;
366531
+ var GITHUB_RELEASES_API_URL = "https://api.github.com/repos/AndersonBY/openclaude/releases", GITHUB_RELEASES_WEB_URL = "https://github.com/AndersonBY/openclaude/releases", GITHUB_RELEASE_DOWNLOAD_BASE_URL = "https://github.com/AndersonBY/openclaude/releases/download", ARTIFACTORY_REGISTRY_URL, DEFAULT_STALL_TIMEOUT_MS = 60000, MAX_DOWNLOAD_RETRIES = 3, StallTimeoutError;
366495
366532
  var init_download = __esm(() => {
366496
366533
  init_axios2();
366497
366534
  init_debug();
@@ -471762,7 +471799,7 @@ function getAnthropicEnvMetadata() {
471762
471799
  function getBuildAgeMinutes() {
471763
471800
  if (false)
471764
471801
  ;
471765
- const buildTime = new Date("2026-05-26T10:21:00.272Z").getTime();
471802
+ const buildTime = new Date("2026-05-26T10:36:27.285Z").getTime();
471766
471803
  if (isNaN(buildTime))
471767
471804
  return;
471768
471805
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -499901,7 +499938,7 @@ function buildPrimarySection() {
499901
499938
  }, undefined, false, undefined, this);
499902
499939
  return [{
499903
499940
  label: "Version",
499904
- value: "0.14.8"
499941
+ value: "0.14.9"
499905
499942
  }, {
499906
499943
  label: "Session name",
499907
499944
  value: nameValue
@@ -514796,7 +514833,7 @@ function getReleaseTagUrl(version2 = publicBuildVersion) {
514796
514833
  return `${OPENCLAUDE_RELEASES_URL}/tag/v${normalizePublicVersion(version2)}`;
514797
514834
  }
514798
514835
  function getPublicBuildVersion() {
514799
- return "0.14.8";
514836
+ return "0.14.9";
514800
514837
  }
514801
514838
  var import_semver9, OPENCLAUDE_RELEASES_URL = "https://github.com/AndersonBY/openclaude/releases", fallbackBuildVersion, publicBuildVersion;
514802
514839
  var init_version = __esm(() => {
@@ -571809,7 +571846,7 @@ var init_bridge_kick = __esm(() => {
571809
571846
  var call66 = async () => {
571810
571847
  return {
571811
571848
  type: "text",
571812
- value: `${"99.0.0"} (built ${"2026-05-26T10:21:00.272Z"})`
571849
+ value: `${"99.0.0"} (built ${"2026-05-26T10:36:27.285Z"})`
571813
571850
  };
571814
571851
  }, version2, version_default;
571815
571852
  var init_version2 = __esm(() => {
@@ -604267,7 +604304,7 @@ function printStartupScreen(modelOverride) {
604267
604304
  const sLen = ` ● ${sL} Ready — type /help to begin`.length;
604268
604305
  out.push(boxRow(sRow, W2, sLen, BORDER));
604269
604306
  out.push(`${ansiRgb(...BORDER)}╚${"═".repeat(W2 - 2)}╝${RESET2}`);
604270
- out.push(` ${DIM2}${ansiRgb(...DIMCOL)}openclaude ${RESET2}${ansiRgb(...ACCENT)}v${"0.14.8"}${RESET2}`);
604307
+ out.push(` ${DIM2}${ansiRgb(...DIMCOL)}openclaude ${RESET2}${ansiRgb(...ACCENT)}v${"0.14.9"}${RESET2}`);
604271
604308
  out.push("");
604272
604309
  process.stdout.write(out.join(`
604273
604310
  `) + `
@@ -655578,7 +655615,7 @@ function WelcomeV2() {
655578
655615
  dimColor: true,
655579
655616
  children: [
655580
655617
  "v",
655581
- "0.14.8",
655618
+ "0.14.9",
655582
655619
  " "
655583
655620
  ]
655584
655621
  }, undefined, true, undefined, this)
@@ -655778,7 +655815,7 @@ function WelcomeV2() {
655778
655815
  dimColor: true,
655779
655816
  children: [
655780
655817
  "v",
655781
- "0.14.8",
655818
+ "0.14.9",
655782
655819
  " "
655783
655820
  ]
655784
655821
  }, undefined, true, undefined, this)
@@ -656004,7 +656041,7 @@ function AppleTerminalWelcomeV2(t0) {
656004
656041
  dimColor: true,
656005
656042
  children: [
656006
656043
  "v",
656007
- "0.14.8",
656044
+ "0.14.9",
656008
656045
  " "
656009
656046
  ]
656010
656047
  }, undefined, true, undefined, this);
@@ -656258,7 +656295,7 @@ function AppleTerminalWelcomeV2(t0) {
656258
656295
  dimColor: true,
656259
656296
  children: [
656260
656297
  "v",
656261
- "0.14.8",
656298
+ "0.14.9",
656262
656299
  " "
656263
656300
  ]
656264
656301
  }, undefined, true, undefined, this);
@@ -673803,7 +673840,7 @@ __export(exports_update, {
673803
673840
  async function update() {
673804
673841
  if (getAPIProvider() !== "firstParty") {
673805
673842
  writeToStdout(source_default.yellow(`Auto-update is not available for third-party provider builds.
673806
- `) + `Current version: ${"0.14.8"}
673843
+ `) + `Current version: ${"0.14.9"}
673807
673844
 
673808
673845
  ` + `To update, reinstall from npm:
673809
673846
  ` + source_default.bold(` npm install -g ${"@makerbi/openclaude"}@latest`) + `
@@ -673814,7 +673851,7 @@ async function update() {
673814
673851
  await gracefulShutdown(0);
673815
673852
  }
673816
673853
  logEvent("tengu_update_check", {});
673817
- writeToStdout(`Current version: ${"0.14.8"}
673854
+ writeToStdout(`Current version: ${"0.14.9"}
673818
673855
  `);
673819
673856
  const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
673820
673857
  writeToStdout(`Checking for updates to ${channel} version...
@@ -673899,8 +673936,8 @@ async function update() {
673899
673936
  writeToStdout(`Claude is managed by Homebrew.
673900
673937
  `);
673901
673938
  const latest = await getLatestVersion(channel);
673902
- if (latest && !gte("0.14.8", latest)) {
673903
- writeToStdout(`Update available: ${"0.14.8"} → ${latest}
673939
+ if (latest && !gte("0.14.9", latest)) {
673940
+ writeToStdout(`Update available: ${"0.14.9"} → ${latest}
673904
673941
  `);
673905
673942
  writeToStdout(`
673906
673943
  `);
@@ -673916,8 +673953,8 @@ async function update() {
673916
673953
  writeToStdout(`Claude is managed by winget.
673917
673954
  `);
673918
673955
  const latest = await getLatestVersion(channel);
673919
- if (latest && !gte("0.14.8", latest)) {
673920
- writeToStdout(`Update available: ${"0.14.8"} → ${latest}
673956
+ if (latest && !gte("0.14.9", latest)) {
673957
+ writeToStdout(`Update available: ${"0.14.9"} → ${latest}
673921
673958
  `);
673922
673959
  writeToStdout(`
673923
673960
  `);
@@ -673933,8 +673970,8 @@ async function update() {
673933
673970
  writeToStdout(`Claude is managed by apk.
673934
673971
  `);
673935
673972
  const latest = await getLatestVersion(channel);
673936
- if (latest && !gte("0.14.8", latest)) {
673937
- writeToStdout(`Update available: ${"0.14.8"} → ${latest}
673973
+ if (latest && !gte("0.14.9", latest)) {
673974
+ writeToStdout(`Update available: ${"0.14.9"} → ${latest}
673938
673975
  `);
673939
673976
  writeToStdout(`
673940
673977
  `);
@@ -673999,11 +674036,11 @@ async function update() {
673999
674036
  `);
674000
674037
  await gracefulShutdown(1);
674001
674038
  }
674002
- if (result.latestVersion === "0.14.8") {
674003
- writeToStdout(source_default.green(`OpenClaude is up to date (${"0.14.8"})`) + `
674039
+ if (result.latestVersion === "0.14.9") {
674040
+ writeToStdout(source_default.green(`OpenClaude is up to date (${"0.14.9"})`) + `
674004
674041
  `);
674005
674042
  } else {
674006
- writeToStdout(source_default.green(`Successfully updated from ${"0.14.8"} to version ${result.latestVersion}`) + `
674043
+ writeToStdout(source_default.green(`Successfully updated from ${"0.14.9"} to version ${result.latestVersion}`) + `
674007
674044
  `);
674008
674045
  await regenerateCompletionCache();
674009
674046
  }
@@ -674063,12 +674100,12 @@ async function update() {
674063
674100
  `);
674064
674101
  await gracefulShutdown(1);
674065
674102
  }
674066
- if (latestVersion === "0.14.8") {
674067
- writeToStdout(source_default.green(`OpenClaude is up to date (${"0.14.8"})`) + `
674103
+ if (latestVersion === "0.14.9") {
674104
+ writeToStdout(source_default.green(`OpenClaude is up to date (${"0.14.9"})`) + `
674068
674105
  `);
674069
674106
  await gracefulShutdown(0);
674070
674107
  }
674071
- writeToStdout(`New version available: ${latestVersion} (current: ${"0.14.8"})
674108
+ writeToStdout(`New version available: ${latestVersion} (current: ${"0.14.9"})
674072
674109
  `);
674073
674110
  writeToStdout(`Installing update...
674074
674111
  `);
@@ -674113,7 +674150,7 @@ async function update() {
674113
674150
  logForDebugging(`update: Installation status: ${status2}`);
674114
674151
  switch (status2) {
674115
674152
  case "success":
674116
- writeToStdout(source_default.green(`Successfully updated from ${"0.14.8"} to version ${latestVersion}`) + `
674153
+ writeToStdout(source_default.green(`Successfully updated from ${"0.14.9"} to version ${latestVersion}`) + `
674117
674154
  `);
674118
674155
  await regenerateCompletionCache();
674119
674156
  break;
@@ -676166,7 +676203,7 @@ Usage: openclaude --remote "your task description"`, () => gracefulShutdown(1));
676166
676203
  pendingHookMessages
676167
676204
  }, renderAndRun);
676168
676205
  }
676169
- }).version("0.14.8 (OpenClaude)", "-v, --version", "Output the version number");
676206
+ }).version("0.14.9 (OpenClaude)", "-v, --version", "Output the version number");
676170
676207
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
676171
676208
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
676172
676209
  if (canUserConfigureAdvisor()) {
@@ -676743,7 +676780,7 @@ if (false) {}
676743
676780
  async function main2() {
676744
676781
  const args = process.argv.slice(2);
676745
676782
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
676746
- console.log(`${"0.14.8"} (OpenClaude)`);
676783
+ console.log(`${"0.14.9"} (OpenClaude)`);
676747
676784
  return;
676748
676785
  }
676749
676786
  if (args.includes("--provider")) {
@@ -676896,4 +676933,4 @@ async function main2() {
676896
676933
  }
676897
676934
  main2();
676898
676935
 
676899
- //# debugId=0163E3661EF4533664756E2164756E21
676936
+ //# debugId=86F0C6D47371392E64756E2164756E21
package/dist/sdk.mjs CHANGED
@@ -35454,7 +35454,7 @@ function getAttributionHeader(fingerprint) {
35454
35454
  if (!isAttributionHeaderEnabled()) {
35455
35455
  return "";
35456
35456
  }
35457
- const version = `${"0.14.8"}.${fingerprint}`;
35457
+ const version = `${"0.14.9"}.${fingerprint}`;
35458
35458
  const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
35459
35459
  const cch = "";
35460
35460
  const workload = getWorkload();
@@ -193039,7 +193039,7 @@ var init_metadata = __esm(() => {
193039
193039
  COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
193040
193040
  WHITESPACE_REGEX = /\s+/;
193041
193041
  getVersionBase = memoize_default(() => {
193042
- const match = "0.14.8".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
193042
+ const match = "0.14.9".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
193043
193043
  return match ? match[0] : undefined;
193044
193044
  });
193045
193045
  buildEnvContext = memoize_default(async () => {
@@ -193079,9 +193079,9 @@ var init_metadata = __esm(() => {
193079
193079
  isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
193080
193080
  isClaudeCodeAction: isEnvTruthy(process.env.CLAUDE_CODE_ACTION),
193081
193081
  isClaudeAiAuth: isClaudeAISubscriber(),
193082
- version: "0.14.8",
193082
+ version: "0.14.9",
193083
193083
  versionBase: getVersionBase(),
193084
- buildTime: "2026-05-26T10:21:01.910Z",
193084
+ buildTime: "2026-05-26T10:36:28.963Z",
193085
193085
  deploymentEnvironment: env2.detectDeploymentEnvironment(),
193086
193086
  ...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
193087
193087
  githubEventName: process.env.GITHUB_EVENT_NAME,
@@ -201290,7 +201290,7 @@ var init_effort = __esm(() => {
201290
201290
 
201291
201291
  // src/utils/userAgent.ts
201292
201292
  function getClaudeCodeUserAgent() {
201293
- return `claude-code/${"0.14.8"}`;
201293
+ return `claude-code/${"0.14.9"}`;
201294
201294
  }
201295
201295
 
201296
201296
  // src/utils/http.ts
@@ -201299,7 +201299,7 @@ function getUserAgent() {
201299
201299
  const clientApp = process.env.CLAUDE_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}` : "";
201300
201300
  const workload = getWorkload();
201301
201301
  const workloadSuffix = workload ? `, workload/${workload}` : "";
201302
- return `claude-cli/${"0.14.8"} (${process.env.USER_TYPE}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
201302
+ return `claude-cli/${"0.14.9"} (${process.env.USER_TYPE}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
201303
201303
  }
201304
201304
  function getMCPUserAgent() {
201305
201305
  const parts = [];
@@ -201313,7 +201313,7 @@ function getMCPUserAgent() {
201313
201313
  parts.push(`client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}`);
201314
201314
  }
201315
201315
  const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
201316
- return `claude-code/${"0.14.8"}${suffix}`;
201316
+ return `claude-code/${"0.14.9"}${suffix}`;
201317
201317
  }
201318
201318
  function getWebFetchUserAgent() {
201319
201319
  const supportUrl = getAPIProvider() === "firstParty" ? "https://support.anthropic.com/" : "https://github.com/AndersonBY/openclaude";
@@ -236719,7 +236719,7 @@ function computeFingerprint(messageText, version2) {
236719
236719
  }
236720
236720
  function computeFingerprintFromMessages(messages) {
236721
236721
  const firstMessageText = extractFirstMessageText(messages);
236722
- return computeFingerprint(firstMessageText, "0.14.8");
236722
+ return computeFingerprint(firstMessageText, "0.14.9");
236723
236723
  }
236724
236724
  var FINGERPRINT_SALT = "59cf53e54c78";
236725
236725
  var init_fingerprint = () => {};
@@ -236761,7 +236761,7 @@ async function sideQuery(opts) {
236761
236761
  betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
236762
236762
  }
236763
236763
  const messageText = extractFirstUserMessageText(messages);
236764
- const fingerprint = computeFingerprint(messageText, "0.14.8");
236764
+ const fingerprint = computeFingerprint(messageText, "0.14.9");
236765
236765
  const attributionHeader = getAttributionHeader(fingerprint);
236766
236766
  const systemBlocks = [
236767
236767
  attributionHeader ? { type: "text", text: attributionHeader } : null,
@@ -238006,7 +238006,7 @@ var init_client2 = __esm(() => {
238006
238006
  const client = new Client({
238007
238007
  name: "claude-code",
238008
238008
  title: "OpenClaude",
238009
- version: "0.14.8",
238009
+ version: "0.14.9",
238010
238010
  description: "OpenClaude — coding-agent CLI for any LLM provider",
238011
238011
  websiteUrl: PRODUCT_URL
238012
238012
  }, {
@@ -313314,7 +313314,7 @@ function getAnthropicEnvMetadata() {
313314
313314
  function getBuildAgeMinutes() {
313315
313315
  if (false)
313316
313316
  ;
313317
- const buildTime = new Date("2026-05-26T10:21:01.910Z").getTime();
313317
+ const buildTime = new Date("2026-05-26T10:36:28.963Z").getTime();
313318
313318
  if (isNaN(buildTime))
313319
313319
  return;
313320
313320
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -347217,7 +347217,7 @@ var init_sessionStorage = __esm(() => {
347217
347217
  init_settings2();
347218
347218
  init_slowOperations();
347219
347219
  init_uuid();
347220
- VERSION3 = typeof MACRO !== "undefined" ? "0.14.8" : "unknown";
347220
+ VERSION3 = typeof MACRO !== "undefined" ? "0.14.9" : "unknown";
347221
347221
  MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
347222
347222
  SKIP_FIRST_PROMPT_PATTERN2 = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
347223
347223
  EPHEMERAL_PROGRESS_TYPES = new Set([
@@ -348519,7 +348519,7 @@ var init_filesystem = __esm(() => {
348519
348519
  });
348520
348520
  getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
348521
348521
  const nonce = randomBytes7(16).toString("hex");
348522
- return join80(getClaudeTempDir(), "bundled-skills", "0.14.8", nonce);
348522
+ return join80(getClaudeTempDir(), "bundled-skills", "0.14.9", nonce);
348523
348523
  });
348524
348524
  getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
348525
348525
  });
@@ -363693,7 +363693,7 @@ function buildSystemInitMessage(inputs) {
363693
363693
  slash_commands: inputs.commands.filter((c7) => c7.userInvocable !== false).map((c7) => c7.name),
363694
363694
  apiKeySource: getAnthropicApiKeyWithSource().source,
363695
363695
  betas: getSdkBetas2(),
363696
- claude_code_version: "0.14.8",
363696
+ claude_code_version: "0.14.9",
363697
363697
  output_style: outputStyle,
363698
363698
  agents: inputs.agents.map((agent2) => agent2.agentType),
363699
363699
  skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
@@ -367745,4 +367745,4 @@ export {
367745
367745
  AbortError
367746
367746
  };
367747
367747
 
367748
- //# debugId=1B9312ED1EF2477564756E2164756E21
367748
+ //# debugId=FA2711202E59EAD264756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@makerbi/openclaude",
3
- "version": "0.14.8",
3
+ "version": "0.14.9",
4
4
  "description": "OpenClaude opens coding-agent workflows to any LLM — OpenAI, Gemini, DeepSeek, Ollama, and 200+ models",
5
5
  "type": "module",
6
6
  "bin": {