agentic-qe 3.6.16 → 3.6.18
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/agents/v3/qe-queen-coordinator.md +9 -3
- package/.claude/skills/skills-manifest.json +1 -1
- package/package.json +1 -1
- package/v3/CHANGELOG.md +38 -0
- package/v3/assets/agents/v3/qe-queen-coordinator.md +9 -3
- package/v3/dist/cli/bundle.js +1619 -659
- package/v3/dist/cli/commands/sync.d.ts.map +1 -1
- package/v3/dist/cli/commands/sync.js +83 -1
- package/v3/dist/cli/commands/sync.js.map +1 -1
- package/v3/dist/coordination/agent-teams/domain-team-manager.d.ts +6 -0
- package/v3/dist/coordination/agent-teams/domain-team-manager.d.ts.map +1 -1
- package/v3/dist/coordination/agent-teams/domain-team-manager.js +20 -0
- package/v3/dist/coordination/agent-teams/domain-team-manager.js.map +1 -1
- package/v3/dist/coordination/queen-coordinator.d.ts +2 -0
- package/v3/dist/coordination/queen-coordinator.d.ts.map +1 -1
- package/v3/dist/coordination/queen-coordinator.js +21 -0
- package/v3/dist/coordination/queen-coordinator.js.map +1 -1
- package/v3/dist/mcp/bundle.js +685 -21
- package/v3/dist/mcp/handlers/agent-handlers.d.ts +9 -0
- package/v3/dist/mcp/handlers/agent-handlers.d.ts.map +1 -1
- package/v3/dist/mcp/handlers/agent-handlers.js +30 -9
- package/v3/dist/mcp/handlers/agent-handlers.js.map +1 -1
- package/v3/dist/mcp/handlers/core-handlers.d.ts +32 -0
- package/v3/dist/mcp/handlers/core-handlers.d.ts.map +1 -1
- package/v3/dist/mcp/handlers/core-handlers.js +63 -1
- package/v3/dist/mcp/handlers/core-handlers.js.map +1 -1
- package/v3/dist/mcp/handlers/handler-factory.d.ts +9 -1
- package/v3/dist/mcp/handlers/handler-factory.d.ts.map +1 -1
- package/v3/dist/mcp/handlers/handler-factory.js +94 -2
- package/v3/dist/mcp/handlers/handler-factory.js.map +1 -1
- package/v3/dist/mcp/handlers/index.d.ts +1 -0
- package/v3/dist/mcp/handlers/index.d.ts.map +1 -1
- package/v3/dist/mcp/handlers/index.js +2 -0
- package/v3/dist/mcp/handlers/index.js.map +1 -1
- package/v3/dist/mcp/handlers/memory-handlers.d.ts +2 -0
- package/v3/dist/mcp/handlers/memory-handlers.d.ts.map +1 -1
- package/v3/dist/mcp/handlers/memory-handlers.js +90 -1
- package/v3/dist/mcp/handlers/memory-handlers.js.map +1 -1
- package/v3/dist/mcp/handlers/team-handlers.d.ts +40 -0
- package/v3/dist/mcp/handlers/team-handlers.d.ts.map +1 -0
- package/v3/dist/mcp/handlers/team-handlers.js +251 -0
- package/v3/dist/mcp/handlers/team-handlers.js.map +1 -0
- package/v3/dist/mcp/protocol-server.d.ts +7 -0
- package/v3/dist/mcp/protocol-server.d.ts.map +1 -1
- package/v3/dist/mcp/protocol-server.js +131 -3
- package/v3/dist/mcp/protocol-server.js.map +1 -1
- package/v3/dist/mcp/transport/stdio.d.ts +18 -0
- package/v3/dist/mcp/transport/stdio.d.ts.map +1 -1
- package/v3/dist/mcp/transport/stdio.js +72 -5
- package/v3/dist/mcp/transport/stdio.js.map +1 -1
- package/v3/dist/mcp/types.d.ts +49 -0
- package/v3/dist/mcp/types.d.ts.map +1 -1
- package/v3/dist/sync/cloud/index.d.ts +1 -0
- package/v3/dist/sync/cloud/index.d.ts.map +1 -1
- package/v3/dist/sync/cloud/index.js +1 -0
- package/v3/dist/sync/cloud/index.js.map +1 -1
- package/v3/dist/sync/cloud/postgres-reader.d.ts +63 -0
- package/v3/dist/sync/cloud/postgres-reader.d.ts.map +1 -0
- package/v3/dist/sync/cloud/postgres-reader.js +225 -0
- package/v3/dist/sync/cloud/postgres-reader.js.map +1 -0
- package/v3/dist/sync/index.d.ts +5 -2
- package/v3/dist/sync/index.d.ts.map +1 -1
- package/v3/dist/sync/index.js +7 -2
- package/v3/dist/sync/index.js.map +1 -1
- package/v3/dist/sync/interfaces.d.ts +49 -0
- package/v3/dist/sync/interfaces.d.ts.map +1 -1
- package/v3/dist/sync/interfaces.js +160 -0
- package/v3/dist/sync/interfaces.js.map +1 -1
- package/v3/dist/sync/pull-agent.d.ts +102 -0
- package/v3/dist/sync/pull-agent.d.ts.map +1 -0
- package/v3/dist/sync/pull-agent.js +354 -0
- package/v3/dist/sync/pull-agent.js.map +1 -0
- package/v3/dist/sync/sync-agent.d.ts.map +1 -1
- package/v3/dist/sync/sync-agent.js +9 -0
- package/v3/dist/sync/sync-agent.js.map +1 -1
- package/v3/dist/sync/writers/index.d.ts +7 -0
- package/v3/dist/sync/writers/index.d.ts.map +1 -0
- package/v3/dist/sync/writers/index.js +7 -0
- package/v3/dist/sync/writers/index.js.map +1 -0
- package/v3/dist/sync/writers/sqlite-writer.d.ts +69 -0
- package/v3/dist/sync/writers/sqlite-writer.d.ts.map +1 -0
- package/v3/dist/sync/writers/sqlite-writer.js +249 -0
- package/v3/dist/sync/writers/sqlite-writer.js.map +1 -0
- package/v3/package.json +1 -1
|
@@ -47,11 +47,15 @@ If unhealthy, report status and attempt recovery before proceeding.
|
|
|
47
47
|
|
|
48
48
|
```
|
|
49
49
|
mcp__agentic-qe__memory_query({
|
|
50
|
-
pattern: "queen
|
|
51
|
-
namespace: "learning"
|
|
50
|
+
pattern: "queen orchestration patterns",
|
|
51
|
+
namespace: "learning",
|
|
52
|
+
semantic: true
|
|
52
53
|
})
|
|
53
54
|
```
|
|
54
55
|
|
|
56
|
+
Note: `semantic: true` uses HNSW vector search for natural language queries.
|
|
57
|
+
For glob-style matching, omit `semantic` and use patterns like `"queen-orchestration-*"`.
|
|
58
|
+
|
|
55
59
|
### PHASE 4: Analyze Task and Select Domains
|
|
56
60
|
|
|
57
61
|
Based on the user's request, determine which domains to activate:
|
|
@@ -245,8 +249,10 @@ mcp__agentic-qe__task_orchestrate({
|
|
|
245
249
|
|------|---------|
|
|
246
250
|
| `mcp__agentic-qe__memory_store` | Store patterns/learnings |
|
|
247
251
|
| `mcp__agentic-qe__memory_retrieve` | Get stored data |
|
|
248
|
-
| `mcp__agentic-qe__memory_query` | Search patterns |
|
|
252
|
+
| `mcp__agentic-qe__memory_query` | Search patterns (supports `semantic: true` for HNSW vector search) |
|
|
249
253
|
| `mcp__agentic-qe__memory_share` | Share between agents |
|
|
254
|
+
| `mcp__agentic-qe__memory_usage` | Get memory usage statistics |
|
|
255
|
+
| `mcp__agentic-qe__memory_delete` | Delete memory entry |
|
|
250
256
|
|
|
251
257
|
### Model Routing
|
|
252
258
|
| Tool | Purpose |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-qe",
|
|
3
|
-
"version": "3.6.
|
|
3
|
+
"version": "3.6.18",
|
|
4
4
|
"description": "Agentic Quality Engineering V3 - Domain-Driven Design Architecture with 13 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning, 59 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",
|
package/v3/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,44 @@ 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.6.18] - 2026-02-21
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **6 new Agent Teams MCP tools** — `team_list`, `team_health`, `team_message`, `team_broadcast`, `team_scale`, `team_rebalance` expose ADR-064 domain team management via MCP
|
|
13
|
+
- **Team membership in agent_list** — Each agent now shows its team role (`lead` or `teammate`) and team size
|
|
14
|
+
- **Teams summary in fleet_status** — Fleet status response now includes active teams count, total agents in teams, and healthy team count
|
|
15
|
+
- **Auto-team-wiring on agent spawn** — Agents are automatically registered in domain teams when spawned (first agent = lead, subsequent = teammates)
|
|
16
|
+
- **addTeammate() on DomainTeamManager** — New method to add real agent IDs as teammates (instead of synthetic IDs from scaleTeam)
|
|
17
|
+
- **Runtime message-type validation** — `team_message` and `team_broadcast` reject invalid message types with clear error messages
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- **Race condition in parallel agent spawns** — Two concurrent spawns for the same domain no longer cause the second agent to become a ghost; the create-team failure now falls back to addTeammate
|
|
22
|
+
- **Duplicate agent guard** — `addTeammate()` rejects agents already in the team, preventing corrupted team size calculations
|
|
23
|
+
|
|
24
|
+
## [3.6.17] - 2026-02-21
|
|
25
|
+
|
|
26
|
+
### Added
|
|
27
|
+
|
|
28
|
+
- **HNSW semantic search** — `memory_query` now supports `semantic: true` for natural language queries using HNSW vector search with cosine similarity scoring, with automatic fallback to pattern matching
|
|
29
|
+
- **Vector storage on write** — `memory_store` now indexes entries in the HNSW vector index alongside KV storage, so semantic search finds them immediately
|
|
30
|
+
- **Hierarchical agent topology** — `fleet_init` with `topology: "hierarchical"` now assigns agents as domain leads or workers (first agent per domain becomes lead)
|
|
31
|
+
- **MCP reconnection with buffering** — Transport errors trigger exponential backoff reconnection with request buffering and replay
|
|
32
|
+
- **Real experience capture** — Tool executions now record patterns via ExperienceCaptureService instead of returning placeholder feedback
|
|
33
|
+
|
|
34
|
+
### Fixed
|
|
35
|
+
|
|
36
|
+
- **Stdio transport timeout under parallel load** — Write timeout increased from 30s to 120s with retry logic and backpressure handling, preventing dropped connections during parallel agent spawns
|
|
37
|
+
- **Semantic search returned 0 results** — `memory_store` was only saving to KV store but not indexing vectors; now calls `storeVector()` after every write
|
|
38
|
+
- **Embedding dimension mismatch** — Text embedding function now generates 768-dimension vectors matching the HNSW index configuration
|
|
39
|
+
- **Transport stop() race condition** — `running` flag now set before closing readline, preventing error handler from triggering reconnect during explicit shutdown
|
|
40
|
+
|
|
41
|
+
### Changed
|
|
42
|
+
|
|
43
|
+
- Queen Coordinator documentation updated with semantic search parameters and complete tool reference table
|
|
44
|
+
- Learning feedback messages now reflect actual capture status instead of hardcoded "patterns updated" text
|
|
45
|
+
|
|
8
46
|
## [3.6.16] - 2026-02-21
|
|
9
47
|
|
|
10
48
|
### Added
|
|
@@ -47,11 +47,15 @@ If unhealthy, report status and attempt recovery before proceeding.
|
|
|
47
47
|
|
|
48
48
|
```
|
|
49
49
|
mcp__agentic-qe__memory_query({
|
|
50
|
-
pattern: "queen
|
|
51
|
-
namespace: "learning"
|
|
50
|
+
pattern: "queen orchestration patterns",
|
|
51
|
+
namespace: "learning",
|
|
52
|
+
semantic: true
|
|
52
53
|
})
|
|
53
54
|
```
|
|
54
55
|
|
|
56
|
+
Note: `semantic: true` uses HNSW vector search for natural language queries.
|
|
57
|
+
For glob-style matching, omit `semantic` and use patterns like `"queen-orchestration-*"`.
|
|
58
|
+
|
|
55
59
|
### PHASE 4: Analyze Task and Select Domains
|
|
56
60
|
|
|
57
61
|
Based on the user's request, determine which domains to activate:
|
|
@@ -245,8 +249,10 @@ mcp__agentic-qe__task_orchestrate({
|
|
|
245
249
|
|------|---------|
|
|
246
250
|
| `mcp__agentic-qe__memory_store` | Store patterns/learnings |
|
|
247
251
|
| `mcp__agentic-qe__memory_retrieve` | Get stored data |
|
|
248
|
-
| `mcp__agentic-qe__memory_query` | Search patterns |
|
|
252
|
+
| `mcp__agentic-qe__memory_query` | Search patterns (supports `semantic: true` for HNSW vector search) |
|
|
249
253
|
| `mcp__agentic-qe__memory_share` | Share between agents |
|
|
254
|
+
| `mcp__agentic-qe__memory_usage` | Get memory usage statistics |
|
|
255
|
+
| `mcp__agentic-qe__memory_delete` | Delete memory entry |
|
|
250
256
|
|
|
251
257
|
### Model Routing
|
|
252
258
|
| Tool | Purpose |
|