agentic-qe 3.7.12 → 3.7.13

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.
@@ -226,6 +226,11 @@
226
226
  "default": 0,
227
227
  "description": "Trust tier level for validation. 0=Declarative (SKILL.md only), 1=Structured (+ JSON output schema), 2=Validated (+ executable validator), 3=Evaluated (+ evaluation test suite)"
228
228
  },
229
+ "skill_intent": {
230
+ "type": "string",
231
+ "enum": ["capability_uplift", "encoded_preference", "hybrid"],
232
+ "description": "Skill intent classification. 'capability_uplift' = fills gaps in base model abilities, needs regression testing as models improve. 'encoded_preference' = automates established workflows/standards, needs fidelity verification. 'hybrid' = combines both intents."
233
+ },
229
234
  "validation": {
230
235
  "type": "object",
231
236
  "description": "Validation configuration for Trust But Verify system (required for trust_tier >= 1)",
@@ -904,7 +904,7 @@
904
904
  },
905
905
  "metadata": {
906
906
  "generatedBy": "Agentic QE Fleet",
907
- "fleetVersion": "3.7.12",
907
+ "fleetVersion": "3.7.13",
908
908
  "manifestVersion": "1.3.0",
909
909
  "lastUpdated": "2026-02-04T00:00:00.000Z",
910
910
  "contributors": [
package/CHANGELOG.md CHANGED
@@ -5,6 +5,19 @@ All notable changes to the Agentic QE project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [3.7.13] - 2026-03-07
9
+
10
+ ### Added
11
+
12
+ - **Trigger Optimizer** — Analyzes skill descriptions and tags to detect false positive/negative activation risks. Calculates Jaccard similarity across the skill fleet, identifies confusable skills, and generates actionable suggestions to improve trigger precision.
13
+ - **Version Comparator** — A/B testing between skill versions using Cohen's d effect size and confidence scoring. Produces per-test-case comparisons and Markdown reports for data-driven skill improvement decisions.
14
+ - **Skill Intent Classification** — New `skill_intent` frontmatter field classifies skills as `capability_uplift` (fills model gaps), `encoded_preference` (encodes team workflows), or `hybrid`. Drives different validation strategies per intent type.
15
+
16
+ ### Changed
17
+
18
+ - ADR-056 updated with Phase 6 (Blog-Inspired Improvements) documenting the three new features.
19
+ - Validation module index now exports TriggerOptimizer, VersionComparator, and all associated types.
20
+
8
21
  ## [3.7.12] - 2026-03-06
9
22
 
10
23
  ### Fixed
@@ -226,6 +226,11 @@
226
226
  "default": 0,
227
227
  "description": "Trust tier level for validation. 0=Declarative (SKILL.md only), 1=Structured (+ JSON output schema), 2=Validated (+ executable validator), 3=Evaluated (+ evaluation test suite)"
228
228
  },
229
+ "skill_intent": {
230
+ "type": "string",
231
+ "enum": ["capability_uplift", "encoded_preference", "hybrid"],
232
+ "description": "Skill intent classification. 'capability_uplift' = fills gaps in base model abilities, needs regression testing as models improve. 'encoded_preference' = automates established workflows/standards, needs fidelity verification. 'hybrid' = combines both intents."
233
+ },
229
234
  "validation": {
230
235
  "type": "object",
231
236
  "description": "Validation configuration for Trust But Verify system (required for trust_tier >= 1)",