Display model, behavior, agent and usage based on server config/updated message#45
Merged
joaopluigi merged 10 commits intomainfrom Sep 26, 2025
Merged
Display model, behavior, agent and usage based on server config/updated message#45joaopluigi merged 10 commits intomainfrom
config/updated message#45joaopluigi merged 10 commits intomainfrom
Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR introduces centralized state management for the ECA plugin with real-time display updates based on server messages. The changes create a new State object that tracks configuration, usage, and tool information, while refactoring the sidebar to display this data dynamically.
- Implements centralized state management via new
eca.Stateobject - Refactors sidebar to display model/behavior selection and MCP count in a config container
- Moves usage and status information to a combined usage container with extmarks
Reviewed Changes
Copilot reviewed 7 out of 7 changed files in this pull request and generated 3 comments.
Show a summary per file
| File | Description |
|---|---|
| lua/eca/state.lua | New state management module handling server message processing and configuration tracking |
| lua/eca/sidebar.lua | Major refactor replacing status container with config container and updating usage display logic |
| lua/eca/server.lua | Minor cleanup removing unused capabilities field and fixing message tracking |
| lua/eca/observer.lua | Updates subscription ID type from integer to string |
| lua/eca/mediator.lua | Adds state dependency and accessor methods for configuration and usage data |
| lua/eca/init.lua | Integrates state object initialization with mediator |
| lua/eca/commands.lua | Adds new EcaServerMessages command for debugging server communication |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
ericdallo
approved these changes
Sep 26, 2025
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.
Context
eca.Stateobject for centralized state management, passed to the mediator for accessing configuration, usage, and tool information.configcontainer to the sidebar, displaying selected model, behavior, and MCP count.EcaServerMessagesuser command, enabling users to interactively inspect messages sent to and received from the ECA server via a picker interface.Before
After