← ClaudeAtlas

multailisted

Intelligent Multi-AI Router & Orchestrator. Submits prompts to 7 AI platforms simultaneously (or sequentially in Cowork) and synthesizes results. Supports two runtimes automatically detected at startup: • Code tab (Mac): Playwright/Browser-Use engine — parallel, full-featured • Cowork tab (Linux sandbox): Claude-in-Chrome MCP — sequential, zero-setup auth This skill is the PRIMARY ENTRY POINT for all research and multi-AI tasks. It reads the user's intent and routes to the correct specialist skill: - "landscape" / "market map" / "ecosystem" / "vendor landscape" / "market overview" / "competitive landscape" / "category survey" / "industry landscape" / "Gartner-style" → landscape-researcher skill - Product URL + research intent, specific product name + evaluate/benchmark/ research/analyze, "competitive intelligence", "capabilities report" → solution-researcher skill - "comparison matrix" / "add platform" / "update matrix" / "combo column" / "verify ticks" / "reorder matrix" → comparator skill - Any other multi-
alo-exp/multai · ★ 2 · AI & Automation · score 63
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