Install
openclaw skills install acpx-orchestratorEnhanced terminal AI agent orchestrator with parallel execution, health checks, and workflow presets.
openclaw skills install acpx-orchestratorEnhanced CLI wrapper di atas acpx dengan fitur orchestration: parallel, health check, workflows.
# Discover agents
acpx discover
# Health check
acpx health
# Run single agent
acpx run opencode "Fix bug"
# Run workflow
acpx workflow review
| Command | Description | Example |
|---|---|---|
discover | List installed agents | acpx discover |
health | Test all agents | acpx health |
run | Run single agent | acpx run opencode "task" |
parallel | Run agents parallel from file | acpx parallel tasks.txt |
batch | Run agents sequential from file | acpx batch tasks.txt |
watch | Watch agent status | acpx watch opencode |
kill | Kill agent sessions | acpx kill opencode |
workflow | Run preset workflow | acpx workflow review |
json | Run with JSON output | acpx json opencode "task" | jq |
exec | Direct acpx passthrough | acpx exec opencode "task" |
| Workflow | Description |
|---|---|
review | Code review dengan JSON output |
refactor | Safe refactoring dengan diff |
test | Generate pytest tests |
debug | Deep investigation (600s timeout) |
# tasks.txt
opencode exec 'Fix auth.py'
pi exec 'Create tests'
kimi --print --yolo --prompt 'Review changes'
acpx parallel tasks.txt # Run parallel
acpx batch tasks.txt # Run sequential
// Health check
sessions_spawn(
task="acpx health",
label="health-check",
runtime="subagent",
mode="run"
)
// Run workflow
sessions_spawn(
task="acpx workflow review",
label="review",
runtime="subagent",
mode="run"
)
// Parallel tasks
sessions_spawn(
task="acpx parallel tasks.txt",
label="parallel-jobs",
runtime="subagent",
mode="run"
)
// JSON output
sessions_spawn(
task="acpx json opencode 'List functions'",
label="json-task",
runtime="subagent",
mode="run"
)
acpx - Main orchestrator CLIacpx-batch - Legacy sequential runneracpx-workflow - Legacy workflow presetsacpx-discover - Legacy discovery