Leverage the Knowledge and Intelligence of 7 Leading AIs at Once
A Claude Cowork/Code plugin that submits research prompts to Claude.ai, ChatGPT, Copilot, Perplexity, Grok, DeepSeek & Gemini in parallel — then synthesizes the results into structured reports, landscape analyses, and comparison matrices.
Each platform brings a different training set, reasoning style, and search index. MultAI queries all seven simultaneously via Playwright browser automation — no API keys needed.
| Platform | Free Tier | DEEP Mode | Agent Fallback |
|---|---|---|---|
| Claude.ai | ✓ | ✓ Pro plan | ✓ |
| ChatGPT | ✓ | ✓ Plus plan | ✓ |
| Microsoft Copilot | ✓ | — | ✓ |
| Perplexity | ✓ | ✓ Pro plan | ✓ |
| Grok | ✓ | ✓ | ✓ |
| DeepSeek | ✓ | ✓ DeepThink | ✓ |
| Google Gemini | ✓ | ✓ Deep Research | ✓ |
From parallel submission to structured reports — built into your Claude Code workflow.
The orchestrator analyzes your intent and routes to the correct skill automatically — landscape, solution, comparator, or direct multi-AI.
All 7 platforms run concurrently via asyncio.gather(). A typical REGULAR-mode run completes in under 90 seconds.
Activates each platform's research/think mode (Deep Research, DeepThink, etc.) for comprehensive answers with citations.
Consolidator synthesizes raw responses into structured deliverables — CIRs, 9-section landscape reports, or free-form summaries.
Maintain a capability matrix with weighted scores, combo columns, and auto-reordering. All via Python scripts.
Per-platform budgets, cooldowns, and daily caps — persisted across sessions. Never get rate-limited again.
When a Playwright selector fails, a vision-based browser-use agent takes over — powered by Claude Sonnet or Gemini Flash.
Each skill appends a timestamped run log after every execution and can update its own templates and scripts based on learnings.
domains/{domain}.md is enriched by both research skills after every run. New archetypes, terminology, and trends persist across sessions.
Each skill handles a specific research workflow. The orchestrator routes automatically — or you can invoke directly.
Intelligent router + engine owner. Entry point for all workflows.
Router EngineProduces 9-section Market Landscape Reports for any solution category.
Research 9 SectionsDeep-dive on a specific product — capabilities, pricing, competitive context.
Product CIRMaintains XLSX capability matrices with weighted scores and combo columns.
XLSX MatrixSynthesizes raw multi-AI responses into unified structured reports. Called automatically by other skills.
SynthesisFrom natural language request to structured deliverable in four steps.
"Research the DevOps platform landscape for SMBs"
Orchestrator selects landscape-researcher and builds the prompt
Playwright submits to all 7 platforms concurrently in DEEP mode
Consolidator produces a 9-section landscape report with Top 20 vendors
Python dependencies install automatically on your first session via a SessionStart hook. No manual setup.
No API keys required for core functionality.
The engine uses Playwright browser automation with your existing Chrome logins. Optionally add GOOGLE_API_KEY (free) or ANTHROPIC_API_KEY for vision-based agent fallback.
The orchestrator routes to the right skill based on your intent. No slash commands needed.
Per-platform budgets, cooldowns, and daily caps prevent rate limiting. State persists across sessions.
| Tier | Budget / Session | Cooldown | Daily Cap |
|---|---|---|---|
| free | 3 requests | 30 min | 5 |
| pro | 10 requests | 5 min | 20 |
Friendly end-user guide: installation walkthroughs, skill overviews, viewing reports, troubleshooting.
Full 1,100-line technical reference: CLI flags, platform internals, rate limiting, tests, CI/CD.
System topology, data flows, module design, interface contracts, design decisions.
Software Requirements Specification: functional requirements, use cases, constraints.
96 automated tests, E2E test plan, test case reference, coverage matrix.
Pipeline stages, make targets, deployment scope, regression checks.
Version history from v2.0 through v0.2.260320A Alpha with migration notes.
Each skill owns its scripts, templates, and guides. No shared engine at the root — skills are portable modules.
multai/ ├── skills/ │ ├── orchestrator/ # Router + Playwright engine │ │ ├── SKILL.md │ │ └── engine/ # orchestrator.py, platforms/, rate_limiter.py │ ├── landscape-researcher/ # Market landscape reports │ ├── solution-researcher/ # Product deep-dives (CIR) │ ├── comparator/ # XLSX matrix ops scripts │ └── consolidator/ # Response synthesis ├── domains/ # Shared domain knowledge ├── reports/ # Output + preview.html viewer ├── tests/ # 96 pytest unit tests └── docs/ # SRS, Architecture, Test, CI/CD