@funnycode/myclaude 0.1.191 → 0.1.193

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.191",
8
- BUILD_TIME: "2026-08-10T09:03:17.944Z",
7
+ VERSION: "0.1.193",
8
+ BUILD_TIME: "2026-08-12T06:44:36.937Z",
9
9
  PACKAGE_URL: "@funnycode/myclaude",
10
10
  NATIVE_PACKAGE_URL: "@funnycode/myclaude",
11
11
  VERSION_CHANGELOG: '',
@@ -117157,7 +117157,7 @@ var package_default;
117157
117157
  var init_package = __esm(() => {
117158
117158
  package_default = {
117159
117159
  name: "@funnycode/myclaude",
117160
- version: "0.1.191",
117160
+ version: "0.1.193",
117161
117161
  private: false,
117162
117162
  description: "An open-source AI coding assistant in your terminal - powered by Claude",
117163
117163
  license: "MIT",
@@ -407102,8 +407102,18 @@ function getSteps() {
407102
407102
  }
407103
407103
  const cwd2 = getCwd();
407104
407104
  const fs13 = getFsImplementation();
407105
- const hasClaudeMd = fs13.existsSync(join105(cwd2, "CLAUDE.md"));
407106
- const isWorkspaceDirEmpty = isDirEmpty(cwd2);
407105
+ let hasClaudeMd = false;
407106
+ let isWorkspaceDirEmpty = true;
407107
+ try {
407108
+ hasClaudeMd = fs13.existsSync(join105(cwd2, "CLAUDE.md"));
407109
+ } catch {
407110
+ hasClaudeMd = false;
407111
+ }
407112
+ try {
407113
+ isWorkspaceDirEmpty = isDirEmpty(cwd2);
407114
+ } catch {
407115
+ isWorkspaceDirEmpty = true;
407116
+ }
407107
407117
  const claudeMdPath = join105(cwd2, "CLAUDE.md");
407108
407118
  try {
407109
407119
  cachedClaudeMdMtime = hasClaudeMd ? getFileModificationTime(claudeMdPath) : -1;
@@ -563661,7 +563671,7 @@ function migrateBypassPermissionsAcceptedToSettings() {
563661
563671
  }
563662
563672
  try {
563663
563673
  if (!hasSkipDangerousModePermissionPrompt()) {
563664
- const effectiveSkip = ["userSettings", "localSettings", "flagSettings", "policySettings"].map((source) => getSettingsForSource(source)?.skipDangerousModePermissionPrompt).find((value) => value !== undefined);
563674
+ const effectiveSkip = ["userSettings", "localSettings"].map((source) => getSettingsForSource(source)?.skipDangerousModePermissionPrompt).find((value) => value !== undefined);
563665
563675
  const userExplicitlyOptedOut = effectiveSkip === false;
563666
563676
  if (!userExplicitlyOptedOut) {
563667
563677
  updateSettingsForSource("userSettings", {
@@ -563754,7 +563764,10 @@ function migrateEnableAllProjectMcpServersToSettings() {
563754
563764
  updates.disabledMcpjsonServers = finalDisabledServers;
563755
563765
  }
563756
563766
  try {
563757
- updateSettingsForSource("localSettings", updates);
563767
+ const updateResult = updateSettingsForSource("localSettings", updates);
563768
+ if (updateResult?.error) {
563769
+ throw updateResult.error;
563770
+ }
563758
563771
  } catch (error49) {
563759
563772
  logError2(new Error(`Failed to migrate MCP server settings to local config: ${error49}`));
563760
563773
  throw error49;
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.191",
8
- BUILD_TIME: "2026-08-10T09:03:17.944Z",
7
+ VERSION: "0.1.193",
8
+ BUILD_TIME: "2026-08-12T06:44:36.937Z",
9
9
  PACKAGE_URL: "@funnycode/myclaude",
10
10
  NATIVE_PACKAGE_URL: "@funnycode/myclaude",
11
11
  VERSION_CHANGELOG: '',
@@ -117157,7 +117157,7 @@ var package_default;
117157
117157
  var init_package = __esm(() => {
117158
117158
  package_default = {
117159
117159
  name: "@funnycode/myclaude",
117160
- version: "0.1.191",
117160
+ version: "0.1.193",
117161
117161
  private: false,
117162
117162
  description: "An open-source AI coding assistant in your terminal - powered by Claude",
117163
117163
  license: "MIT",
@@ -407102,8 +407102,18 @@ function getSteps() {
407102
407102
  }
407103
407103
  const cwd2 = getCwd();
407104
407104
  const fs13 = getFsImplementation();
407105
- const hasClaudeMd = fs13.existsSync(join105(cwd2, "CLAUDE.md"));
407106
- const isWorkspaceDirEmpty = isDirEmpty(cwd2);
407105
+ let hasClaudeMd = false;
407106
+ let isWorkspaceDirEmpty = true;
407107
+ try {
407108
+ hasClaudeMd = fs13.existsSync(join105(cwd2, "CLAUDE.md"));
407109
+ } catch {
407110
+ hasClaudeMd = false;
407111
+ }
407112
+ try {
407113
+ isWorkspaceDirEmpty = isDirEmpty(cwd2);
407114
+ } catch {
407115
+ isWorkspaceDirEmpty = true;
407116
+ }
407107
407117
  const claudeMdPath = join105(cwd2, "CLAUDE.md");
407108
407118
  try {
407109
407119
  cachedClaudeMdMtime = hasClaudeMd ? getFileModificationTime(claudeMdPath) : -1;
@@ -563661,7 +563671,7 @@ function migrateBypassPermissionsAcceptedToSettings() {
563661
563671
  }
563662
563672
  try {
563663
563673
  if (!hasSkipDangerousModePermissionPrompt()) {
563664
- const effectiveSkip = ["userSettings", "localSettings", "flagSettings", "policySettings"].map((source) => getSettingsForSource(source)?.skipDangerousModePermissionPrompt).find((value) => value !== undefined);
563674
+ const effectiveSkip = ["userSettings", "localSettings"].map((source) => getSettingsForSource(source)?.skipDangerousModePermissionPrompt).find((value) => value !== undefined);
563665
563675
  const userExplicitlyOptedOut = effectiveSkip === false;
563666
563676
  if (!userExplicitlyOptedOut) {
563667
563677
  updateSettingsForSource("userSettings", {
@@ -563754,7 +563764,10 @@ function migrateEnableAllProjectMcpServersToSettings() {
563754
563764
  updates.disabledMcpjsonServers = finalDisabledServers;
563755
563765
  }
563756
563766
  try {
563757
- updateSettingsForSource("localSettings", updates);
563767
+ const updateResult = updateSettingsForSource("localSettings", updates);
563768
+ if (updateResult?.error) {
563769
+ throw updateResult.error;
563770
+ }
563758
563771
  } catch (error49) {
563759
563772
  logError2(new Error(`Failed to migrate MCP server settings to local config: ${error49}`));
563760
563773
  throw error49;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@funnycode/myclaude",
3
- "version": "0.1.191",
3
+ "version": "0.1.193",
4
4
  "private": false,
5
5
  "description": "An open-source AI coding assistant in your terminal - powered by Claude",
6
6
  "license": "MIT",