vibecodingmachine-core 2026.2.20-423 → 2026.2.20-436

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibecodingmachine-core",
3
- "version": "2026.02.20-0423",
3
+ "version": "2026.02.20-0436",
4
4
  "description": "Shared core logic for Vibe Coding Machine IDE integration",
5
5
  "main": "src/index.cjs",
6
6
  "module": "src/index.js",
@@ -32,12 +32,7 @@ class UserDatabaseClient {
32
32
  }
33
33
 
34
34
  this.authToken = null;
35
- try {
36
- const chalk = require('chalk');
37
- console.log(chalk.gray(`UserDatabaseClient: Using API at ${this.apiBaseUrl}`));
38
- } catch (e) {
39
- console.log(`UserDatabaseClient: Using API at ${this.apiBaseUrl}`);
40
- }
35
+ // Removed logging to avoid duplicate messages during CLI startup
41
36
  }
42
37
 
43
38
  /**
@@ -14,7 +14,7 @@ class UserDatabase {
14
14
  // This is now ALWAYS the client version
15
15
  // The API server uses a separate UserDatabase class
16
16
  this.apiClient = new UserDatabaseClient()
17
- console.log('UserDatabase: Client mode - will make API requests to server')
17
+ // Removed logging to avoid duplicate messages during CLI startup
18
18
  }
19
19
 
20
20
  /**
package/src/index.cjs CHANGED
@@ -72,6 +72,7 @@ module.exports = {
72
72
  FeatureImplementer,
73
73
  logger,
74
74
  GCloudAuth,
75
+ errorReporter,
75
76
  ...repoHelpers,
76
77
  ...configHelpers,
77
78
  ...auditLogger,