@funnycode/myclaude 0.1.77 → 0.1.78

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.77",
8
- BUILD_TIME: "2026-07-15T15:45:57.247Z",
7
+ VERSION: "0.1.78",
8
+ BUILD_TIME: "2026-07-15T17:32:54.182Z",
9
9
  PACKAGE_URL: "@funnycode/myclaude",
10
10
  NATIVE_PACKAGE_URL: "@funnycode/myclaude",
11
11
  VERSION_CHANGELOG: '',
@@ -210045,7 +210045,7 @@ function dumpRequest(body, ts, state, filePath) {
210045
210045
  try {
210046
210046
  const req = jsonParse(body);
210047
210047
  addApiRequestToCache(req);
210048
- if (process.env.USER_TYPE !== "ant")
210048
+ if (process.env.USER_TYPE !== "ant" || process.env.DUMP_PROMPTS !== "1")
210049
210049
  return;
210050
210050
  const entries = [];
210051
210051
  const messages = req.messages ?? [];
@@ -210089,7 +210089,7 @@ function createDumpPromptsFetch(agentIdOrSessionId) {
210089
210089
  setImmediate(dumpRequest, init2.body, timestamp, state, filePath);
210090
210090
  }
210091
210091
  const response = await globalThis.fetch(input, init2);
210092
- if (timestamp && response.ok && process.env.USER_TYPE === "ant") {
210092
+ if (timestamp && response.ok && process.env.USER_TYPE === "ant" && process.env.DUMP_PROMPTS === "1") {
210093
210093
  const cloned = response.clone();
210094
210094
  (async () => {
210095
210095
  try {
@@ -300887,6 +300887,7 @@ var init_grove = __esm(() => {
300887
300887
  };
300888
300888
  } catch (err2) {
300889
300889
  logForDebugging(`Failed to fetch Grove notice config: ${err2}`);
300890
+ getGroveNoticeConfig.cache.clear?.();
300890
300891
  return { success: false };
300891
300892
  }
300892
300893
  });
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.77",
8
- BUILD_TIME: "2026-07-15T15:45:57.247Z",
7
+ VERSION: "0.1.78",
8
+ BUILD_TIME: "2026-07-15T17:32:54.182Z",
9
9
  PACKAGE_URL: "@funnycode/myclaude",
10
10
  NATIVE_PACKAGE_URL: "@funnycode/myclaude",
11
11
  VERSION_CHANGELOG: '',
@@ -210045,7 +210045,7 @@ function dumpRequest(body, ts, state, filePath) {
210045
210045
  try {
210046
210046
  const req = jsonParse(body);
210047
210047
  addApiRequestToCache(req);
210048
- if (process.env.USER_TYPE !== "ant")
210048
+ if (process.env.USER_TYPE !== "ant" || process.env.DUMP_PROMPTS !== "1")
210049
210049
  return;
210050
210050
  const entries = [];
210051
210051
  const messages = req.messages ?? [];
@@ -210089,7 +210089,7 @@ function createDumpPromptsFetch(agentIdOrSessionId) {
210089
210089
  setImmediate(dumpRequest, init2.body, timestamp, state, filePath);
210090
210090
  }
210091
210091
  const response = await globalThis.fetch(input, init2);
210092
- if (timestamp && response.ok && process.env.USER_TYPE === "ant") {
210092
+ if (timestamp && response.ok && process.env.USER_TYPE === "ant" && process.env.DUMP_PROMPTS === "1") {
210093
210093
  const cloned = response.clone();
210094
210094
  (async () => {
210095
210095
  try {
@@ -300887,6 +300887,7 @@ var init_grove = __esm(() => {
300887
300887
  };
300888
300888
  } catch (err2) {
300889
300889
  logForDebugging(`Failed to fetch Grove notice config: ${err2}`);
300890
+ getGroveNoticeConfig.cache.clear?.();
300890
300891
  return { success: false };
300891
300892
  }
300892
300893
  });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funnycode/myclaude",
3
- "version": "0.1.77",
3
+ "version": "0.1.78",
4
4
  "private": false,
5
5
  "description": "An open-source AI coding assistant in your terminal - powered by Claude",
6
6
  "license": "MIT",