This repository was archived by the owner on Mar 21, 2026. It is now read-only.
feat: Agent Studio integration with real agent data - #47
Merged
Conversation
- Add EncryptedSessionStoreWrapper for transparent session encryption - Add EncryptedCheckpointStoreWrapper for transparent checkpoint encryption - Use envelope encryption with AAD (thread_id/session_id) - Add base64 dependency for storing encrypted data in session state - Add 3 unit tests for encrypted session operations - Wire encryption crate as optional dependency with 'encryption' feature
- Add integration module with bridges for agents, sessions, and trajectories - AgentBridge syncs AgentFactory templates to dashboard state - SessionBridge syncs SessionStore data to dashboard sessions/messages - TrajectoryBridge converts trajectory steps to trace entries - DashboardBridge combines all bridges for unified sync - Add demo data function for development/testing - Add optional 'agents' feature flag for integration
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Summary
Connect the Agent Studio dashboard to real agent data from the agents crate.
Changes
New Integration Module (
crates/dashboard/src/integration.rs)Feature Flag
Usage Example
Testing
cargo check -p rust-ai-agents-dashboard --features agents- with integrationcargo check -p rust-ai-agents-dashboard- without integration (default)cargo clippycleanRelated