← 返回 Skills 市场
eviost

orchestrator-v4

作者 eviost · GitHub ↗ · v2.2.0 · MIT-0
cross-platform ⚠ suspicious
195
总下载
1
收藏
0
当前安装
14
版本数
在 OpenClaw 中安装
/install orchestrator-v4
功能描述
智能任务编排系统。自动扫描项目规模、规划子任务、动态派发多个 AI Worker 并行执行,支持大项目按模块拆分、自适应超时、滚动派发、用户随时打断改思路。 触发条件:用户需要处理复杂任务、多步骤分析、代码生成、调试分析、研究调查或需要智能调度 AI Worker 时。
安全使用建议
What to consider before installing/using this skill: - Code review: Inspect scripts/orchestrator_v4_acp.py and scripts/scan_and_plan.py before running. They will execute locally and have filesystem access. Pay attention to any network I/O, subprocess execution, or dynamic code-evaluation patterns (I/O to unexpected hosts is the main risk). - Test in a sandbox: Run scan_and_plan.py and orchestrator functions against a non-sensitive test repository first. Verify that plans and file writes behave as you expect. - Clarify mismatches: SKILL.md claims large-project thresholds of 1000 files/100k lines, while the packaged OrchestratorConfig defaults use 50 files/5k lines. Ask the author which set of defaults applies and consider editing the config to your desired thresholds. - Check checkpoint/report files: The orchestrator writes checkpoints (./checkpoints) and reports (reports/...). If you don't want cross-run persistence, set resume_from_latest_checkpoint=false and/or change checkpoint_dir to a controlled location. - Sessions_spawn behavior: The orchestrator relies on the runtime-provided sessions_spawn to spawn subagents. Confirm how your platform's sessions_spawn handles subagent network access, logging, and data exfiltration risk. Subagents inherit capabilities of the platform; untrusted subagent prompts could leak repository content in their outputs. - Review archived/bridge modules: The package contains archived modules (v3_bridge, v3_worker, lifecycle manager, background monitor). These expand capabilities for long-running tasks and process management; verify you need them and audit them if you enable features like enable_v3_bridge or enable_lifecycle_manager. - Minimal privileges: Because no external credentials are requested, the biggest risk is local data exposure. Keep execution scoped to repositories you trust or sanitize the target_dir input. If you want, I can: (a) point to the exact lines where the threshold mismatch appears, (b) search the code for any outbound network calls, subprocess.exec usage, or dynamic eval calls, or (c) produce a short checklist of config changes to harden the skill for initial testing.
能力标签
crypto
能力评估
Purpose & Capability
The skill's name/description (task scanning, planning, and spawning many AI workers) matches the included scripts (scan_and_plan.py, orchestrator_v4_acp.py, worker templates, monitor and lifecycle modules). There are no unexpected credentials or external binaries requested. However, there is a notable inconsistency between the SKILL.md stated large-project thresholds (SKILL.md: 1000 files / 100,000 lines) and the OrchestratorConfig defaults in orchestrator_v4_acp.py (50 files / 5,000 lines). This mismatch suggests version drift or sloppy documentation and should be clarified.
Instruction Scope
Runtime instructions explicitly instruct scanning target directories, reading files, producing plan.json, and using sessions_spawn to create subagents. That is coherent with an orchestrator and expected. These instructions do grant the skill the ability to read arbitrary project directories and (via subagents) write files; there are no instructions that directly send data to third-party network endpoints in SKILL.md. The SKILL.md also instructs checking disk for files created by subagents, which requires local file system access.
Install Mechanism
No install spec is provided (instruction-only install), which reduces supply-chain risk. However, the skill includes many Python scripts that will be executed (scan_and_plan.py and orchestrator_v4_acp.py are primary). Because there is no controlled package installation step, these script files will run directly in the agent environment when invoked — review the code before executing in a sensitive environment.
Credentials
The skill declares no required environment variables or credentials, which is proportionate to its purpose. It does persist checkpoints (./checkpoints) and writes reports (reports/xxx.md) per its own config, so it will create files on disk. There are no declared requests for unrelated secrets, but the code will read arbitrary files from a user-specified target_dir as part of its normal operation.
Persistence & Privilege
always:false and default model-invocation settings are used (normal). The orchestrator writes checkpoints and can resume from them (config.resume_from_latest_checkpoint). That is reasonable for long-running orchestration, but resume_from_latest_checkpoint=true could cause it to persist/restore state across runs — consider disabling resume_from_latest_checkpoint or auditing checkpoint contents before enabling automatic resume. The skill does not appear to modify other skills' configs.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install orchestrator-v4
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /orchestrator-v4 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v2.2.0
Default exclude dirs, fix mode, language detection, empty result handling, cleanup dead code
v2.1.0
小模块智能合并:规划阶段按负载贪心装箱,减少子代理数量和派发批次
v1.2.3
文档更新
v1.2.2
补回前端输出规范和文件说明表
v1.2.1
SKILL.md 精简工程化,去除冗余示例和文件说明表
v1.2.0
完整功能验证:规划引擎100%可用,用户随时打断改思路,功能分类清晰(已验证/需spawn_func)
v1.1.2
100%对齐:已验证功能和代码就绪功能明确标注,删除花架子
v1.1.1
补回误删功能(三级Worker/审计/暂停恢复/Bridge/运行时控制/配置项)
v1.1.0
标准化 6 步执行流程、前端输出规范、滚动派发、小模块合并派发
v1.0.3
docs: 增加与 OpenClaw 原生 subagent 的对比说明
v1.0.2
fix: 移除所有硬编码绝对路径,改为相对路径
v1.0.1
fix: 移除误发布的 checkpoints 目录(含测试对话历史)
v1.0.0
首次发布:智能任务编排系统,支持大项目按模块拆分、自适应超时、OpenClaw Bridge 桥接层
v4.1.0
v4.1: 大项目按模块拆分、自适应超时、文件读取约束、OpenClaw Bridge 桥接层、analysis 请求类型、子任务数上限
元数据
Slug orchestrator-v4
版本 2.2.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 14
常见问题

orchestrator-v4 是什么?

智能任务编排系统。自动扫描项目规模、规划子任务、动态派发多个 AI Worker 并行执行,支持大项目按模块拆分、自适应超时、滚动派发、用户随时打断改思路。 触发条件:用户需要处理复杂任务、多步骤分析、代码生成、调试分析、研究调查或需要智能调度 AI Worker 时。 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 195 次。

如何安装 orchestrator-v4?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install orchestrator-v4」即可一键安装,无需额外配置。

orchestrator-v4 是免费的吗?

是的,orchestrator-v4 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

orchestrator-v4 支持哪些平台?

orchestrator-v4 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 orchestrator-v4?

由 eviost(@eviost)开发并维护,当前版本 v2.2.0。

💬 留言讨论