@gaburieuru/claudio 0.25.0 → 0.25.1

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 +20 -20
  2. package/dist/sdk.mjs +16 -16
  3. package/package.json +1 -1
package/dist/sdk.mjs CHANGED
@@ -16982,7 +16982,7 @@ var init_version = __esm(() => {
16982
16982
  import_semver = __toESM(require_semver2(), 1);
16983
16983
  fallbackBuildVersion = (() => {
16984
16984
  try {
16985
- return "0.25.0";
16985
+ return "0.25.1";
16986
16986
  } catch {
16987
16987
  return "0.0.0";
16988
16988
  }
@@ -66015,7 +66015,7 @@ function getAttributionHeader(fingerprint) {
66015
66015
  if (!isAttributionHeaderEnabled()) {
66016
66016
  return "";
66017
66017
  }
66018
- const version2 = `${"0.25.0"}.${fingerprint}`;
66018
+ const version2 = `${"0.25.1"}.${fingerprint}`;
66019
66019
  const entrypoint = process.env.CLAUDE_CODE_ENTRYPOINT ?? "unknown";
66020
66020
  const cch = "";
66021
66021
  const workload = getWorkload();
@@ -99108,7 +99108,7 @@ var init_metadata = __esm(() => {
99108
99108
  COMPOUND_OPERATOR_REGEX = /\s*(?:&&|\|\||[;|])\s*/;
99109
99109
  WHITESPACE_REGEX = /\s+/;
99110
99110
  getVersionBase = memoize_default(() => {
99111
- const match = "0.25.0".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
99111
+ const match = "0.25.1".match(/^\d+\.\d+\.\d+(?:-[a-z]+)?/);
99112
99112
  return match ? match[0] : undefined;
99113
99113
  });
99114
99114
  buildEnvContext = memoize_default(async () => {
@@ -99148,9 +99148,9 @@ var init_metadata = __esm(() => {
99148
99148
  isGithubAction: isEnvTruthy(process.env.GITHUB_ACTIONS),
99149
99149
  isClaudeCodeAction: isEnvTruthy(process.env.CLAUDE_CODE_ACTION),
99150
99150
  isClaudeAiAuth: isClaudeAISubscriber(),
99151
- version: "0.25.0",
99151
+ version: "0.25.1",
99152
99152
  versionBase: getVersionBase(),
99153
- buildTime: "2026-07-19T21:09:02.353Z",
99153
+ buildTime: "2026-07-19T21:19:15.179Z",
99154
99154
  deploymentEnvironment: env2.detectDeploymentEnvironment(),
99155
99155
  ...isEnvTruthy(process.env.GITHUB_ACTIONS) && {
99156
99156
  githubEventName: process.env.GITHUB_EVENT_NAME,
@@ -107594,7 +107594,7 @@ var init_effort = __esm(() => {
107594
107594
 
107595
107595
  // src/utils/userAgent.ts
107596
107596
  function getClaudeCodeUserAgent() {
107597
- return `claude-code/${"0.25.0"}`;
107597
+ return `claude-code/${"0.25.1"}`;
107598
107598
  }
107599
107599
 
107600
107600
  // src/utils/http.ts
@@ -107603,7 +107603,7 @@ function getUserAgent() {
107603
107603
  const clientApp = process.env.CLAUDE_AGENT_SDK_CLIENT_APP ? `, client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}` : "";
107604
107604
  const workload = getWorkload();
107605
107605
  const workloadSuffix = workload ? `, workload/${workload}` : "";
107606
- return `claude-cli/${"0.25.0"} (${process.env.USER_TYPE}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
107606
+ return `claude-cli/${"0.25.1"} (${process.env.USER_TYPE}, ${process.env.CLAUDE_CODE_ENTRYPOINT ?? "cli"}${agentSdkVersion}${clientApp}${workloadSuffix})`;
107607
107607
  }
107608
107608
  function getMCPUserAgent() {
107609
107609
  const parts = [];
@@ -107617,7 +107617,7 @@ function getMCPUserAgent() {
107617
107617
  parts.push(`client-app/${process.env.CLAUDE_AGENT_SDK_CLIENT_APP}`);
107618
107618
  }
107619
107619
  const suffix = parts.length > 0 ? ` (${parts.join(", ")})` : "";
107620
- return `claude-code/${"0.25.0"}${suffix}`;
107620
+ return `claude-code/${"0.25.1"}${suffix}`;
107621
107621
  }
107622
107622
  function getWebFetchUserAgent() {
107623
107623
  const supportUrl = isFirstPartyAnthropicProvider() ? "https://support.anthropic.com/" : "https://github.com/Gitlawb/openclaude";
@@ -147496,7 +147496,7 @@ function computeFingerprint(messageText, version2) {
147496
147496
  }
147497
147497
  function computeFingerprintFromMessages(messages) {
147498
147498
  const firstMessageText = extractFirstMessageText(messages);
147499
- return computeFingerprint(firstMessageText, "0.25.0");
147499
+ return computeFingerprint(firstMessageText, "0.25.1");
147500
147500
  }
147501
147501
  var FINGERPRINT_SALT = "59cf53e54c78";
147502
147502
  var init_fingerprint = () => {};
@@ -147538,7 +147538,7 @@ async function sideQuery(opts) {
147538
147538
  betas.push(STRUCTURED_OUTPUTS_BETA_HEADER);
147539
147539
  }
147540
147540
  const messageText = extractFirstUserMessageText(messages);
147541
- const fingerprint = computeFingerprint(messageText, "0.25.0");
147541
+ const fingerprint = computeFingerprint(messageText, "0.25.1");
147542
147542
  const attributionHeader = getAttributionHeader(fingerprint);
147543
147543
  const systemBlocks = [
147544
147544
  attributionHeader ? { type: "text", text: attributionHeader } : null,
@@ -148831,7 +148831,7 @@ var init_client2 = __esm(() => {
148831
148831
  const client = new Client({
148832
148832
  name: "claude-code",
148833
148833
  title: "Claudio",
148834
- version: "0.25.0",
148834
+ version: "0.25.1",
148835
148835
  description: "Claudio — coding-agent CLI for any LLM provider",
148836
148836
  websiteUrl: PRODUCT_URL
148837
148837
  }, {
@@ -225212,7 +225212,7 @@ function getAnthropicEnvMetadata() {
225212
225212
  function getBuildAgeMinutes() {
225213
225213
  if (false)
225214
225214
  ;
225215
- const buildTime = new Date("2026-07-19T21:09:02.353Z").getTime();
225215
+ const buildTime = new Date("2026-07-19T21:19:15.179Z").getTime();
225216
225216
  if (isNaN(buildTime))
225217
225217
  return;
225218
225218
  return Math.floor((Date.now() - buildTime) / 60000);
@@ -254112,7 +254112,7 @@ var init_sessionStorage = __esm(() => {
254112
254112
  init_sessionPersistencePolicy();
254113
254113
  init_slowOperations();
254114
254114
  init_uuid();
254115
- VERSION3 = typeof MACRO !== "undefined" ? "0.25.0" : "unknown";
254115
+ VERSION3 = typeof MACRO !== "undefined" ? "0.25.1" : "unknown";
254116
254116
  MAX_TOMBSTONE_REWRITE_BYTES = 50 * 1024 * 1024;
254117
254117
  SKIP_FIRST_PROMPT_PATTERN2 = /^(?:\s*<[a-z][\w-]*[\s>]|\[Request interrupted by user[^\]]*\])/;
254118
254118
  EPHEMERAL_PROGRESS_TYPES = new Set([
@@ -255557,7 +255557,7 @@ var init_filesystem = __esm(() => {
255557
255557
  });
255558
255558
  getBundledSkillsRoot = memoize_default(function getBundledSkillsRoot2() {
255559
255559
  const nonce = randomBytes8(16).toString("hex");
255560
- return join84(getClaudeTempDir(), "bundled-skills", "0.25.0", nonce);
255560
+ return join84(getClaudeTempDir(), "bundled-skills", "0.25.1", nonce);
255561
255561
  });
255562
255562
  getResolvedWorkingDirPaths = memoize_default(getPathsForPermissionCheck);
255563
255563
  });
@@ -269910,7 +269910,7 @@ function buildSystemInitMessage(inputs) {
269910
269910
  slash_commands: inputs.commands.filter((c6) => c6.userInvocable !== false).map((c6) => c6.name),
269911
269911
  apiKeySource: getAnthropicApiKeyWithSource().source,
269912
269912
  betas: getSdkBetas(),
269913
- claude_code_version: "0.25.0",
269913
+ claude_code_version: "0.25.1",
269914
269914
  output_style: outputStyle,
269915
269915
  agents: inputs.agents.map((agent) => agent.agentType),
269916
269916
  skills: inputs.skills.filter((s) => s.userInvocable !== false).map((skill) => skill.name),
@@ -274273,4 +274273,4 @@ export {
274273
274273
  AbortError
274274
274274
  };
274275
274275
 
274276
- //# debugId=91DC435E6A4F3E9064756E2164756E21
274276
+ //# debugId=684696664AC90C5364756E2164756E21
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gaburieuru/claudio",
3
- "version": "0.25.0",
3
+ "version": "0.25.1",
4
4
  "description": "Claudio — Claude Code–style coding agent CLI with any LLM",
5
5
  "type": "module",
6
6
  "bin": {