agentic-qe 3.4.3 → 3.4.4
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/package.json +1 -1
- package/v3/CHANGELOG.md +27 -0
- package/v3/dist/cli/bundle.js +10629 -10269
- package/v3/dist/cli/handlers/init-handler.d.ts.map +1 -1
- package/v3/dist/cli/handlers/init-handler.js +4 -0
- package/v3/dist/cli/handlers/init-handler.js.map +1 -1
- package/v3/dist/init/agents-installer.d.ts.map +1 -1
- package/v3/dist/init/agents-installer.js +20 -16
- package/v3/dist/init/agents-installer.js.map +1 -1
- package/v3/dist/init/phases/04-database.d.ts +14 -2
- package/v3/dist/init/phases/04-database.d.ts.map +1 -1
- package/v3/dist/init/phases/04-database.js +50 -48
- package/v3/dist/init/phases/04-database.js.map +1 -1
- package/v3/dist/init/phases/08-mcp.d.ts +6 -1
- package/v3/dist/init/phases/08-mcp.d.ts.map +1 -1
- package/v3/dist/init/phases/08-mcp.js +54 -28
- package/v3/dist/init/phases/08-mcp.js.map +1 -1
- package/v3/dist/init/phases/10-workers.d.ts +11 -0
- package/v3/dist/init/phases/10-workers.d.ts.map +1 -1
- package/v3/dist/init/phases/10-workers.js +246 -11
- package/v3/dist/init/phases/10-workers.js.map +1 -1
- package/v3/dist/init/skills-installer.d.ts.map +1 -1
- package/v3/dist/init/skills-installer.js +20 -16
- package/v3/dist/init/skills-installer.js.map +1 -1
- package/v3/dist/integrations/agent-booster-wasm/index.d.ts +36 -19
- package/v3/dist/integrations/agent-booster-wasm/index.d.ts.map +1 -1
- package/v3/dist/integrations/agent-booster-wasm/index.js +32 -21
- package/v3/dist/integrations/agent-booster-wasm/index.js.map +1 -1
- package/v3/dist/integrations/agentic-flow/agent-booster/adapter.d.ts.map +1 -1
- package/v3/dist/integrations/agentic-flow/agent-booster/adapter.js +57 -4
- package/v3/dist/integrations/agentic-flow/agent-booster/adapter.js.map +1 -1
- package/v3/dist/mcp/bundle.js +143 -28
- package/v3/dist/strange-loop/healing-controller.d.ts.map +1 -1
- package/v3/dist/strange-loop/healing-controller.js +54 -2
- package/v3/dist/strange-loop/healing-controller.js.map +1 -1
- package/v3/dist/strange-loop/index.d.ts +2 -1
- package/v3/dist/strange-loop/index.d.ts.map +1 -1
- package/v3/dist/strange-loop/index.js +3 -1
- package/v3/dist/strange-loop/index.js.map +1 -1
- package/v3/dist/strange-loop/infra-healing/composite-action-executor.d.ts +39 -0
- package/v3/dist/strange-loop/infra-healing/composite-action-executor.d.ts.map +1 -0
- package/v3/dist/strange-loop/infra-healing/composite-action-executor.js +82 -0
- package/v3/dist/strange-loop/infra-healing/composite-action-executor.js.map +1 -0
- package/v3/dist/strange-loop/infra-healing/coordination-lock.d.ts +54 -0
- package/v3/dist/strange-loop/infra-healing/coordination-lock.d.ts.map +1 -0
- package/v3/dist/strange-loop/infra-healing/coordination-lock.js +104 -0
- package/v3/dist/strange-loop/infra-healing/coordination-lock.js.map +1 -0
- package/v3/dist/strange-loop/infra-healing/index.d.ts +20 -0
- package/v3/dist/strange-loop/infra-healing/index.d.ts.map +1 -0
- package/v3/dist/strange-loop/infra-healing/index.js +26 -0
- package/v3/dist/strange-loop/infra-healing/index.js.map +1 -0
- package/v3/dist/strange-loop/infra-healing/infra-action-executor.d.ts +70 -0
- package/v3/dist/strange-loop/infra-healing/infra-action-executor.d.ts.map +1 -0
- package/v3/dist/strange-loop/infra-healing/infra-action-executor.js +260 -0
- package/v3/dist/strange-loop/infra-healing/infra-action-executor.js.map +1 -0
- package/v3/dist/strange-loop/infra-healing/infra-aware-agent-provider.d.ts +56 -0
- package/v3/dist/strange-loop/infra-healing/infra-aware-agent-provider.d.ts.map +1 -0
- package/v3/dist/strange-loop/infra-healing/infra-aware-agent-provider.js +108 -0
- package/v3/dist/strange-loop/infra-healing/infra-aware-agent-provider.js.map +1 -0
- package/v3/dist/strange-loop/infra-healing/infra-healing-orchestrator.d.ts +102 -0
- package/v3/dist/strange-loop/infra-healing/infra-healing-orchestrator.d.ts.map +1 -0
- package/v3/dist/strange-loop/infra-healing/infra-healing-orchestrator.js +201 -0
- package/v3/dist/strange-loop/infra-healing/infra-healing-orchestrator.js.map +1 -0
- package/v3/dist/strange-loop/infra-healing/recovery-playbook.d.ts +74 -0
- package/v3/dist/strange-loop/infra-healing/recovery-playbook.d.ts.map +1 -0
- package/v3/dist/strange-loop/infra-healing/recovery-playbook.js +153 -0
- package/v3/dist/strange-loop/infra-healing/recovery-playbook.js.map +1 -0
- package/v3/dist/strange-loop/infra-healing/test-output-observer.d.ts +61 -0
- package/v3/dist/strange-loop/infra-healing/test-output-observer.d.ts.map +1 -0
- package/v3/dist/strange-loop/infra-healing/test-output-observer.js +339 -0
- package/v3/dist/strange-loop/infra-healing/test-output-observer.js.map +1 -0
- package/v3/dist/strange-loop/infra-healing/types.d.ts +253 -0
- package/v3/dist/strange-loop/infra-healing/types.d.ts.map +1 -0
- package/v3/dist/strange-loop/infra-healing/types.js +33 -0
- package/v3/dist/strange-loop/infra-healing/types.js.map +1 -0
- package/v3/dist/strange-loop/strange-loop.d.ts +63 -0
- package/v3/dist/strange-loop/strange-loop.d.ts.map +1 -1
- package/v3/dist/strange-loop/strange-loop.js +62 -0
- package/v3/dist/strange-loop/strange-loop.js.map +1 -1
- package/v3/dist/strange-loop/types.d.ts +2 -2
- package/v3/dist/strange-loop/types.d.ts.map +1 -1
- package/v3/dist/strange-loop/types.js.map +1 -1
- package/v3/dist/sync/embeddings/index.d.ts +9 -0
- package/v3/dist/sync/embeddings/index.d.ts.map +1 -0
- package/v3/dist/sync/embeddings/index.js +9 -0
- package/v3/dist/sync/embeddings/index.js.map +1 -0
- package/v3/dist/sync/embeddings/sync-embedding-generator.d.ts +101 -0
- package/v3/dist/sync/embeddings/sync-embedding-generator.d.ts.map +1 -0
- package/v3/dist/sync/embeddings/sync-embedding-generator.js +264 -0
- package/v3/dist/sync/embeddings/sync-embedding-generator.js.map +1 -0
- package/v3/dist/sync/index.d.ts +1 -0
- package/v3/dist/sync/index.d.ts.map +1 -1
- package/v3/dist/sync/index.js +2 -0
- package/v3/dist/sync/index.js.map +1 -1
- package/v3/dist/workers/workers/cloud-sync.d.ts +19 -0
- package/v3/dist/workers/workers/cloud-sync.d.ts.map +1 -0
- package/v3/dist/workers/workers/cloud-sync.js +177 -0
- package/v3/dist/workers/workers/cloud-sync.js.map +1 -0
- package/v3/dist/workers/workers/index.d.ts +12 -11
- package/v3/dist/workers/workers/index.d.ts.map +1 -1
- package/v3/dist/workers/workers/index.js +12 -11
- package/v3/dist/workers/workers/index.js.map +1 -1
- package/v3/package.json +8 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agentic-qe",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.4",
|
|
4
4
|
"description": "Agentic Quality Engineering V3 - Domain-Driven Design Architecture with 12 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning, 51 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,33 @@ 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.4.4] - 2026-02-03
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
#### Infrastructure Self-Healing Extension (ADR-057)
|
|
13
|
+
- **TestOutputObserver** - Pattern-matches 22+ OS-level error signatures (ECONNREFUSED, ETIMEDOUT, ENOTFOUND, ENOMEM, ENOSPC) from test stderr to detect infrastructure failures
|
|
14
|
+
- **RecoveryPlaybook** - YAML-driven configuration for service recovery with `${VAR}` environment interpolation
|
|
15
|
+
- **CoordinationLock** - In-process TTL-based mutex preventing duplicate recovery attempts for the same service
|
|
16
|
+
- **InfraActionExecutor** - Executes recovery cycle: healthCheck → recover → backoff → verify
|
|
17
|
+
- **CompositeActionExecutor** - Routes swarm actions to original executor, infra actions to InfraActionExecutor
|
|
18
|
+
- **InfraAwareAgentProvider** - Wraps AgentProvider to inject synthetic infrastructure agents with health derived from observer state
|
|
19
|
+
- **InfraHealingOrchestrator** - Top-level coordinator: `feedTestOutput()` → `runRecoveryCycle()` → stats
|
|
20
|
+
- **Factory functions** - `createStrangeLoopWithInfraHealing()` and `createInMemoryStrangeLoopWithInfraHealing()` for easy integration
|
|
21
|
+
- **Default playbook** - Reference YAML template for 8 services (postgres, mysql, mongodb, redis, elasticsearch, rabbitmq, selenium-grid, generic-service)
|
|
22
|
+
- **Demo script** - `scripts/demo-infra-healing.ts` demonstrates full pipeline
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
- **Strange Loop types** - Added 8 infrastructure vulnerability types to `SwarmVulnerability['type']` union
|
|
26
|
+
- **Healing controller** - Extended with `restart_service` action type and infra-agent override logic in `mapVulnerabilityToAction()`
|
|
27
|
+
- **ADR index** - Updated v3-adrs.md with ADR-057 entry (54 total ADRs implemented)
|
|
28
|
+
|
|
29
|
+
### Technical Details
|
|
30
|
+
- Extends Strange Loop through existing DI seams without modifying core OMDA cycle
|
|
31
|
+
- Framework-agnostic: works with Jest, Pytest, JUnit, or any test framework
|
|
32
|
+
- 245 tests (151 new + 94 existing), zero regressions
|
|
33
|
+
- Security: uses `execFile` (not `exec`), documents trust boundary for playbook YAML
|
|
34
|
+
|
|
8
35
|
## [3.4.3] - 2026-02-02
|
|
9
36
|
|
|
10
37
|
### Added
|