agentic-qe 3.7.1 → 3.7.2
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/.claude/skills/skills-manifest.json +1 -1
- package/README.md +65 -2
- package/package.json +1 -1
- package/scripts/generate-opencode-agents.ts +8 -1
- package/scripts/generate-opencode-skills.ts +1 -1
- package/v3/CHANGELOG.md +21 -0
- package/v3/dist/cli/bundle.js +1020 -259
- package/v3/dist/cli/commands/init.d.ts.map +1 -1
- package/v3/dist/cli/commands/init.js +2 -0
- package/v3/dist/cli/commands/init.js.map +1 -1
- package/v3/dist/cli/handlers/init-handler.d.ts +1 -0
- package/v3/dist/cli/handlers/init-handler.d.ts.map +1 -1
- package/v3/dist/cli/handlers/init-handler.js +2 -0
- package/v3/dist/cli/handlers/init-handler.js.map +1 -1
- package/v3/dist/init/kiro-installer.d.ts +70 -0
- package/v3/dist/init/kiro-installer.d.ts.map +1 -0
- package/v3/dist/init/kiro-installer.js +794 -0
- package/v3/dist/init/kiro-installer.js.map +1 -0
- package/v3/dist/init/orchestrator.d.ts.map +1 -1
- package/v3/dist/init/orchestrator.js +1 -0
- package/v3/dist/init/orchestrator.js.map +1 -1
- package/v3/dist/init/phases/09-assets.d.ts +3 -0
- package/v3/dist/init/phases/09-assets.d.ts.map +1 -1
- package/v3/dist/init/phases/09-assets.js +33 -0
- package/v3/dist/init/phases/09-assets.js.map +1 -1
- package/v3/dist/init/phases/phase-interface.d.ts +2 -0
- package/v3/dist/init/phases/phase-interface.d.ts.map +1 -1
- package/v3/dist/init/phases/phase-interface.js.map +1 -1
- package/v3/package.json +1 -1
package/README.md
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
**V3 (Main)** | [V2 Documentation](v2/docs/V2-README.md) | [Release Notes](docs/releases/README.md) | [Changelog](v3/CHANGELOG.md) | [Contributors](CONTRIBUTORS.md) | [Issues](https://github.com/proffesor-for-testing/agentic-qe/issues) | [Discussions](https://github.com/proffesor-for-testing/agentic-qe/discussions)
|
|
13
13
|
|
|
14
|
-
> **V3** brings Domain-Driven Design architecture, 13 bounded contexts, 60 specialized QE agents, TinyDancer intelligent model routing, ReasoningBank learning with Dream cycles, HNSW vector search, mathematical Coherence verification, full MinCut/Consensus integration across all 13 domains, RVF cognitive container integration with portable brain export/import, OpenCode multi-client support, and deep integration with [Claude Flow](https://github.com/ruvnet/claude-flow) and [Agentic Flow](https://github.com/ruvnet/agentic-flow).
|
|
14
|
+
> **V3** brings Domain-Driven Design architecture, 13 bounded contexts, 60 specialized QE agents, TinyDancer intelligent model routing, ReasoningBank learning with Dream cycles, HNSW vector search, mathematical Coherence verification, full MinCut/Consensus integration across all 13 domains, RVF cognitive container integration with portable brain export/import, OpenCode multi-client support, AWS Kiro IDE integration, and deep integration with [Claude Flow](https://github.com/ruvnet/claude-flow) and [Agentic Flow](https://github.com/ruvnet/agentic-flow).
|
|
15
15
|
|
|
16
16
|
🏗️ **DDD Architecture** | 🧠 **ReasoningBank + Dream Cycles** | 🎯 **TinyDancer Model Routing** | 🔍 **HNSW Vector Search** | 👑 **Queen Coordinator** | 📊 **O(log n) Coverage** | 🔗 **Claude Flow Integration** | 🎯 **13 Bounded Contexts** | 📚 **78 QE Skills** | 🧬 **Coherence Verification** | ✅ **Trust Tiers** | 🛡️ **Governance**
|
|
17
17
|
|
|
@@ -36,11 +36,14 @@ aqe init --auto
|
|
|
36
36
|
|
|
37
37
|
# Include OpenCode assets (agents, skills, tools, permissions)
|
|
38
38
|
aqe init --auto --with-opencode
|
|
39
|
+
|
|
40
|
+
# Include AWS Kiro IDE assets (agents, skills, hooks, steering)
|
|
41
|
+
aqe init --auto --with-kiro
|
|
39
42
|
```
|
|
40
43
|
|
|
41
44
|
> **Note:** `aqe init` automatically configures the MCP server in `.mcp.json` — Claude Code will auto-start it when connecting. For standalone MCP server usage (non-Claude-Code clients), run `aqe-mcp` or `npx agentic-qe mcp`.
|
|
42
45
|
|
|
43
|
-
### Use from MCP-compatible agent clients (Claude Code, OpenCode, Codex, others)
|
|
46
|
+
### Use from MCP-compatible agent clients (Claude Code, OpenCode, Kiro, Codex, others)
|
|
44
47
|
|
|
45
48
|
AQE is exposed as an MCP server and can be used from any client that supports MCP tool connections.
|
|
46
49
|
|
|
@@ -52,6 +55,9 @@ AQE is exposed as an MCP server and can be used from any client that supports MC
|
|
|
52
55
|
aqe init --auto --with-opencode # installs agents, skills, tools, permissions, opencode.json
|
|
53
56
|
aqe-mcp # starts with SSE auto-detection
|
|
54
57
|
|
|
58
|
+
# For AWS Kiro: provision Kiro-native assets during init
|
|
59
|
+
aqe init --auto --with-kiro # installs .kiro/ agents, skills, hooks, steering, MCP config
|
|
60
|
+
|
|
55
61
|
# For other MCP clients: start the server manually
|
|
56
62
|
aqe-mcp # if installed globally
|
|
57
63
|
npx agentic-qe mcp # without global install
|
|
@@ -76,6 +82,7 @@ For client-specific setup examples, see `docs/integration/mcp-clients.md`.
|
|
|
76
82
|
- ✅ **Coherence Verification** (v3.3.0): Mathematical proof of belief consistency using WASM engines
|
|
77
83
|
- ✅ **RVF Cognitive Containers** (v3.7.0): MinCut task routing, witness chain audit trail, portable brain export/import, unified HNSW search, production dual-write to native RVF
|
|
78
84
|
- ✅ **OpenCode Support** (v3.7.1): 59 agent configs, 86 skill configs (78 QE + 8 general dev), 5 tool wrappers, SSE/WS/HTTP transport, output compaction, graceful degradation, `aqe init --with-opencode` auto-provisioning
|
|
85
|
+
- ✅ **AWS Kiro Support** (v3.7.2): 87 agent configs, 86 skill configs, 5 event-driven hooks, 2 steering files, MCP config, `aqe init --with-kiro` auto-provisioning
|
|
79
86
|
- ✅ **V2 Backward Compatibility**: All V2 agents map to V3 equivalents
|
|
80
87
|
- ✅ **78 QE Skills**: 46 Tier 3 verified + 32 additional QE skills (QCSD swarms, n8n testing, enterprise integration, qe-* domains)
|
|
81
88
|
|
|
@@ -330,6 +337,56 @@ aqe brain info --input ./my-brain
|
|
|
330
337
|
|
|
331
338
|
---
|
|
332
339
|
|
|
340
|
+
### 🏗️ AWS Kiro IDE Support (v3.7.2)
|
|
341
|
+
|
|
342
|
+
V3.7.2 adds full **AWS Kiro IDE** integration, converting AQE agents, skills, hooks, and steering files to Kiro-native formats via `aqe init --with-kiro`.
|
|
343
|
+
|
|
344
|
+
| Asset | Count | Description |
|
|
345
|
+
|-------|-------|-------------|
|
|
346
|
+
| **Agents** | 87 | `.kiro/agents/*.json` — 62 QE + 15 n8n + 10 infra/testing agents |
|
|
347
|
+
| **Skills** | 86 | `.kiro/skills/*/SKILL.md` — full instructional content from Claude Code sources |
|
|
348
|
+
| **Hooks** | 5 | `.kiro/hooks/*.kiro.hook` — event-driven automation (test update, coverage, security, quality gate, pre-commit) |
|
|
349
|
+
| **Steering** | 2 | `.kiro/steering/*.md` — QE standards and testing conventions |
|
|
350
|
+
| **MCP Config** | 1 | `.kiro/settings/mcp.json` — auto-approved AQE tools |
|
|
351
|
+
|
|
352
|
+
**Setup:**
|
|
353
|
+
|
|
354
|
+
```bash
|
|
355
|
+
# Provision Kiro assets during init
|
|
356
|
+
aqe init --auto --with-kiro
|
|
357
|
+
|
|
358
|
+
# Or add Kiro to an existing project
|
|
359
|
+
aqe init --with-kiro
|
|
360
|
+
```
|
|
361
|
+
|
|
362
|
+
**What gets generated:**
|
|
363
|
+
|
|
364
|
+
```
|
|
365
|
+
.kiro/
|
|
366
|
+
├── agents/ # 87 agent definitions (Kiro JSON format)
|
|
367
|
+
├── skills/*/SKILL.md # 86 skill definitions (full markdown content)
|
|
368
|
+
├── hooks/ # 5 event-driven hooks
|
|
369
|
+
│ ├── aqe-test-updater.kiro.hook # Auto-update tests on source changes
|
|
370
|
+
│ ├── aqe-coverage-check.kiro.hook # Coverage analysis on test edits
|
|
371
|
+
│ ├── aqe-security-scan.kiro.hook # Security scan on auth file changes
|
|
372
|
+
│ ├── aqe-spec-quality-gate.kiro.hook # Quality gate after spec tasks
|
|
373
|
+
│ └── aqe-pre-commit-quality.kiro.hook # Quality check before agent stops
|
|
374
|
+
├── steering/ # 2 project-wide guidance files
|
|
375
|
+
│ ├── qe-standards.md # QE standards (auto-triggered)
|
|
376
|
+
│ └── testing-conventions.md # Test file conventions (fileMatch)
|
|
377
|
+
└── settings/mcp.json # MCP server config with auto-approved tools
|
|
378
|
+
```
|
|
379
|
+
|
|
380
|
+
**Key features:**
|
|
381
|
+
- Converts OpenCode YAML agents and Claude Code markdown agents to Kiro JSON format
|
|
382
|
+
- Reads full SKILL.md content from Claude Code sources (not thin YAML stubs)
|
|
383
|
+
- Maps `mcp:agentic-qe:` references to Kiro's `@agentic-qe/` format
|
|
384
|
+
- Maps Claude Code tool names to Kiro builtins (`bash`→`shell`, `edit`→`write`)
|
|
385
|
+
- Auto-detects existing `.kiro/` directory in `--auto` mode
|
|
386
|
+
- Safe by default: won't overwrite existing files unless `--upgrade` is used
|
|
387
|
+
|
|
388
|
+
---
|
|
389
|
+
|
|
333
390
|
### 🎯 TinyDancer Intelligent Model Routing
|
|
334
391
|
|
|
335
392
|
**TinyDancer** (ADR-026) provides 3-tier intelligent model routing for cost optimization:
|
|
@@ -837,6 +894,12 @@ agentic-qe/
|
|
|
837
894
|
├── .claude/
|
|
838
895
|
│ ├── agents/v3/ # V3 agent definitions (source)
|
|
839
896
|
│ └── skills/ # 15 QE-specific skills
|
|
897
|
+
├── .kiro/ # AWS Kiro IDE integration (v3.7.2)
|
|
898
|
+
│ ├── agents/ # 87 Kiro agent definitions (JSON)
|
|
899
|
+
│ ├── skills/ # 86 Kiro skill definitions (SKILL.md)
|
|
900
|
+
│ ├── hooks/ # 5 event-driven hooks
|
|
901
|
+
│ ├── steering/ # 2 QE steering files
|
|
902
|
+
│ └── settings/ # MCP server configuration
|
|
840
903
|
├── docs/ # Shared documentation
|
|
841
904
|
│ ├── plans/ # Migration plans
|
|
842
905
|
│ ├── policies/ # Project policies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-qe",
|
|
3
|
-
"version": "3.7.
|
|
3
|
+
"version": "3.7.2",
|
|
4
4
|
"description": "Agentic Quality Engineering V3 - Domain-Driven Design Architecture with 13 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning, 60 specialized QE agents, mathematical Coherence verification, deep Claude Flow integration",
|
|
5
5
|
"main": "./v3/dist/index.js",
|
|
6
6
|
"types": "./v3/dist/index.d.ts",
|
|
@@ -481,10 +481,17 @@ async function main(): Promise<void> {
|
|
|
481
481
|
const domain = frontmatter.domain;
|
|
482
482
|
|
|
483
483
|
// Build system prompt based on format
|
|
484
|
-
|
|
484
|
+
let systemPrompt = hasXml
|
|
485
485
|
? buildXmlSystemPrompt(agentName, normalizedContent, frontmatter)
|
|
486
486
|
: buildMarkdownSystemPrompt(agentName, normalizedContent, frontmatter);
|
|
487
487
|
|
|
488
|
+
// Cap systemPrompt to ~2000 tokens (~7500 chars) to pass validation
|
|
489
|
+
const MAX_PROMPT_CHARS = 7500;
|
|
490
|
+
if (systemPrompt.length > MAX_PROMPT_CHARS) {
|
|
491
|
+
systemPrompt = systemPrompt.slice(0, MAX_PROMPT_CHARS).replace(/\n[^\n]*$/, '') +
|
|
492
|
+
'\n\n [Truncated for token limit. See full agent definition in .claude/agents/v3/]';
|
|
493
|
+
}
|
|
494
|
+
|
|
488
495
|
// Map tools from domain and name
|
|
489
496
|
const tools = mapToolsFromDomain(domain, agentName);
|
|
490
497
|
|
package/v3/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,27 @@ All notable changes to Agentic QE will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.7.2] - 2026-02-25
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **AWS Kiro IDE integration** — Full Kiro support converting AQE agents, skills, hooks, and steering files to Kiro-native formats via `aqe init --with-kiro`: 87 agent JSON configs, 86 skill SKILL.md files with full content, 5 event-driven hooks (test-updater, coverage-check, security-scan, spec-quality-gate, pre-commit-quality), 2 steering files (qe-standards, testing-conventions), and MCP server configuration
|
|
13
|
+
- **`aqe init --with-kiro` flag** — Provisions `.kiro/` directory with agents, skills, hooks, steering, and MCP config; follows the OpenCode/N8n installer pattern with auto-detection in `--auto` mode when `.kiro/` exists
|
|
14
|
+
- **Kiro installer** (`v3/src/init/kiro-installer.ts`) — 937-line converter that reads OpenCode YAML agents and Claude Code markdown agents, converts `mcp:agentic-qe:` refs to `@agentic-qe/` format, maps tool names to Kiro builtins (`bash`→`shell`, `edit`→`write`), and prioritizes full SKILL.md content over thin YAML stubs
|
|
15
|
+
|
|
16
|
+
### Fixed
|
|
17
|
+
|
|
18
|
+
- **Kiro model mapping inconsistency** — `convertMdAgentToKiro()` now reads the `model` field from markdown agent frontmatter and properly maps opus/haiku models, matching the behavior of `convertToKiroAgent()` for YAML agents
|
|
19
|
+
- **Unused variable warnings** — Removed unused `category` and `name` variables in kiro-installer.ts
|
|
20
|
+
|
|
21
|
+
### Changed
|
|
22
|
+
|
|
23
|
+
- **README updated** — Added dedicated AWS Kiro IDE section with asset table, directory structure, setup commands, and key features; updated Quick Start, client examples, feature bullets, and project architecture tree
|
|
24
|
+
|
|
25
|
+
### Security
|
|
26
|
+
|
|
27
|
+
- **hono 4.12.0 → 4.12.2** — Fixes incorrect `X-Forwarded-For` handling in AWS Lambda adapter that could allow IP-based access control bypass (GHSA-xh87-mx6m-69f3)
|
|
28
|
+
|
|
8
29
|
## [3.7.1] - 2026-02-24
|
|
9
30
|
|
|
10
31
|
### Added
|