You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/SECURITY.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@
4
4
5
5
| Version | Supported |
6
6
|---------|-----------|
7
-
| 4.11.x | ✅ Yes — full support (current) |
8
-
| 4.10.x | ✅ Security fixes only |
7
+
| 4.12.x | ✅ Yes — full support (current) |
8
+
| 4.11.x | ✅ Security fixes only |
9
9
| 4.9.x | ✅ Security fixes only |
10
10
| 4.8.x | ✅ Security fixes only |
11
11
| 4.7.x | ✅ Security fixes only |
@@ -41,6 +41,9 @@ Network-AI includes built-in security features:
41
41
-**ComplianceMonitor** (v3.3.0) -- real-time agent behavior surveillance with configurable violation policies, severity classification, and async audit loop
42
42
-**Named Multi-Blackboard API** (v3.4.0) -- isolated `SharedBlackboard` instances per name with independent namespaces, validation configs, and agent scoping; prevents cross-task data leakage
43
43
-**QA Orchestrator Agent** (v4.11.0) -- scenario replay through quality gates, cross-agent contradiction detection, feedback loop with retry limits, and regression tracking with historical snapshots
44
+
-**Deferred Adapter Initialization** (v4.12.0) -- adapters are materialized only on first use via `registerDeferred()`, preventing untrusted adapter code from running at startup
-**Flow Control** (v4.12.0) -- `pause()` / `resume()` / `setThrottle()` on the blackboard; prevents write floods and enables coordinated maintenance windows
Copy file name to clipboardExpand all lines: .github/copilot-instructions.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
## Project Overview
4
4
5
-
Network-AI is a TypeScript/Node.js multi-agent orchestrator — shared state, guardrails, budgets, and cross-framework coordination (v4.11.0). 1,684 tests across 21 suites.
5
+
Network-AI is a TypeScript/Node.js multi-agent orchestrator — shared state, guardrails, budgets, and cross-framework coordination (v4.12.0). 1,778 tests across 22 suites.
6
6
7
7
## Architecture
8
8
@@ -27,13 +27,16 @@ Network-AI is a TypeScript/Node.js multi-agent orchestrator — shared state, gu
27
27
-`lib/locked-blackboard.ts` — LockedBlackboard with atomic propose → validate → commit
28
28
-`lib/fsm-journey.ts` — JourneyFSM behavioral control plane
Copy file name to clipboardExpand all lines: CHANGELOG.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,27 @@ All notable changes to Network-AI 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
+
## [4.12.0] - 2026-04-01
9
+
10
+
### Added
11
+
-**Deferred Adapter Initialization** — `registerDeferred(name, factory, config)` on `AdapterRegistry`; adapters are created and initialized only on first use via `resolveAdapterAsync()`. `executeAgent()` auto-materializes deferred adapters transparently. `listAdapters()` shows deferred entries with `deferred: true`.
12
+
-**Adapter Hook Middleware** (`AdapterHookManager`) — lifecycle hooks (`beforeExecute` / `afterExecute` / `onError`) that wrap any adapter's `executeAgent` call. Priority-ordered execution, payload/result mutation, abort support. New module: `lib/adapter-hooks.ts`.
13
+
-**Flow Control** on `LockedBlackboard` — `pause()` / `resume()` / `isPaused()` blocks writes/commits while paused (reads continue); `setThrottle(ms)` / `getThrottle()` enforces minimum interval between mutating operations; `throttleMs` option in constructor.
14
+
-**Skill Composer** (`SkillComposer`) — `chain()`, `batch()`, `loop()`, `verify()` meta-operations for composing multi-agent workflows. Chain passes `previousResult` downstream; batch supports concurrency limits; loop has condition + maxIterations; verify retries until validator passes. New module: `lib/skill-composer.ts`.
15
+
-**Semantic Memory Search** (`SemanticMemory`) — BYOE (bring your own embedding function) in-memory vector store with cosine similarity search, `topK` + `threshold`, `indexSnapshot()` for bulk blackboard import. New module: `lib/semantic-search.ts`.
16
+
-`adapter:deferred` event type in `AdapterEventType`
17
+
-`AdapterFactory` type export from adapter-registry
18
+
- 94 new tests in `test-phase7.ts` (1,778 total across 22 suites)
19
+
20
+
### Fixed
21
+
-**CodeQL #91** — removed unused `badResult` variable in `test-qa.ts`
22
+
- Constructor detection in `LockedBlackboard` now recognizes options with only `throttleMs` (without `conflictResolution`)
23
+
24
+
### Changed
25
+
-`AdapterRegistry.listAdapters()` return type now includes optional `deferred` field
26
+
-`LockedBlackboardOptions` interface extended with `throttleMs` property
27
+
- CI: bumped `github/codeql-action` from 4.34.1 to 4.35.1 (PR #79)
Copy file name to clipboardExpand all lines: SECURITY.md
+5-2Lines changed: 5 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,8 +4,8 @@
4
4
5
5
| Version | Supported |
6
6
|---------|-----------||
7
-
| 4.11.x | ✅ Yes — full support (current) |
8
-
| 4.10.x | ✅ Security fixes only |
7
+
| 4.12.x | ✅ Yes — full support (current) |
8
+
| 4.11.x | ✅ Security fixes only |
9
9
| 4.9.x | ✅ Security fixes only |
10
10
| 4.8.x | ✅ Security fixes only |
11
11
| 4.7.x | ✅ Security fixes only |
@@ -41,6 +41,9 @@ Network-AI includes built-in security features:
41
41
-**ComplianceMonitor** (v3.3.0) -- real-time agent behavior surveillance with configurable violation policies, severity classification, and async audit loop
42
42
-**Named Multi-Blackboard API** (v3.4.0) -- isolated `SharedBlackboard` instances per name with independent namespaces, validation configs, and agent scoping; prevents cross-task data leakage
43
43
-**QA Orchestrator Agent** (v4.11.0) -- scenario replay through quality gates, cross-agent contradiction detection, feedback loop with retry limits, and regression tracking with historical snapshots
44
+
-**Deferred Adapter Initialization** (v4.12.0) -- adapters are materialized only on first use via `registerDeferred()`, preventing untrusted adapter code from running at startup
-**Flow Control** (v4.12.0) -- `pause()` / `resume()` / `setThrottle()` on the blackboard; prevents write floods and enables coordinated maintenance windows
0 commit comments