You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replay observations and auto-approve pending calls on agent resume
- Add RunStore.observations_for_run to extract completed tool call
results from a persisted run for replay into a new run's context
- Add RunStore.pending_approval_for_run to detect last unresolved
approval request, auto-approving it on resume
- Pre-populate context observations from the prior run and count
replayed calls against the tool call budget
- Add --fresh-restart flag to skip replay and re-run from scratch
38 8:39a 🟣 Deterministic task clarification system added to TeaAgent
62
62
39 8:46a 🟣 Memory Catalog added to teaagent
63
63
S8 Add workspace memory catalog to teaagent — new MemoryCatalog feature with CLI, TUI, and agent prompt injection (May 8 at 8:46 AM)
64
-
**Investigated**: Staged git diff across all modified files in /Users/teee/dev/teaagent, covering the full scope of the memory catalog implementation.
64
+
40 8:57a 🟣 Deterministic task-based model routing added to teaagent
65
65
66
-
**Learned**: teaagent stores workspace memories as append-only JSONL at .teaagent/memory.jsonl. Search uses case-insensitive token intersection (all query tokens must appear in content+tags haystack). Agent runs automatically inject up to 5 matching memories into the model context dict under a "memories" key, which assemble_agent_prompt passes through alongside "observations" and "task_spec".
By default, resume replays already-completed `tool_call_completed` observations into the new run's context so the model does not have to redo prior tool calls. If the original run paused with `pending_approval`, the pending `call_id` is auto-added to the approval list and reported back as `auto_approved_call_id` in the response payload.
456
+
457
+
Pass `--fresh-restart` to skip replay and re-run the original task from scratch.
0 commit comments