micro-models-agent 0.56.5 → 0.57.0
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 +13 -0
- package/dist/main.js +457 -324
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,19 @@ All notable changes to Micro Models Agent (MMA) will be documented in this file.
|
|
|
4
4
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/).
|
|
6
6
|
|
|
7
|
+
## [0.57.0] - 2026-08-28
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
- **MCP**: lazy connect — server connections deferred to first tool call. Startup no longer blocks on unreachable MCP servers (e.g. context7 offline). Discovery runs in background with 5s timeout.
|
|
11
|
+
- **Updater**: `checkOnStart` and `autoInstall` disabled by default. Reduced `waitForIdle` timeout from 130s to 10s.
|
|
12
|
+
- **Config**: `updater.checkOnStart` default changed from `true` to `false`
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
- **MCP**: HTTP request timeouts (10s) on `connectSSE`, `listToolsHTTP`, `callToolHTTP`
|
|
16
|
+
- **MCP**: `failedServers` tracking — servers that fail discovery are not retried
|
|
17
|
+
- **MCP**: placeholder `connect` tool for not-yet-discovered servers (LLM can trigger lazy discovery)
|
|
18
|
+
- **Reasoning**: persistent disk cache (`~/.mma/reasoning-cache.json`) with 24h TTL — avoids re-probing LLM on every restart
|
|
19
|
+
|
|
7
20
|
## [0.56.5] - 2026-08-27
|
|
8
21
|
|
|
9
22
|
### Fixed
|