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.12.x | ✅ Yes — full support (current) |
8
-
| 4.11.x | ✅ Security fixes only |
7
+
| 4.13.x | ✅ Yes — full support (current) |
8
+
| 4.12.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 |
@@ -44,6 +44,9 @@ Network-AI includes built-in security features:
44
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
47
+
-**Matcher-Based Hook Filtering** (v4.13.0) -- `HookMatcher` with `agentPattern`, `actionPattern`, `toolPattern` globs, and custom `condition` functions; hooks only fire when all conditions pass, enabling fine-grained security policies per tool or agent pattern
48
+
-**Phase Pipeline with Approval Gates** (v4.13.0) -- `PhasePipeline` orchestrates multi-phase workflows; `requiresApproval` boolean halts execution until explicit human approval is granted, enforcing human-in-the-loop for sensitive operations
49
+
-**Confidence-Based Filtering** (v4.13.0) -- `ConfidenceFilter` rejects low-confidence agent findings below configurable thresholds and validates rejected results with secondary agents; aggregation strategies (unanimous, majority) enforce consensus before accepting multi-agent results
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.12.x | ✅ Yes — full support (current) |
8
-
| 4.11.x | ✅ Security fixes only |
7
+
| 4.13.x | ✅ Yes — full support (current) |
8
+
| 4.12.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 |
@@ -44,6 +44,9 @@ Network-AI includes built-in security features:
44
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
47
+
-**Matcher-Based Hook Filtering** (v4.13.0) -- `HookMatcher` with `agentPattern`, `actionPattern`, `toolPattern` globs, and custom `condition` functions; hooks only fire when all conditions pass, enabling fine-grained security policies per tool or agent pattern
48
+
-**Phase Pipeline with Approval Gates** (v4.13.0) -- `PhasePipeline` orchestrates multi-phase workflows; `requiresApproval` boolean halts execution until explicit human approval is granted, enforcing human-in-the-loop for sensitive operations
49
+
-**Confidence-Based Filtering** (v4.13.0) -- `ConfidenceFilter` rejects low-confidence agent findings below configurable thresholds and validates rejected results with secondary agents; aggregation strategies (unanimous, majority) enforce consensus before accepting multi-agent results
Copy file name to clipboardExpand all lines: SKILL.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -498,6 +498,8 @@ Use for redundancy - take first successful result.
498
498
### Strategy 4: Chain
499
499
Sequential processing - output of one feeds into next.
500
500
501
+
> **TypeScript engine (v4.13.0):** These strategies map directly to the `FanOutFanIn` module (`lib/fan-out.ts`) which provides `merge`, `vote`, `firstSuccess`, and `consensus` fan-in strategies with concurrency control. For multi-phase workflows with approval gates, see `PhasePipeline` (`lib/phase-pipeline.ts`). For result scoring and threshold filtering, see `ConfidenceFilter` (`lib/confidence-filter.ts`). Matcher-based hooks (`lib/adapter-hooks.ts`) can target specific agents or tools via glob patterns.
502
+
501
503
### Example Parallel Workflow
502
504
503
505
> **Platform note:**`sessions_send` and `sessions_history` are **OpenClaw host platform built-ins**, not provided by this skill. This skill provides only the `swarm_guard.py` budget/handoff check that runs before each delegation.
0 commit comments