feat(ui): load persisted conversation history in agent detail view#1175
Closed
geoffjay wants to merge 3 commits intoissue-1161from
Closed
feat(ui): load persisted conversation history in agent detail view#1175geoffjay wants to merge 3 commits intoissue-1161from
geoffjay wants to merge 3 commits intoissue-1161from
Conversation
Owner
Author
|
This change is part of the following stack: Change managed by git-spice. |
8 tasks
This was referenced Apr 18, 2026
e69d23e to
2eba175
Compare
… persistence
Adds tests/conversation_persistence.rs with 26 integration tests covering:
- Storage layer: since/until cursor filtering, combined time windows,
ascending ordering, session isolation, cross-agent delete isolation,
all-event-type round-trips, and metadata round-trips.
- REST API: GET /agents/{id}/conversation (events, limit/has_more,
event_type filter, session filter, after/before cursors, 404, empty),
GET summary, single-event retrieval with wrong-agent/unknown-id 404s,
DELETE /agents/{id}/conversation (204, 404, cross-agent isolation,
idempotent), and count accuracy.
Also adds DELETE /agents/{id}/conversation endpoint (204 No Content) to
api.rs and urlencoding dev-dependency to Cargo.toml.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
feat(ui): load persisted conversation history in agent detail view
test(orchestrator): add end-to-end integration tests for conversation persistence
test(orchestrator): add end-to-end integration tests for conversation persistence
Adds tests/conversation_persistence.rs with 26 integration tests covering:
ascending ordering, session isolation, cross-agent delete isolation,
all-event-type round-trips, and metadata round-trips.
event_type filter, session filter, after/before cursors, 404, empty),
GET summary, single-event retrieval with wrong-agent/unknown-id 404s,
DELETE /agents/{id}/conversation (204, 404, cross-agent isolation,
idempotent), and count accuracy.
Also adds DELETE /agents/{id}/conversation endpoint (204 No Content) to
api.rs and urlencoding dev-dependency to Cargo.toml.
Co-Authored-By: Claude Sonnet 4.6 noreply@anthropic.com
Merge pull request #1174 from geoffjay/issue-1165
test(orchestrator): end-to-end integration tests for conversation persistence