← Back to Skills Marketplace
eviost

orchestrator-v4

by eviost · GitHub ↗ · v2.2.0 · MIT-0
cross-platform ⚠ suspicious
195
Downloads
1
Stars
0
Active Installs
14
Versions
Install in OpenClaw
/install orchestrator-v4
Description
智能任务编排系统。自动扫描项目规模、规划子任务、动态派发多个 AI Worker 并行执行,支持大项目按模块拆分、自适应超时、滚动派发、用户随时打断改思路。 触发条件:用户需要处理复杂任务、多步骤分析、代码生成、调试分析、研究调查或需要智能调度 AI Worker 时。
Usage Guidance
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.
Capability Tags
crypto
Capability Assessment
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.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install orchestrator-v4
  3. After installation, invoke the skill by name or use /orchestrator-v4
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
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 请求类型、子任务数上限
Metadata
Slug orchestrator-v4
Version 2.2.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 14
Frequently Asked Questions

What is orchestrator-v4?

智能任务编排系统。自动扫描项目规模、规划子任务、动态派发多个 AI Worker 并行执行,支持大项目按模块拆分、自适应超时、滚动派发、用户随时打断改思路。 触发条件:用户需要处理复杂任务、多步骤分析、代码生成、调试分析、研究调查或需要智能调度 AI Worker 时。 It is an AI Agent Skill for Claude Code / OpenClaw, with 195 downloads so far.

How do I install orchestrator-v4?

Run "/install orchestrator-v4" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is orchestrator-v4 free?

Yes, orchestrator-v4 is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does orchestrator-v4 support?

orchestrator-v4 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created orchestrator-v4?

It is built and maintained by eviost (@eviost); the current version is v2.2.0.

💬 Comments