@dotsetlabs/bellwether 0.10.0 → 0.10.1

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
@@ -2,6 +2,16 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [0.10.1] - 2026-01-24
6
+
7
+ ### Fixes
8
+
9
+ - **Fixed missing cloud upload fields**: Added missing performance and security fields to cloud baseline uploads
10
+ - `baselineP50Ms`, `baselineP95Ms`, `baselineSuccessRate` for latency baselines
11
+ - `performanceConfidence` object with sample counts and confidence levels
12
+ - `securityFingerprint` for security testing results
13
+ - Previously these fields were collected during check but not included in cloud uploads
14
+
5
15
  ## [0.10.0] - 2026-01-24
6
16
 
7
17
  ### Features
@@ -224,6 +224,11 @@ function buildCapabilities(baseline, discovery) {
224
224
  responseFingerprint: tool.responseFingerprint,
225
225
  inferredOutputSchema: tool.inferredOutputSchema,
226
226
  errorPatterns: tool.errorPatterns,
227
+ baselineP50Ms: tool.baselineP50Ms,
228
+ baselineP95Ms: tool.baselineP95Ms,
229
+ baselineSuccessRate: tool.baselineSuccessRate,
230
+ performanceConfidence: tool.performanceConfidence,
231
+ securityFingerprint: tool.securityFingerprint,
227
232
  }));
228
233
  // Build resource capabilities (from discovery if available)
229
234
  let resources;
@@ -13,6 +13,7 @@
13
13
  */
14
14
  import type { WorkflowSignature } from '../baseline/types.js';
15
15
  import type { ResponseFingerprint, InferredSchema, ErrorPattern } from '../baseline/response-fingerprint.js';
16
+ import type { SecurityFingerprint } from '../security/types.js';
16
17
  /**
17
18
  * Assertion type for cloud API.
18
19
  * Maps to: expects (positive), requires (critical), warns (negative), notes (informational)
@@ -94,6 +95,25 @@ export interface ToolCapability {
94
95
  inferredOutputSchema?: InferredSchema;
95
96
  /** Normalized error patterns observed during testing */
96
97
  errorPatterns?: ErrorPattern[];
98
+ /** Baseline p50 latency in milliseconds */
99
+ baselineP50Ms?: number;
100
+ /** Baseline p95 latency in milliseconds */
101
+ baselineP95Ms?: number;
102
+ /** Baseline success rate (0-1) */
103
+ baselineSuccessRate?: number;
104
+ /** Statistical confidence for performance baselines */
105
+ performanceConfidence?: {
106
+ sampleCount: number;
107
+ successfulSamples: number;
108
+ validationSamples: number;
109
+ totalTests: number;
110
+ standardDeviation: number;
111
+ coefficientOfVariation: number;
112
+ confidenceLevel: 'low' | 'medium' | 'high';
113
+ recommendation?: string;
114
+ };
115
+ /** Security testing fingerprint with findings and risk score */
116
+ securityFingerprint?: SecurityFingerprint;
97
117
  }
98
118
  /**
99
119
  * Resource capability from discovery.
package/dist/version.js CHANGED
@@ -30,7 +30,7 @@ function getPackageVersion() {
30
30
  }
31
31
  catch {
32
32
  // Fallback version - should match package.json
33
- return '0.10.0';
33
+ return '0.10.1';
34
34
  }
35
35
  }
36
36
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dotsetlabs/bellwether",
3
- "version": "0.10.0",
3
+ "version": "0.10.1",
4
4
  "description": "Structural drift detection for MCP servers. Zero-LLM check mode by default, optional multi-persona exploration with OpenAI/Anthropic. Auto-generate CONTRACT.md or AGENTS.md documentation.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",