fix(agent-office): bookmark field name + service_proxy contract + mktemp

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-04-28 09:09:05 +09:00
parent 7b3ddd1b19
commit 1d6c1b4329
4 changed files with 23 additions and 14 deletions

View File

@@ -2,7 +2,9 @@ import os
import sys
import tempfile
_TMP = tempfile.mktemp(suffix=".db")
_fd, _TMP = tempfile.mkstemp(suffix=".db")
os.close(_fd)
os.unlink(_TMP)
os.environ["AGENT_OFFICE_DB_PATH"] = _TMP
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))