bc-telemetry-buddy-mcp 3.1.13 → 3.1.15

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 CHANGED
@@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [3.1.15] - 2026-03-03
11
+
12
+ ### Changed
13
+ - **Enforced schema discovery before querying**: `get_event_catalog` now returns a `requiredNextStep` field prompting the agent to call `get_event_field_samples()` for each event ID before constructing KQL. `get_event_field_samples` now returns a `nextStep` confirmation field once schema is validated. `query_telemetry` injects a `schemaWarning` into results when `customDimensions` fields are referenced without prior schema validation.
14
+ - **Strengthened tool descriptions**: All three discovery/query tools carry explicit STEP 1 / STEP 2 / STEP 3 labels and token-cost warnings explaining why skipping `get_event_field_samples` wastes tokens (wrong TIMESPAN vs number types cause 3-5× more tokens to fix).
15
+ - **New helper**: `extractCustomDimensionsFields()` in `toolHandlers.ts` detects `customDimensions.field` and `customDimensions["field"]` references in submitted KQL to drive the schema warning.
16
+
17
+ ## [3.1.14] - 2026-03-02
18
+
19
+ ### Changed
20
+ - **Per-Run Investigation Documents**: Each agent run now creates a separate investigation document (`docs/YYYY-MM-DD-HHmm-<agentName>.md`) instead of appending to a single daily file. Date and time in the filename ensure chronological ordering across runs.
21
+ - **File Header with Timestamp**: Each investigation doc header now includes both date and time (e.g., `Investigation Report — 2026-03-02 14:30 UTC`).
22
+
23
+ ### Deprecated
24
+ - `appendToDailyReport` function — replaced by `createInvestigationReport`. The old function still works but delegates to the new one.
25
+
10
26
  ## [3.1.13] - 2026-03-02
11
27
 
12
28
  ### Improved