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
Added:
- GoalDecomposer: LLM-powered goal decomposition into validated TaskDAG
- TeamRunner: DAG execution engine with topological-layer scheduling,
concurrency limits, per-task/total timeouts, dependency result injection
- runTeam() one-liner: single function call from goal to results
- createLLMPlanner(): structured prompt → any LLM via adapter system
- DAG utilities: validateDAG (Kahn's cycle detection), topologicalLayers,
parsePlanJSON (robust LLM response parsing)
- TypeScript 6.0 upgrade (5.9.3 → 6.0.2) with ignoreDeprecations: 6.0
- postinstall script for third-party tsconfig patching
- 153 new tests in test-phase10.ts (2,357 total across 25 suites)
New module: lib/goal-decomposer.ts
Exports: GoalDecomposer, TeamRunner, runTeam, createLLMPlanner,
validateDAG, topologicalLayers, parsePlanJSON + all types
Copy file name to clipboardExpand all lines: .github/SECURITY.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,9 @@
4
4
5
5
| Version | Supported |
6
6
|---------|-----------|
7
-
| 4.13.x | ✅ Yes — full support (current) |
7
+
| 4.15.x | ✅ Yes — full support (current) |
8
+
| 4.14.x | ✅ Security fixes only |
9
+
| 4.13.x | ✅ Security fixes only |
8
10
| 4.12.x | ✅ Security fixes only |
9
11
| 4.9.x | ✅ Security fixes only |
10
12
| 4.8.x | ✅ Security fixes only |
@@ -51,6 +53,8 @@ Network-AI includes built-in security features:
51
53
-**Approval Gates** (v4.14.0) -- `ApprovalGate` requires explicit human or callback approval for high-risk operations (writes, shell commands, budget spend); auto-approve mode for trusted environments; full approval history with audit trail
52
54
-**Pipe Mode Authentication** (v4.14.0) -- JSON stdin/stdout protocol for programmatic agent control; commands processed one-at-a-time with structured responses; no shell injection surface
53
55
-**Strategy Agent Pool Isolation** (v4.14.0) -- `AgentPool` enforces per-pool capacity ceilings; `WorkloadPartitioner` routes tasks by priority class; adaptive scaling respects budget constraints before spawning agents
56
+
-**Goal Decomposer DAG Validation** (v4.15.0) -- `validateDAG()` enforces acyclicity (Kahn's algorithm), rejects self-dependencies and unknown task references; task graphs are validated before execution to prevent infinite loops or orphaned tasks
57
+
-**Team Runner Approval Gate** (v4.15.0) -- optional `approvalCallback` on `runTeam()` requires explicit approval of the full task DAG before any agent execution begins; rejection skips all tasks with audit-ready status
Copy file name to clipboardExpand all lines: .github/copilot-instructions.md
+3-2Lines changed: 3 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.14.0). 2,204 tests across 24 suites.
5
+
Network-AI is a TypeScript/Node.js multi-agent orchestrator — shared state, guardrails, budgets, and cross-framework coordination (v4.15.0). 2,357 tests across 25 suites.
6
6
7
7
## Architecture
8
8
@@ -36,13 +36,14 @@ Network-AI is a TypeScript/Node.js multi-agent orchestrator — shared state, gu
36
36
-`lib/agent-runtime.ts` — AgentRuntime sandboxed execution with SandboxPolicy, ShellExecutor, FileAccessor, ApprovalGate
Copy file name to clipboardExpand all lines: CHANGELOG.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,17 @@ 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.15.0] - 2026-04-04
9
+
10
+
### Added
11
+
-**Goal Decomposer** (`GoalDecomposer`) — LLM-powered goal → task DAG → parallel execution. Takes a natural language goal, decomposes it into a validated `TaskDAG` via an LLM planner, respects dependencies, and executes with concurrency control. New module: `lib/goal-decomposer.ts`.
12
+
-**Team Runner** (`TeamRunner`) — DAG execution engine with topological-layer scheduling, concurrency limits, per-task and total timeouts, dependency result injection (`_dependencyResults`), priority ordering within layers, and `continueOnFailure` mode.
13
+
-**`runTeam()` one-liner** — single function call: `runTeam(goal, agents, { planner, executor })` to go from natural language goal to results. Includes optional approval gate, planner retries, and full event emission.
14
+
-**`createLLMPlanner()`** — built-in planner factory that sends structured prompts to any LLM agent via the adapter system and parses JSON responses (handles code fences, preamble text, nested `{ tasks }` / `{ text }` / `{ content }` shapes).
0 commit comments