vibecodingmachine-cli 1.0.1 → 1.0.2

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-cli",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Command-line interface for Vibe Coding Machine - Autonomous development",
5
5
  "main": "src/index.js",
6
6
  "bin": {
@@ -12,8 +12,8 @@ const fs = require('fs-extra');
12
12
  const path = require('path');
13
13
  const { spawn } = require('child_process');
14
14
  const chokidar = require('chokidar');
15
- const StatusManager = require('../../../../status_manager.js');
16
- const CLI_ENTRY_POINT = path.join(__dirname, '../../bin/allnightai.js');
15
+ // Status management will use in-process tracking instead of external file
16
+ const CLI_ENTRY_POINT = path.join(__dirname, '../../bin/vibecodingmachine.js');
17
17
  const { getProviderPreferences, getProviderDefinition } = require('../utils/provider-registry');
18
18
 
19
19
  // CRITICAL: Shared ProviderManager instance to track rate limits across all function calls