From 2993f19a257095b7ccf95eddf4c9f1538203becb Mon Sep 17 00:00:00 2001 From: mawkone Date: Fri, 15 May 2026 10:28:25 -0700 Subject: [PATCH] fix(agent): correct missing workspaceRoot property in autoCommitAndDeploy --- vibn-agent-runner/src/agent-session-runner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vibn-agent-runner/src/agent-session-runner.ts b/vibn-agent-runner/src/agent-session-runner.ts index cbae5b3..390f59e 100644 --- a/vibn-agent-runner/src/agent-session-runner.ts +++ b/vibn-agent-runner/src/agent-session-runner.ts @@ -150,7 +150,7 @@ async function autoCommitAndDeploy( const commitMsg = `agent: ${task.slice(0, 72)}`; const msgFile = require("path").join( - opts.workspaceRoot, + opts.repoRoot || process.cwd(), ".git", "COMMIT_EDITMSG", );