← back to Yolo Agent
chore: macstudio3 migration — reconcile from mac2 + repoint paths (stevestudio2→macstudio3, node/npm/npx→/opt/homebrew)
2b7ab101087bf1938fac6e951db5d98d5b37db95 · 2026-07-03 08:08:22 -0700 · Steve
Files touched
Diff
commit 2b7ab101087bf1938fac6e951db5d98d5b37db95
Author: Steve <steve@designerwallcoverings.com>
Date: Fri Jul 3 08:08:22 2026 -0700
chore: macstudio3 migration — reconcile from mac2 + repoint paths (stevestudio2→macstudio3, node/npm/npx→/opt/homebrew)
---
server.js | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/server.js b/server.js
index 0155dcc..c859e1a 100644
--- a/server.js
+++ b/server.js
@@ -40,7 +40,7 @@ if (!AUTH_USER || !AUTH_PASS) {
const TASKS_DIR = path.join(__dirname, 'tasks');
const LOGS_DIR = path.join(__dirname, 'logs');
const HISTORY_DIR = path.join(__dirname, 'history');
-const CLAUDE_BIN = process.env.YOLO_CLAUDE_BIN || '/Users/stevestudio2/.local/bin/claude';
+const CLAUDE_BIN = process.env.YOLO_CLAUDE_BIN || '/Users/macstudio3/.local/bin/claude';
const MAX_HISTORY = 200;
const DEFAULT_COOLDOWN_SEC = 30;
const MAX_CONCURRENT_CLAUDE = 3; // CIRCUIT BREAKER: max parallel claude --print processes
@@ -89,7 +89,7 @@ let state = {
observations: [],
mode: 'queue', // 'queue' = pick from tasks/, 'repeat' = run same task, 'cron' = scheduled
repeatTask: null,
- allowedPaths: ['/Users/stevestudio2/Projects'],
+ allowedPaths: ['/Users/macstudio3/Projects'],
};
function observe(msg) {
@@ -257,7 +257,7 @@ function runClaudeTask(task) {
delete cleanEnv.CLAUDE_CODE_ENTRYPOINT;
const proc = spawn(CLAUDE_BIN, args, {
- cwd: '/Users/stevestudio2/Projects',
+ cwd: '/Users/macstudio3/Projects',
env: cleanEnv,
stdio: ['pipe', 'pipe', 'pipe'],
});
← 8358fc1 untrack logs + done-task archive (approved cleanup)
·
back to Yolo Agent
·
(newest)