@tryfridayai/cli 0.2.0 → 0.2.1

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
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.2.0",
6
+ "version": "0.2.1",
7
7
  "description": "Friday AI — autonomous agent for your terminal. Chat, build apps, research, automate tasks.",
8
8
  "type": "module",
9
9
  "bin": {
@@ -260,7 +260,7 @@ export default async function chat(args) {
260
260
  console.log(`Starting Friday with workspace: ${workspacePath}`);
261
261
  }
262
262
 
263
- const backend = spawn('node', [serverScript], {
263
+ const backend = spawn(process.execPath, [serverScript], {
264
264
  cwd: runtimeDir,
265
265
  env,
266
266
  stdio: ['pipe', 'pipe', 'pipe'],