From 2bb776f0dd65d91c27af46caf73259d55cc8e455 Mon Sep 17 00:00:00 2001 From: Matt Huntington Date: Tue, 7 Apr 2026 19:06:49 +0000 Subject: [PATCH] log when prompt completed --- server.js | 1 + 1 file changed, 1 insertion(+) diff --git a/server.js b/server.js index 920e2c5..790a3b5 100644 --- a/server.js +++ b/server.js @@ -19,6 +19,7 @@ app.post('/prompt', (req, res)=>{ `cd /home/matt/pathfinder && claude -p "${req.body.content}" ${resumeFlag} --output-format json --allowedTools "Bash(*)" "Read(*)" "Write(*)" "Edit(*)"`, { encoding: 'utf-8', timeout: 1200000 } ); + console.log('completed'); fs.writeFileSync('.env', `SESSIONID="${JSON.parse(result).session_id}"`, 'utf8'); res.json(JSON.parse(result))