bc-telemetry-buddy-mcp 3.1.2 → 3.1.3
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 +10 -0
- package/dist/cli.js +85 -83
- package/dist/server.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [3.1.3] - 2026-03-02
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- **JSON Repair for Agent Output**: `parseAgentOutput()` now repairs common LLM JSON mistakes (trailing commas, unescaped newlines, truncated output) instead of failing. Three-stage repair: strict parse → fix trailing commas/unescaped chars → close truncated brackets. Logs warning when repair succeeds.
|
|
14
|
+
|
|
15
|
+
### Improved
|
|
16
|
+
- **Verbose Agent Runtime Logging**: ReAct loop now logs iteration numbers, LLM token usage, reasoning text, tool call names with argument summaries, result previews (row counts for queries), and final assessment — making agent behavior visible in CI/CD pipeline output
|
|
17
|
+
- **KQL Query Logging**: Query success messages now include row count, column count, and duration (e.g., `1 table(s), 42 row(s), 8 column(s) in 1230ms`)
|
|
18
|
+
- **Run-All Agent Output**: Per-agent summary now includes tool call count, token stats, and executed actions
|
|
19
|
+
|
|
10
20
|
## [3.1.2] - 2026-03-02
|
|
11
21
|
|
|
12
22
|
### Added
|