Skip to content

Commit 066ddc9

Browse files
chore(release): bump version to v3.3.2
Features in this release: - Automatic Dream Scheduling with multiple trigger types - Cross-domain dream insight broadcasting via EventBus - TestGeneration and QualityAssessment coordinators subscribe to dreams - 84 new tests for dream scheduling (38 unit + 46 integration) - Queen-Domain direct task execution integration - ReasoningBank integration gaps closed Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 186cd2a commit 066ddc9

File tree

3 files changed

+48
-2
lines changed

3 files changed

+48
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "agentic-qe",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"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",
55
"main": "./v3/dist/index.js",
66
"types": "./v3/dist/index.d.ts",

v3/CHANGELOG.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,52 @@ All notable changes to Agentic QE will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [3.3.2] - 2026-01-26
9+
10+
### 🎯 Highlights
11+
12+
**Automatic Dream Scheduling** - Dream Cycles are now actively triggered by QE agents instead of being passive-only. This upgrade brings QE v3 agent utilization to full capacity with cross-domain pattern consolidation.
13+
14+
### Added
15+
16+
#### DreamScheduler Service
17+
- **dream-scheduler.ts** - Central scheduling service for automatic dream cycles
18+
- Multiple trigger types:
19+
| Trigger | When | Duration | Priority |
20+
|---------|------|----------|----------|
21+
| `scheduled` | Every 1 hour (configurable) | 30s | Low |
22+
| `experience_threshold` | After 20 tasks accumulated | 10s | Medium |
23+
| `quality_gate_failure` | On quality gate failure | 5s (quick) | High |
24+
| `domain_milestone` | On domain milestone | 10s | Medium |
25+
| `manual` | On-demand API call | Configurable | Varies |
26+
27+
#### Cross-Domain Dream Integration
28+
- **EventBus integration** - `learning-optimization.dream.completed` event broadcasts insights
29+
- **TestGenerationCoordinator** - Subscribes to dream insights, auto-applies high-confidence patterns
30+
- **QualityAssessmentCoordinator** - Subscribes to dream insights for quality threshold tuning
31+
- **LearningOptimizationCoordinator** - Records task experiences, manages DreamScheduler lifecycle
32+
33+
#### New Tests (84 total)
34+
- `dream-scheduler.test.ts` (unit) - 38 tests for scheduler triggers, lifecycle, status
35+
- `dream-scheduler.test.ts` (integration) - 46 tests for full pipeline, cross-domain events
36+
37+
### Changed
38+
39+
- **LearningOptimizationCoordinator** - Now initializes and manages DreamScheduler
40+
- **interfaces.ts** - Added `publishDreamCycleCompleted()` method
41+
- **domain-events.ts** - Added `DreamCycleCompletedPayload` type
42+
43+
### Fixed
44+
45+
- **fix(coordination)**: Wire Queen-Domain direct task execution integration
46+
- **fix(learning)**: Close ReasoningBank integration gaps for full learning pipeline
47+
48+
### Documentation
49+
50+
- `DREAM_SCHEDULER_DESIGN.md` - Architecture design document with trigger specifications
51+
52+
---
53+
854
## [3.3.1] - 2026-01-25
955

1056
### 🎯 Highlights

v3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@agentic-qe/v3",
3-
"version": "3.3.1",
3+
"version": "3.3.2",
44
"description": "Agentic QE v3 - Domain-Driven Design Architecture with 12 Bounded Contexts, O(log n) coverage analysis, ReasoningBank learning, 51 specialized QE agents",
55
"type": "module",
66
"main": "./dist/index.js",

0 commit comments

Comments
 (0)