genbox 1.0.238 → 1.0.240

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.
@@ -146,9 +146,9 @@ async function startLocalDaemon() {
146
146
  const { spawn } = await import('child_process');
147
147
  debugLog('localDaemon', 'Starting local daemon');
148
148
  try {
149
- // Use npx to run genbox-agent (it's installed as a dependency)
149
+ // Use npx to run genbox-agent@latest to ensure users get updates
150
150
  // --native runs in local mode, --no-sync disables cloud sync
151
- const daemonProcess = spawn('npx', ['genbox-agent', '--native', '--no-sync'], {
151
+ const daemonProcess = spawn('npx', ['genbox-agent@latest', '--native', '--no-sync'], {
152
152
  detached: true,
153
153
  stdio: ['ignore', 'ignore', 'ignore'],
154
154
  cwd: process.cwd(),