bc-telemetry-buddy-mcp 3.1.2 → 3.1.4
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 +17 -0
- package/README.md +9 -0
- package/dist/cli.js +87 -83
- package/dist/server.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [3.1.4] - 2026-03-02
|
|
11
|
+
|
|
12
|
+
### Improved
|
|
13
|
+
- **Teams Adaptive Card Tables**: Agent notifications now convert markdown tables in the alert message to native Adaptive Card `Table` elements (schema 1.5) with styled headers and grid lines, instead of rendering them as plain text. Non-table text is preserved as `TextBlock` with markdown support.
|
|
14
|
+
- **CI-Aware Collapsible Groups**: Tool call execution in the ReAct loop is now wrapped in collapsible groups — `##[group]`/`##[endgroup]` in Azure DevOps, `::group::`/`::endgroup::` in GitHub Actions. Internal kusto/auth/cache logs are collapsed; tool names, reasoning, and result summaries stay visible at top level.
|
|
15
|
+
- **Retry Visibility**: LLM retry attempts (429/529/503 backoff) are now logged to `stdout` with a 🔄 icon so they appear in the normal pipeline output stream, not hidden in `stderr`.
|
|
16
|
+
|
|
17
|
+
## [3.1.3] - 2026-03-02
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
- **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.
|
|
21
|
+
|
|
22
|
+
### Improved
|
|
23
|
+
- **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
|
|
24
|
+
- **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`)
|
|
25
|
+
- **Run-All Agent Output**: Per-agent summary now includes tool call count, token stats, and executed actions
|
|
26
|
+
|
|
10
27
|
## [3.1.2] - 2026-03-02
|
|
11
28
|
|
|
12
29
|
### Added
|
package/README.md
CHANGED
|
@@ -344,6 +344,15 @@ cp -r node_modules/bc-telemetry-buddy-mcp/templates/agents/performance-monitorin
|
|
|
344
344
|
bctb-mcp agent run performance-monitoring --once
|
|
345
345
|
```
|
|
346
346
|
|
|
347
|
+
### CI/CD Pipeline Output
|
|
348
|
+
|
|
349
|
+
Agent runs produce structured, CI-friendly output:
|
|
350
|
+
|
|
351
|
+
- **Top-level visibility**: Iteration numbers, tool names, LLM reasoning, and result summaries (row/column counts, durations) are always visible
|
|
352
|
+
- **Collapsible detail groups**: Internal execution logs (Kusto authentication, cache operations, query URLs) are wrapped in collapsible sections — `##[group]`/`##[endgroup]` in Azure DevOps, `::group::`/`::endgroup::` in GitHub Actions
|
|
353
|
+
- **Retry visibility**: LLM API retries (429/529/503) are shown inline with backoff timing
|
|
354
|
+
- **Teams notifications**: Markdown tables in alert messages are automatically converted to native Adaptive Card `Table` elements for proper rendering in Teams
|
|
355
|
+
|
|
347
356
|
See the [User Guide](https://github.com/waldo1001/waldo.BCTelemetryBuddy/blob/main/docs/UserGuide.md#agentic-monitoring) for full docs including action types, state management, and troubleshooting.
|
|
348
357
|
|
|
349
358
|
## Features
|