openclaw-sc 5.38.1 → 5.38.2

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/README.md CHANGED
@@ -9,6 +9,11 @@ The short version: sc is not just a bag of tools. It is the execution layer that
9
9
  lets an agent act like a task commander while still leaving behind artifacts
10
10
  that a human or a main agent can inspect.
11
11
 
12
+ It is especially strong when the work is search-heavy or evidence-heavy:
13
+ instead of asking one main agent to inspect everything serially, the main agent
14
+ can write compact task cards, send many bounded lanes out, and collect short
15
+ completion events back through the inbox.
16
+
12
17
  This repository is the public source package. It excludes private runtime
13
18
  state, local logs, task inbox files, backups, service binaries, credentials, and
14
19
  machine-specific OpenClaw memory.
@@ -42,6 +47,49 @@ sc is built around those operational problems.
42
47
  | Memory retrieval hooks | Dialog search, semantic search, full memory query, and compressed recall can be exposed through one memory tool. |
43
48
  | Local-first package | The public package ships source and contracts, not private logs, inbox state, credentials, service binaries, or backups. |
44
49
 
50
+ ## High-Throughput Workflows
51
+
52
+ sc is designed for controlled fan-out. A capable host can split a large job into
53
+ many small, auditable slices:
54
+
55
+ - large repository inventory
56
+ - multi-angle code audit
57
+ - wide web or documentation research
58
+ - source comparison across many files or pages
59
+ - local data slicing with deterministic workers
60
+ - staged pipelines where one wave of results produces the next wave of tasks
61
+
62
+ The practical pattern is simple:
63
+
64
+ 1. The main agent writes a bounded task card.
65
+ 2. sc dispatches sub-agents or local workers with clear tool limits.
66
+ 3. Results return as completion events and task-state artifacts.
67
+ 4. The main agent reviews, merges, rejects, or sends another wave.
68
+
69
+ For search, inventory, classification, and evidence collection, this can turn a
70
+ long serial workflow into a short coordinated run. The actual speed depends on
71
+ model provider limits, network limits, hardware, task size, and the host's
72
+ review discipline.
73
+
74
+ ## Responsible Use
75
+
76
+ sc can create substantial outbound request volume when you configure large
77
+ fan-out, web search, or many concurrent workers. You are responsible for setting
78
+ safe limits and using it only where you have permission.
79
+
80
+ Before running high-concurrency tasks, configure:
81
+
82
+ - provider and site rate limits
83
+ - maximum fan-out and queue depth
84
+ - per-task timeout and retry limits
85
+ - allowed domains or file roots
86
+ - evidence size limits
87
+ - stop conditions and review gates
88
+
89
+ Do not use sc to overload websites, evade access controls, scrape private data,
90
+ or bypass the terms of any service or API provider. The package gives you an
91
+ orchestration layer; it does not make unsafe or unauthorized activity acceptable.
92
+
45
93
  ## Core Capabilities
46
94
 
47
95
  ### 1. Sub-agent dispatch
@@ -153,6 +201,8 @@ place to enforce task cards, budgets, tool policy, and review gates.
153
201
 
154
202
  - Let one main OpenClaw agent dispatch 3 to 10 bounded review tasks and collect
155
203
  structured completion events.
204
+ - Scale search or audit work to dozens or hundreds of bounded lanes when the
205
+ host, provider, network, and task policy allow it.
156
206
  - Run a background search or workspace inventory without flooding the chat.
157
207
  - Give sub-agents enough tools to inspect and edit code while blocking recursive
158
208
  spawning and emergency controls.
@@ -284,6 +334,10 @@ Never publish real `.env`, `openclaw.json`, logs, task-state JSON, inbox events,
284
334
  credentials, cookies, tokens, private prompts, or full local paths from a
285
335
  private deployment.
286
336
 
337
+ For public or shared deployments, start with low fan-out, short timeouts, narrow
338
+ workspace roots, and explicit domain allowlists. Increase concurrency only after
339
+ you have measured provider limits, target-system tolerance, and review quality.
340
+
287
341
  ## License
288
342
 
289
343
  Business Source License 1.1. See `LICENSE`.
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "id": "sc",
3
3
  "name": "sc",
4
- "version": "5.38.1",
5
- "description": "sc v5.38.1 - OpenClaw agent control plane with sub-agent orchestration, tool routing, worker jobs, completion inboxes, and validation guardrails.",
4
+ "version": "5.38.2",
5
+ "description": "sc v5.38.2 - OpenClaw agent control plane for bounded sub-agent fan-out, search/audit orchestration, tool routing, worker jobs, completion inboxes, and validation guardrails.",
6
6
  "activation": {
7
7
  "onStartup": true
8
8
  },
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "openclaw-sc",
3
- "version": "5.38.1",
4
- "description": "OpenClaw agent control plane for sub-agent orchestration, MCP tool routing, completion inboxes, worker jobs, memory/search, and validation guardrails.",
3
+ "version": "5.38.2",
4
+ "description": "OpenClaw agent control plane for bounded high-throughput sub-agent orchestration, search/audit fan-out, completion inboxes, worker jobs, memory/search, and validation guardrails.",
5
5
  "changelog": "v5.5.0 → v5.7.1: 司令铁律补丁(patch-before-tool-call.ps1) / 内置工具走before_tool_call / 路由守卫全覆盖 / 备份加时间戳防回滚旧版 / 紧急模式恢复防抖60秒",
6
6
  "changelogDetail": "v5.7.1: 路由修复: routeQuick集成L0-L7分类 / 代码去重 / 文档同步",
7
7
  "type": "module",
@@ -42,6 +42,11 @@
42
42
  "agent",
43
43
  "subagent",
44
44
  "agent-control-plane",
45
+ "parallel-agents",
46
+ "fanout",
47
+ "code-audit",
48
+ "web-research",
49
+ "evidence-collection",
45
50
  "orchestration",
46
51
  "completion-inbox",
47
52
  "mcp",