@funnycode/myclaude 0.1.94 → 0.1.95

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.
package/dist/myclaude.js CHANGED
@@ -4,8 +4,8 @@
4
4
  // MACRO - build-time constants (injected by build.ts)
5
5
  // MACRO injected by build script
6
6
  globalThis.MACRO = {
7
- VERSION: "0.1.94",
8
- BUILD_TIME: "2026-07-18T06:27:57.445Z",
7
+ VERSION: "0.1.95",
8
+ BUILD_TIME: "2026-07-18T09:09:23.186Z",
9
9
  PACKAGE_URL: "@funnycode/myclaude",
10
10
  NATIVE_PACKAGE_URL: "@funnycode/myclaude",
11
11
  VERSION_CHANGELOG: '',
@@ -117484,7 +117484,7 @@ var package_default;
117484
117484
  var init_package = __esm(() => {
117485
117485
  package_default = {
117486
117486
  name: "@funnycode/myclaude",
117487
- version: "0.1.94",
117487
+ version: "0.1.95",
117488
117488
  private: false,
117489
117489
  description: "An open-source AI coding assistant in your terminal - powered by Claude",
117490
117490
  license: "MIT",
@@ -210582,7 +210582,9 @@ function createDumpPromptsFetch(agentIdOrSessionId) {
210582
210582
  } catch {}
210583
210583
  }
210584
210584
  })().catch((err2) => {
210585
- logForDebugging(`dumpPrompts.response handler unhandled rejection: ${err2}`, { level: "error" });
210585
+ try {
210586
+ logForDebugging(`dumpPrompts.response handler unhandled rejection: ${err2}`, { level: "error" });
210587
+ } catch {}
210586
210588
  });
210587
210589
  }
210588
210590
  return response;
@@ -342373,10 +342375,9 @@ async function appendSessionLogImpl(sessionId, entry, url3, headers) {
342373
342375
  lastUuidMap.set(sessionId, serverLastUuid);
342374
342376
  logForDebugging(`Session 409: adopting server lastUuid=${serverLastUuid} from header, retrying entry ${entry.uuid}`);
342375
342377
  } else {
342376
- const sequential2 = getOrCreateSequential(sessionId);
342377
342378
  let logs2 = null;
342378
342379
  try {
342379
- logs2 = await sequential2(sessionId, url3, headers, true);
342380
+ logs2 = await fetchSessionLogsFromUrl(sessionId, url3, headers);
342380
342381
  } catch (fetchError) {
342381
342382
  logError2(new Error(`Session 409: fetch failed for session ${sessionId}, entry ${entry.uuid}: ${fetchError instanceof Error ? fetchError.message : String(fetchError)}`));
342382
342383
  logForDiagnosticsNoPII("error", "session_persist_409_fetch_fail");
package/dist/myclaude.mjs CHANGED
@@ -4,8 +4,8 @@
4
4
  // MACRO - build-time constants (injected by build.ts)
5
5
  // MACRO injected by build script
6
6
  globalThis.MACRO = {
7
- VERSION: "0.1.94",
8
- BUILD_TIME: "2026-07-18T06:27:57.445Z",
7
+ VERSION: "0.1.95",
8
+ BUILD_TIME: "2026-07-18T09:09:23.186Z",
9
9
  PACKAGE_URL: "@funnycode/myclaude",
10
10
  NATIVE_PACKAGE_URL: "@funnycode/myclaude",
11
11
  VERSION_CHANGELOG: '',
@@ -117484,7 +117484,7 @@ var package_default;
117484
117484
  var init_package = __esm(() => {
117485
117485
  package_default = {
117486
117486
  name: "@funnycode/myclaude",
117487
- version: "0.1.94",
117487
+ version: "0.1.95",
117488
117488
  private: false,
117489
117489
  description: "An open-source AI coding assistant in your terminal - powered by Claude",
117490
117490
  license: "MIT",
@@ -210582,7 +210582,9 @@ function createDumpPromptsFetch(agentIdOrSessionId) {
210582
210582
  } catch {}
210583
210583
  }
210584
210584
  })().catch((err2) => {
210585
- logForDebugging(`dumpPrompts.response handler unhandled rejection: ${err2}`, { level: "error" });
210585
+ try {
210586
+ logForDebugging(`dumpPrompts.response handler unhandled rejection: ${err2}`, { level: "error" });
210587
+ } catch {}
210586
210588
  });
210587
210589
  }
210588
210590
  return response;
@@ -342373,10 +342375,9 @@ async function appendSessionLogImpl(sessionId, entry, url3, headers) {
342373
342375
  lastUuidMap.set(sessionId, serverLastUuid);
342374
342376
  logForDebugging(`Session 409: adopting server lastUuid=${serverLastUuid} from header, retrying entry ${entry.uuid}`);
342375
342377
  } else {
342376
- const sequential2 = getOrCreateSequential(sessionId);
342377
342378
  let logs2 = null;
342378
342379
  try {
342379
- logs2 = await sequential2(sessionId, url3, headers, true);
342380
+ logs2 = await fetchSessionLogsFromUrl(sessionId, url3, headers);
342380
342381
  } catch (fetchError) {
342381
342382
  logError2(new Error(`Session 409: fetch failed for session ${sessionId}, entry ${entry.uuid}: ${fetchError instanceof Error ? fetchError.message : String(fetchError)}`));
342382
342383
  logForDiagnosticsNoPII("error", "session_persist_409_fetch_fail");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funnycode/myclaude",
3
- "version": "0.1.94",
3
+ "version": "0.1.95",
4
4
  "private": false,
5
5
  "description": "An open-source AI coding assistant in your terminal - powered by Claude",
6
6
  "license": "MIT",