@openeryc/pi-coding-agent 0.75.52 → 0.75.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist/core/agent-session.d.ts +4 -2
- package/dist/core/agent-session.d.ts.map +1 -1
- package/dist/core/agent-session.js +22 -4
- package/dist/core/agent-session.js.map +1 -1
- package/dist/core/mcp/manager.d.ts +4 -0
- package/dist/core/mcp/manager.d.ts.map +1 -1
- package/dist/core/mcp/manager.js +32 -1
- package/dist/core/mcp/manager.js.map +1 -1
- package/dist/modes/interactive/interactive-mode.d.ts.map +1 -1
- package/dist/modes/interactive/interactive-mode.js +9 -7
- package/dist/modes/interactive/interactive-mode.js.map +1 -1
- package/examples/extensions/custom-provider-anthropic/package-lock.json +2 -2
- package/examples/extensions/custom-provider-anthropic/package.json +1 -1
- package/examples/extensions/custom-provider-gitlab-duo/package.json +1 -1
- package/examples/extensions/sandbox/package-lock.json +2 -2
- package/examples/extensions/sandbox/package.json +1 -1
- package/examples/extensions/with-deps/package-lock.json +2 -2
- package/examples/extensions/with-deps/package.json +1 -1
- package/npm-shrinkwrap.json +12 -12
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.75.54] - 2026-05-31
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
- MCP server startup now connects all servers in parallel (`Promise.allSettled`) instead of sequentially, dramatically reducing startup time when multiple servers are configured.
|
|
7
|
+
- Toggling a server via `/mcp` now only stops/starts that single server instead of restarting all servers.
|
|
8
|
+
|
|
9
|
+
## [0.75.53] - 2026-05-31
|
|
10
|
+
|
|
11
|
+
### Fixed
|
|
12
|
+
- `/mcp` selector now fetches fresh config on each rebuild, so toggling a server on/off immediately updates the displayed status without needing Esc+reopen.
|
|
13
|
+
|
|
3
14
|
## [0.75.52] - 2026-05-30
|
|
4
15
|
|
|
5
16
|
### Added
|
|
@@ -475,8 +475,10 @@ export declare class AgentSession {
|
|
|
475
475
|
bindExtensions(bindings: ExtensionBindings): Promise<void>;
|
|
476
476
|
private _initMcp;
|
|
477
477
|
private _refreshMcpTools;
|
|
478
|
-
/** Reload MCP servers after config changes (e.g. toggle enabled).
|
|
479
|
-
|
|
478
|
+
/** Reload MCP servers after config changes (e.g. toggle enabled).
|
|
479
|
+
* If changedServer is provided, only that server is started/stopped
|
|
480
|
+
* instead of restarting all servers. */
|
|
481
|
+
reloadMcp(changedServer?: string): Promise<void>;
|
|
480
482
|
/** Get MCP connection statuses (for UI display) */
|
|
481
483
|
getMcpStatuses(): Array<{
|
|
482
484
|
serverName: string;
|