Skip to content

Commit abcb61b

Browse files
authored
chore(symposium-acp-agent): release v2.0.0
1 parent 1af00b1 commit abcb61b

File tree

5 files changed

+50
-5
lines changed

5 files changed

+50
-5
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/symposium-acp-agent/CHANGELOG.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,44 @@
11
# Changelog
22

3+
## [2.0.0](https://github.com/symposium-dev/symposium/compare/symposium-acp-agent-v1.3.0...symposium-acp-agent-v2.0.0) - 2026-01-21
4+
5+
### Added
6+
7+
- improve config mode UI with better markdown formatting
8+
- unify initial setup with config mode
9+
- wire ConfigAgent into main.rs run command
10+
- add ConfigAgent tests and mockable registry
11+
- add pause/resume protocol for config mode
12+
- add MenuAction enum for smarter menu redisplay
13+
- add ConfigModeActor for interactive config phone tree UI
14+
- detect /symposium:config command and enter config mode
15+
- inject /symposium:config command into AvailableCommandsUpdate
16+
- forward session-bound messages to conductors
17+
- three-actor ConfigAgent architecture
18+
- install sparkle via cargo-binstall instead of bundling
19+
20+
### Fixed
21+
22+
- --acp
23+
- add --acp flag to sparkle-mcp proxy invocation
24+
25+
### Other
26+
27+
- use SAVE/CANCEL instead of DONE/CANCEL
28+
- move actor functions to &mut self methods
29+
- use async control flow as state machine
30+
- use regex for move command parsing
31+
- route conductor messages through ConfigAgent
32+
- WIP
33+
- Use AcpAgent::from_str
34+
- resolve_extension should use registry extensions
35+
- Resolve always on the Rust side
36+
- Add a proxy-shim command and always return and expect registry entries
37+
- Some rearranging to move more of the notions of builtin proxies out of symposium.rs and into just main.rs
38+
- Rename ProxySource::McpServer to ProxySource::AcpProxy, and fix tests
39+
- Fix custom extensions by passing json
40+
- add integration test for cargo binstall workflow
41+
342
## [1.3.0](https://github.com/symposium-dev/symposium/compare/symposium-acp-agent-v1.2.0...symposium-acp-agent-v1.3.0) - 2026-01-08
443

544
### Added

src/symposium-acp-agent/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "symposium-acp-agent"
3-
version = "1.3.0"
3+
version = "2.0.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Symposium-enriched ACP agent that wraps downstream agents with enhanced capabilities"
@@ -28,7 +28,7 @@ serde = { workspace = true }
2828
serde_json = { workspace = true }
2929

3030
# Symposium proxy components
31-
symposium-ferris = { path = "../symposium-ferris", version = "1.0.2" }
31+
symposium-ferris = { path = "../symposium-ferris", version = "1.1.0" }
3232
symposium-cargo = "0.2.0"
3333
# sparkle is now installed via cargo-binstall at runtime
3434

src/symposium-ferris/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.1.0](https://github.com/symposium-dev/symposium/compare/symposium-ferris-v1.0.2...symposium-ferris-v1.1.0) - 2026-01-21
11+
12+
### Added
13+
14+
- make symposium-ferris a standalone agent extension
15+
1016
## [1.0.2](https://github.com/symposium-dev/symposium/compare/symposium-ferris-v1.0.1...symposium-ferris-v1.0.2) - 2026-01-08
1117

1218
### Other

src/symposium-ferris/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "symposium-ferris"
3-
version = "1.0.2"
3+
version = "1.1.0"
44
edition = "2024"
55
license = "Apache-2.0"
66
description = "Ferris MCP server - helpful tools for Rust development"

0 commit comments

Comments
 (0)