gherkin-ai 2.6.0 → 2.6.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/README.md CHANGED
@@ -8,7 +8,7 @@
8
8
 
9
9
  ---
10
10
 
11
- ## 🌟 Strategic Capabilities (`v2.6.0` Stable Release)
11
+ ## 🌟 Strategic Capabilities (`v2.6.1` Stable Patch Release)
12
12
 
13
13
  While basic AI spec tools only generate text prompts, `gherkin-ai` acts as an **executable contract and verification harness** between Product Intent, AI Agents (Cursor, Claude Code, Windsurf, Antigravity), Code Implementation, and CI/CD Quality Gates:
14
14
 
@@ -30,7 +30,7 @@ While basic AI spec tools only generate text prompts, `gherkin-ai` acts as an **
30
30
 
31
31
  ---
32
32
 
33
- ## 📥 Installation & Execution (`v2.6.0`)
33
+ ## 📥 Installation & Execution (`v2.6.1`)
34
34
 
35
35
  You can use `gherkin-ai` via global `npm` installation, on-demand zero-install `npx`, or as a project local dev dependency:
36
36
 
@@ -42,7 +42,7 @@ export interface ISnapshotStore<T> {
42
42
  Feature: ${parsed.featureName}
43
43
  Architecture: ${arch.name}
44
44
  Stack: ${config.stack.language} + ${config.stack.framework} + ${config.stack.orm}
45
- Generated by gherkin-ai CLI v2.6.0
45
+ Generated by gherkin-ai CLI v2.6.1
46
46
  ========================================================================== */
47
47
 
48
48
  import { z } from '${spec.validationPackage.split('@')[0]}';
@@ -63,7 +63,7 @@ function handleJsonRpcMessage(message) {
63
63
  },
64
64
  serverInfo: {
65
65
  name: 'gherkin-ai-mcp',
66
- version: '2.6.0'
66
+ version: '2.6.1'
67
67
  }
68
68
  });
69
69
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gherkin-ai",
3
- "version": "2.6.0",
3
+ "version": "2.6.1",
4
4
  "description": "Enterprise-Grade Closed-Loop Agentic Orchestration Engine & Spec-Driven Verification Framework for AI Coding Agents.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -89,6 +89,7 @@
89
89
  "@types/node": "^20.14.0",
90
90
  "ts-node": "^10.9.2",
91
91
  "typescript": "^5.4.5",
92
- "vitest": "^4.1.11"
92
+ "vitest": "^4.1.11",
93
+ "@vitest/coverage-v8": "^4.1.11"
93
94
  }
94
95
  }