multailisted
Install: claude install-skill alo-exp/multai
# Multi-AI Orchestrator Skill
This skill is the entry point for all research and multi-AI workflows. It routes
to the right specialist skill or, for arbitrary tasks, runs the engine directly
and consolidates generically. Follow the phases below.
---
> **RUNTIME RULES — READ BEFORE ACTING**
>
> This skill operates in two modes depending on where it runs:
>
> **Code tab (Mac — Darwin):** Use ONLY the Playwright engine (Phase 2). NEVER use
> Claude-in-Chrome MCP tools, computer-use tools, or any manual browser tools.
> They conflict with the engine and defeat parallel execution.
>
> **Cowork tab (Linux sandbox):** The Playwright engine cannot run here. Use ONLY
> the Claude-in-Chrome MCP path (Phase 2-Cowork). The engine Python script will
> fail or produce empty sessions in this environment.
>
> Phase 0a below detects the runtime. Follow its output to determine which path to take.
---
## Phase 0a — Runtime Detection
Run this before anything else to determine which execution path to use:
```bash
python3 - <<'EOF'
import sys, shutil, socket
runtime = "cowork"
if sys.platform != "linux":
runtime = "code-tab"
elif shutil.which("google-chrome") or shutil.which("chromium"):
runtime = "code-tab"
else:
try:
s = socket.create_connection(("localhost", 9222), timeout=1)
s.close()
runtime = "code-tab"
except OSError:
pass
print(f"RUNTIME: {runtime}")
EOF
```
- **`RUNTIME: code-tab`** → continue to Phase 0, then follow the **Code Tab p