@makerbi/openclaude 0.14.3 → 0.14.4

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 +50 -54
  2. package/dist/sdk.mjs +15 -15
  3. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -149962,7 +149962,7 @@ var init_metadata = __esm(() => {
149962
149962
  isClaudeAiAuth: isClaudeAISubscriber(),
149963
149963
  version: "99.0.0",
149964
149964
  versionBase: getVersionBase(),
149965
- buildTime: "2026-05-26T06:37:11.139Z",
149965
+ buildTime: "2026-05-26T07:31:57.469Z",
149966
149966
  deploymentEnvironment: env2.detectDeploymentEnvironment(),
149967
149967
  ...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
149968
149968
  githubEventName: process.env.GITHUB_EVENT_NAME,
@@ -283781,7 +283781,7 @@ function normalizeReleaseVersion(tagName) {
283781
283781
  return tagName.startsWith("v") ? tagName.slice(1) : tagName;
283782
283782
  }
283783
283783
  function getGitHubReleaseAssetName(platform4) {
283784
- return platform4.startsWith("win32") ? `claude-${platform4}.exe` : `claude-${platform4}`;
283784
+ return platform4.startsWith("win32") ? `openclaude-${platform4}.exe` : `openclaude-${platform4}`;
283785
283785
  }
283786
283786
  function isReleaseVersion(value) {
283787
283787
  return typeof value === "string" && /^v?\d+\.\d+\.\d+(-\S+)?$/.test(value);
@@ -284350,6 +284350,9 @@ import {
284350
284350
  } from "fs/promises";
284351
284351
  import { homedir as homedir21 } from "os";
284352
284352
  import { basename as basename13, delimiter as delimiter3, dirname as dirname27, join as join62, resolve as resolve20 } from "path";
284353
+ function getCliBinaryName2() {
284354
+ return "openclaude";
284355
+ }
284353
284356
  function getPlatform2() {
284354
284357
  const os4 = env2.platform;
284355
284358
  const arch = process.arch === "x64" ? "x64" : process.arch === "arm64" ? "arm64" : null;
@@ -284364,15 +284367,17 @@ function getPlatform2() {
284364
284367
  return `${os4}-${arch}`;
284365
284368
  }
284366
284369
  function getBinaryName(platform4) {
284367
- return platform4.startsWith("win32") ? "claude.exe" : "claude";
284370
+ const binaryName = getCliBinaryName2();
284371
+ return platform4.startsWith("win32") ? `${binaryName}.exe` : binaryName;
284368
284372
  }
284369
284373
  function getBaseDirectories() {
284370
284374
  const platform4 = getPlatform2();
284371
284375
  const executableName = getBinaryName(platform4);
284376
+ const appDirName = getCliBinaryName2();
284372
284377
  return {
284373
- versions: join62(getXDGDataHome(), "claude", "versions"),
284374
- staging: join62(getXDGCacheHome(), "claude", "staging"),
284375
- locks: join62(getXDGStateHome(), "claude", "locks"),
284378
+ versions: join62(getXDGDataHome(), appDirName, "versions"),
284379
+ staging: join62(getXDGCacheHome(), appDirName, "staging"),
284380
+ locks: join62(getXDGStateHome(), appDirName, "locks"),
284376
284381
  executable: join62(getUserBinDir(), executableName)
284377
284382
  };
284378
284383
  }
@@ -284819,7 +284824,7 @@ async function checkInstall(force = false) {
284819
284824
  if (isWindows2) {
284820
284825
  if (!await isPossibleClaudeBinary(dirs.executable)) {
284821
284826
  messages.push({
284822
- message: `installMethod is native, but claude command is missing or invalid at ${dirs.executable}`,
284827
+ message: `installMethod is native, but ${getCliBinaryName2()} command is missing or invalid at ${dirs.executable}`,
284823
284828
  userActionRequired: true,
284824
284829
  type: "error"
284825
284830
  });
@@ -284838,14 +284843,14 @@ async function checkInstall(force = false) {
284838
284843
  } catch (e) {
284839
284844
  if (isENOENT(e)) {
284840
284845
  messages.push({
284841
- message: `installMethod is native, but claude command not found at ${dirs.executable}`,
284846
+ message: `installMethod is native, but ${getCliBinaryName2()} command not found at ${dirs.executable}`,
284842
284847
  userActionRequired: true,
284843
284848
  type: "error"
284844
284849
  });
284845
284850
  } else {
284846
284851
  if (!await isPossibleClaudeBinary(dirs.executable)) {
284847
284852
  messages.push({
284848
- message: `${dirs.executable} exists but is not a valid Claude binary`,
284853
+ message: `${dirs.executable} exists but is not a valid ${getCliBinaryName2()} binary`,
284849
284854
  userActionRequired: true,
284850
284855
  type: "error"
284851
284856
  });
@@ -285030,11 +285035,12 @@ async function cleanupOldVersions() {
285030
285035
  const oneHourAgo = Date.now() - 3600000;
285031
285036
  if (getPlatform2().startsWith("win32")) {
285032
285037
  const executableDir = dirname27(dirs.executable);
285038
+ const oldExecutablePattern = new RegExp(`^${getBinaryName(getPlatform2()).replace(/[.*+?^${}()|[\]\\]/g, "\\$&")}\\.old\\.\\d+$`);
285033
285039
  try {
285034
285040
  const files = await readdir8(executableDir);
285035
285041
  let cleanedCount = 0;
285036
285042
  for (const file2 of files) {
285037
- if (!/^claude\.exe\.old\.\d+$/.test(file2))
285043
+ if (!oldExecutablePattern.test(file2))
285038
285044
  continue;
285039
285045
  try {
285040
285046
  await unlink7(join62(executableDir, file2));
@@ -285226,12 +285232,12 @@ async function removeInstalledSymlink() {
285226
285232
  return;
285227
285233
  }
285228
285234
  await unlink7(dirs.executable);
285229
- logForDebugging(`Removed claude symlink at ${dirs.executable}`);
285235
+ logForDebugging(`Removed native executable at ${dirs.executable}`);
285230
285236
  } catch (error42) {
285231
285237
  if (isENOENT(error42)) {
285232
285238
  return;
285233
285239
  }
285234
- logError2(new Error(`Failed to remove claude symlink: ${error42}`));
285240
+ logError2(new Error(`Failed to remove native executable: ${error42}`));
285235
285241
  }
285236
285242
  }
285237
285243
  async function cleanupShellAliases() {
@@ -285277,6 +285283,7 @@ async function manualRemoveNpmPackage(packageName) {
285277
285283
  };
285278
285284
  }
285279
285285
  const globalPrefix = prefixResult.stdout.trim();
285286
+ const packageBinName = packageName === "@anthropic-ai/claude-code" ? "claude" : getCliBinaryName2();
285280
285287
  let manuallyRemoved = false;
285281
285288
  async function tryRemove(filePath, description) {
285282
285289
  try {
@@ -285288,9 +285295,9 @@ async function manualRemoveNpmPackage(packageName) {
285288
285295
  }
285289
285296
  }
285290
285297
  if (getPlatform2().startsWith("win32")) {
285291
- const binCmd = join62(globalPrefix, "claude.cmd");
285292
- const binPs1 = join62(globalPrefix, "claude.ps1");
285293
- const binExe = join62(globalPrefix, "claude");
285298
+ const binCmd = join62(globalPrefix, `${packageBinName}.cmd`);
285299
+ const binPs1 = join62(globalPrefix, `${packageBinName}.ps1`);
285300
+ const binExe = join62(globalPrefix, packageBinName);
285294
285301
  if (await tryRemove(binCmd, "bin script")) {
285295
285302
  manuallyRemoved = true;
285296
285303
  }
@@ -285301,7 +285308,7 @@ async function manualRemoveNpmPackage(packageName) {
285301
285308
  manuallyRemoved = true;
285302
285309
  }
285303
285310
  } else {
285304
- const binSymlink = join62(globalPrefix, "bin", "claude");
285311
+ const binSymlink = join62(globalPrefix, "bin", packageBinName);
285305
285312
  if (await tryRemove(binSymlink, "bin symlink")) {
285306
285313
  manuallyRemoved = true;
285307
285314
  }
@@ -285366,17 +285373,6 @@ async function cleanupNpmInstallations() {
285366
285373
  } else if (codePackageResult.error) {
285367
285374
  errors4.push(codePackageResult.error);
285368
285375
  }
285369
- if (true) {
285370
- const macroPackageResult = await attemptNpmUninstall("@makerbi/openclaude");
285371
- if (macroPackageResult.success) {
285372
- removed++;
285373
- if (macroPackageResult.warning) {
285374
- warnings.push(macroPackageResult.warning);
285375
- }
285376
- } else if (macroPackageResult.error) {
285377
- errors4.push(macroPackageResult.error);
285378
- }
285379
- }
285380
285376
  const localInstallDirs = Array.from(new Set([join62(getClaudeConfigHomeDir(), "local"), join62(homedir21(), ".claude", "local")]));
285381
285377
  for (const localInstallDir of localInstallDirs) {
285382
285378
  try {
@@ -389347,7 +389343,7 @@ function getAnthropicEnvMetadata() {
389347
389343
  function getBuildAgeMinutes() {
389348
389344
  if (false)
389349
389345
  ;
389350
- const buildTime = new Date("2026-05-26T06:37:11.139Z").getTime();
389346
+ const buildTime = new Date("2026-05-26T07:31:57.469Z").getTime();
389351
389347
  if (isNaN(buildTime))
389352
389348
  return;
389353
389349
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -417486,7 +417482,7 @@ function buildPrimarySection() {
417486
417482
  }, undefined, false, undefined, this);
417487
417483
  return [{
417488
417484
  label: "Version",
417489
- value: "0.14.3"
417485
+ value: "0.14.4"
417490
417486
  }, {
417491
417487
  label: "Session name",
417492
417488
  value: nameValue
@@ -432381,7 +432377,7 @@ function getReleaseTagUrl(version2 = publicBuildVersion) {
432381
432377
  return `${OPENCLAUDE_RELEASES_URL}/tag/v${normalizePublicVersion(version2)}`;
432382
432378
  }
432383
432379
  function getPublicBuildVersion() {
432384
- return "0.14.3";
432380
+ return "0.14.4";
432385
432381
  }
432386
432382
  var import_semver9, OPENCLAUDE_RELEASES_URL = "https://github.com/AndersonBY/openclaude/releases", fallbackBuildVersion, publicBuildVersion;
432387
432383
  var init_version = __esm(() => {
@@ -489394,7 +489390,7 @@ var init_bridge_kick = __esm(() => {
489394
489390
  var call66 = async () => {
489395
489391
  return {
489396
489392
  type: "text",
489397
- value: `${"99.0.0"} (built ${"2026-05-26T06:37:11.139Z"})`
489393
+ value: `${"99.0.0"} (built ${"2026-05-26T07:31:57.469Z"})`
489398
489394
  };
489399
489395
  }, version2, version_default;
489400
489396
  var init_version2 = __esm(() => {
@@ -521852,7 +521848,7 @@ function printStartupScreen(modelOverride) {
521852
521848
  const sLen = ` ● ${sL} Ready — type /help to begin`.length;
521853
521849
  out.push(boxRow(sRow, W2, sLen, BORDER));
521854
521850
  out.push(`${ansiRgb(...BORDER)}╚${"═".repeat(W2 - 2)}╝${RESET2}`);
521855
- out.push(` ${DIM2}${ansiRgb(...DIMCOL)}openclaude ${RESET2}${ansiRgb(...ACCENT)}v${"0.14.3"}${RESET2}`);
521851
+ out.push(` ${DIM2}${ansiRgb(...DIMCOL)}openclaude ${RESET2}${ansiRgb(...ACCENT)}v${"0.14.4"}${RESET2}`);
521856
521852
  out.push("");
521857
521853
  process.stdout.write(out.join(`
521858
521854
  `) + `
@@ -573163,7 +573159,7 @@ function WelcomeV2() {
573163
573159
  dimColor: true,
573164
573160
  children: [
573165
573161
  "v",
573166
- "0.14.3",
573162
+ "0.14.4",
573167
573163
  " "
573168
573164
  ]
573169
573165
  }, undefined, true, undefined, this)
@@ -573363,7 +573359,7 @@ function WelcomeV2() {
573363
573359
  dimColor: true,
573364
573360
  children: [
573365
573361
  "v",
573366
- "0.14.3",
573362
+ "0.14.4",
573367
573363
  " "
573368
573364
  ]
573369
573365
  }, undefined, true, undefined, this)
@@ -573589,7 +573585,7 @@ function AppleTerminalWelcomeV2(t0) {
573589
573585
  dimColor: true,
573590
573586
  children: [
573591
573587
  "v",
573592
- "0.14.3",
573588
+ "0.14.4",
573593
573589
  " "
573594
573590
  ]
573595
573591
  }, undefined, true, undefined, this);
@@ -573843,7 +573839,7 @@ function AppleTerminalWelcomeV2(t0) {
573843
573839
  dimColor: true,
573844
573840
  children: [
573845
573841
  "v",
573846
- "0.14.3",
573842
+ "0.14.4",
573847
573843
  " "
573848
573844
  ]
573849
573845
  }, undefined, true, undefined, this);
@@ -591388,7 +591384,7 @@ __export(exports_update, {
591388
591384
  async function update() {
591389
591385
  if (getAPIProvider() !== "firstParty") {
591390
591386
  writeToStdout(source_default.yellow(`Auto-update is not available for third-party provider builds.
591391
- `) + `Current version: ${"0.14.3"}
591387
+ `) + `Current version: ${"0.14.4"}
591392
591388
 
591393
591389
  ` + `To update, reinstall from npm:
591394
591390
  ` + source_default.bold(` npm install -g ${"@makerbi/openclaude"}@latest`) + `
@@ -591399,7 +591395,7 @@ async function update() {
591399
591395
  await gracefulShutdown(0);
591400
591396
  }
591401
591397
  logEvent("tengu_update_check", {});
591402
- writeToStdout(`Current version: ${"0.14.3"}
591398
+ writeToStdout(`Current version: ${"0.14.4"}
591403
591399
  `);
591404
591400
  const channel = getInitialSettings()?.autoUpdatesChannel ?? "latest";
591405
591401
  writeToStdout(`Checking for updates to ${channel} version...
@@ -591484,8 +591480,8 @@ async function update() {
591484
591480
  writeToStdout(`Claude is managed by Homebrew.
591485
591481
  `);
591486
591482
  const latest = await getLatestVersion(channel);
591487
- if (latest && !gte("0.14.3", latest)) {
591488
- writeToStdout(`Update available: ${"0.14.3"} → ${latest}
591483
+ if (latest && !gte("0.14.4", latest)) {
591484
+ writeToStdout(`Update available: ${"0.14.4"} → ${latest}
591489
591485
  `);
591490
591486
  writeToStdout(`
591491
591487
  `);
@@ -591501,8 +591497,8 @@ async function update() {
591501
591497
  writeToStdout(`Claude is managed by winget.
591502
591498
  `);
591503
591499
  const latest = await getLatestVersion(channel);
591504
- if (latest && !gte("0.14.3", latest)) {
591505
- writeToStdout(`Update available: ${"0.14.3"} → ${latest}
591500
+ if (latest && !gte("0.14.4", latest)) {
591501
+ writeToStdout(`Update available: ${"0.14.4"} → ${latest}
591506
591502
  `);
591507
591503
  writeToStdout(`
591508
591504
  `);
@@ -591518,8 +591514,8 @@ async function update() {
591518
591514
  writeToStdout(`Claude is managed by apk.
591519
591515
  `);
591520
591516
  const latest = await getLatestVersion(channel);
591521
- if (latest && !gte("0.14.3", latest)) {
591522
- writeToStdout(`Update available: ${"0.14.3"} → ${latest}
591517
+ if (latest && !gte("0.14.4", latest)) {
591518
+ writeToStdout(`Update available: ${"0.14.4"} → ${latest}
591523
591519
  `);
591524
591520
  writeToStdout(`
591525
591521
  `);
@@ -591584,11 +591580,11 @@ async function update() {
591584
591580
  `);
591585
591581
  await gracefulShutdown(1);
591586
591582
  }
591587
- if (result.latestVersion === "0.14.3") {
591588
- writeToStdout(source_default.green(`OpenClaude is up to date (${"0.14.3"})`) + `
591583
+ if (result.latestVersion === "0.14.4") {
591584
+ writeToStdout(source_default.green(`OpenClaude is up to date (${"0.14.4"})`) + `
591589
591585
  `);
591590
591586
  } else {
591591
- writeToStdout(source_default.green(`Successfully updated from ${"0.14.3"} to version ${result.latestVersion}`) + `
591587
+ writeToStdout(source_default.green(`Successfully updated from ${"0.14.4"} to version ${result.latestVersion}`) + `
591592
591588
  `);
591593
591589
  await regenerateCompletionCache();
591594
591590
  }
@@ -591648,12 +591644,12 @@ async function update() {
591648
591644
  `);
591649
591645
  await gracefulShutdown(1);
591650
591646
  }
591651
- if (latestVersion === "0.14.3") {
591652
- writeToStdout(source_default.green(`OpenClaude is up to date (${"0.14.3"})`) + `
591647
+ if (latestVersion === "0.14.4") {
591648
+ writeToStdout(source_default.green(`OpenClaude is up to date (${"0.14.4"})`) + `
591653
591649
  `);
591654
591650
  await gracefulShutdown(0);
591655
591651
  }
591656
- writeToStdout(`New version available: ${latestVersion} (current: ${"0.14.3"})
591652
+ writeToStdout(`New version available: ${latestVersion} (current: ${"0.14.4"})
591657
591653
  `);
591658
591654
  writeToStdout(`Installing update...
591659
591655
  `);
@@ -591698,7 +591694,7 @@ async function update() {
591698
591694
  logForDebugging(`update: Installation status: ${status2}`);
591699
591695
  switch (status2) {
591700
591696
  case "success":
591701
- writeToStdout(source_default.green(`Successfully updated from ${"0.14.3"} to version ${latestVersion}`) + `
591697
+ writeToStdout(source_default.green(`Successfully updated from ${"0.14.4"} to version ${latestVersion}`) + `
591702
591698
  `);
591703
591699
  await regenerateCompletionCache();
591704
591700
  break;
@@ -593751,7 +593747,7 @@ Usage: openclaude --remote "your task description"`, () => gracefulShutdown(1));
593751
593747
  pendingHookMessages
593752
593748
  }, renderAndRun);
593753
593749
  }
593754
- }).version("0.14.3 (OpenClaude)", "-v, --version", "Output the version number");
593750
+ }).version("0.14.4 (OpenClaude)", "-v, --version", "Output the version number");
593755
593751
  program2.option("-w, --worktree [name]", "Create a new git worktree for this session (optionally specify a name)");
593756
593752
  program2.option("--tmux", "Create a tmux session for the worktree (requires --worktree). Uses iTerm2 native panes when available; use --tmux=classic for traditional tmux.");
593757
593753
  if (canUserConfigureAdvisor()) {
@@ -594328,7 +594324,7 @@ if (false) {}
594328
594324
  async function main2() {
594329
594325
  const args = process.argv.slice(2);
594330
594326
  if (args.length === 1 && (args[0] === "--version" || args[0] === "-v" || args[0] === "-V")) {
594331
- console.log(`${"0.14.3"} (OpenClaude)`);
594327
+ console.log(`${"0.14.4"} (OpenClaude)`);
594332
594328
  return;
594333
594329
  }
594334
594330
  if (args.includes("--provider")) {
@@ -594481,4 +594477,4 @@ async function main2() {
594481
594477
  }
594482
594478
  main2();
594483
594479
 
594484
- //# debugId=8DBCEB0A9576171064756E2164756E21
594480
+ //# debugId=02DA328B8C421E2764756E2164756E21
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.3"}.${fingerprint}`;
35457
+ const version = `${"0.14.4"}.${fingerprint}`;
35458
35458
  const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
35459
35459
  const cch = "";
35460
35460
  const workload = getWorkload();
@@ -110698,7 +110698,7 @@ var init_metadata = __esm(() => {
110698
110698
  COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
110699
110699
  WHITESPACE_REGEX = /\s+/;
110700
110700
  getVersionBase = memoize_default(() => {
110701
- const match = "0.14.3".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
110701
+ const match = "0.14.4".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
110702
110702
  return match ? match[0] : undefined;
110703
110703
  });
110704
110704
  buildEnvContext = memoize_default(async () => {
@@ -110738,9 +110738,9 @@ var init_metadata = __esm(() => {
110738
110738
  isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
110739
110739
  isClaudeCodeAction: isEnvTruthy(process.env.CLAUDE_CODE_ACTION),
110740
110740
  isClaudeAiAuth: isClaudeAISubscriber(),
110741
- version: "0.14.3",
110741
+ version: "0.14.4",
110742
110742
  versionBase: getVersionBase(),
110743
- buildTime: "2026-05-26T06:37:12.710Z",
110743
+ buildTime: "2026-05-26T07:31:59.051Z",
110744
110744
  deploymentEnvironment: env2.detectDeploymentEnvironment(),
110745
110745
  ...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
110746
110746
  githubEventName: process.env.GITHUB_EVENT_NAME,
@@ -118949,7 +118949,7 @@ var init_effort = __esm(() => {
118949
118949
 
118950
118950
  // src/utils/userAgent.ts
118951
118951
  function getClaudeCodeUserAgent() {
118952
- return `claude-code/${"0.14.3"}`;
118952
+ return `claude-code/${"0.14.4"}`;
118953
118953
  }
118954
118954
 
118955
118955
  // src/utils/http.ts
@@ -118958,7 +118958,7 @@ function getUserAgent() {
118958
118958
  const clientApp = process.env.CLAUDE_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}` : "";
118959
118959
  const workload = getWorkload();
118960
118960
  const workloadSuffix = workload ? `, workload/${workload}` : "";
118961
- return `claude-cli/${"0.14.3"} (${process.env.USER_TYPE}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
118961
+ return `claude-cli/${"0.14.4"} (${process.env.USER_TYPE}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
118962
118962
  }
118963
118963
  function getMCPUserAgent() {
118964
118964
  const parts = [];
@@ -118972,7 +118972,7 @@ function getMCPUserAgent() {
118972
118972
  parts.push(`client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}`);
118973
118973
  }
118974
118974
  const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
118975
- return `claude-code/${"0.14.3"}${suffix}`;
118975
+ return `claude-code/${"0.14.4"}${suffix}`;
118976
118976
  }
118977
118977
  function getWebFetchUserAgent() {
118978
118978
  const supportUrl = getAPIProvider() === "firstParty" ? "https://support.anthropic.com/" : "https://github.com/AndersonBY/openclaude";
@@ -154378,7 +154378,7 @@ function computeFingerprint(messageText, version2) {
154378
154378
  }
154379
154379
  function computeFingerprintFromMessages(messages) {
154380
154380
  const firstMessageText = extractFirstMessageText(messages);
154381
- return computeFingerprint(firstMessageText, "0.14.3");
154381
+ return computeFingerprint(firstMessageText, "0.14.4");
154382
154382
  }
154383
154383
  var FINGERPRINT_SALT = "59cf53e54c78";
154384
154384
  var init_fingerprint = () => {};
@@ -154420,7 +154420,7 @@ async function sideQuery(opts) {
154420
154420
  betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
154421
154421
  }
154422
154422
  const messageText = extractFirstUserMessageText(messages);
154423
- const fingerprint = computeFingerprint(messageText, "0.14.3");
154423
+ const fingerprint = computeFingerprint(messageText, "0.14.4");
154424
154424
  const attributionHeader = getAttributionHeader(fingerprint);
154425
154425
  const systemBlocks = [
154426
154426
  attributionHeader ? { type: "text", text: attributionHeader } : null,
@@ -155665,7 +155665,7 @@ var init_client2 = __esm(() => {
155665
155665
  const client = new Client({
155666
155666
  name: "claude-code",
155667
155667
  title: "OpenClaude",
155668
- version: "0.14.3",
155668
+ version: "0.14.4",
155669
155669
  description: "OpenClaude — coding-agent CLI for any LLM provider",
155670
155670
  websiteUrl: PRODUCT_URL
155671
155671
  }, {
@@ -230973,7 +230973,7 @@ function getAnthropicEnvMetadata() {
230973
230973
  function getBuildAgeMinutes() {
230974
230974
  if (false)
230975
230975
  ;
230976
- const buildTime = new Date("2026-05-26T06:37:12.710Z").getTime();
230976
+ const buildTime = new Date("2026-05-26T07:31:59.051Z").getTime();
230977
230977
  if (isNaN(buildTime))
230978
230978
  return;
230979
230979
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -264876,7 +264876,7 @@ var init_sessionStorage = __esm(() => {
264876
264876
  init_settings2();
264877
264877
  init_slowOperations();
264878
264878
  init_uuid();
264879
- VERSION3 = typeof MACRO !== "undefined" ? "0.14.3" : "unknown";
264879
+ VERSION3 = typeof MACRO !== "undefined" ? "0.14.4" : "unknown";
264880
264880
  MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
264881
264881
  SKIP_FIRST_PROMPT_PATTERN2 = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
264882
264882
  EPHEMERAL_PROGRESS_TYPES = new Set([
@@ -266178,7 +266178,7 @@ var init_filesystem = __esm(() => {
266178
266178
  });
266179
266179
  getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
266180
266180
  const nonce = randomBytes7(16).toString("hex");
266181
- return join80(getClaudeTempDir(), "bundled-skills", "0.14.3", nonce);
266181
+ return join80(getClaudeTempDir(), "bundled-skills", "0.14.4", nonce);
266182
266182
  });
266183
266183
  getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
266184
266184
  });
@@ -281352,7 +281352,7 @@ function buildSystemInitMessage(inputs) {
281352
281352
  slash_commands: inputs.commands.filter((c7) => c7.userInvocable !== false).map((c7) => c7.name),
281353
281353
  apiKeySource: getAnthropicApiKeyWithSource().source,
281354
281354
  betas: getSdkBetas2(),
281355
- claude_code_version: "0.14.3",
281355
+ claude_code_version: "0.14.4",
281356
281356
  output_style: outputStyle,
281357
281357
  agents: inputs.agents.map((agent2) => agent2.agentType),
281358
281358
  skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
@@ -285404,4 +285404,4 @@ export {
285404
285404
  AbortError
285405
285405
  };
285406
285406
 
285407
- //# debugId=ADF8CD9634C6302564756E2164756E21
285407
+ //# debugId=FDC074FB5D5D9C5164756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@makerbi/openclaude",
3
- "version": "0.14.3",
3
+ "version": "0.14.4",
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": {