@obtoai/agent-bridge 0.1.0-beta.13 → 0.1.0-beta.14
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 +1 -1
- package/src/external-scanner.js +1 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@obtoai/agent-bridge",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.14",
|
|
4
4
|
"description": "Local consumer for the OBTO Agent Bridge. Receives bridge events over SSE and drives a coding agent (Claude Code or OpenAI Codex) on your machine.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "OBTO Inc.",
|
package/src/external-scanner.js
CHANGED
|
@@ -296,9 +296,8 @@ const scanCodex = () => {
|
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
const tail = readTail(filePath);
|
|
299
|
-
const head = readHead(filePath);
|
|
300
299
|
const lastMsg = extractLastMessage(tail);
|
|
301
|
-
const title =
|
|
300
|
+
const title = extractTitleFromFile(filePath);
|
|
302
301
|
out.push({
|
|
303
302
|
source: 'codex',
|
|
304
303
|
sessionId,
|