Leverage the Knowledge and Intelligence of 7 Leading AIs at Once
A Claude Code/Cowork 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 |
|---|---|---|---|
| Google Gemini | ✓ | ✓ Deep Research | ✓ |
| Claude.ai | ✓ | ✓ Pro plan | ✓ |
| ChatGPT | ✓ | ✓ Plus plan | ✓ |
| Microsoft Copilot | ✓ | — | ✓ |
| Perplexity | ✓ | ✓ Pro plan | ✓ |
| Grok | ✓ | ✓ | ✓ |
| DeepSeek | ✓ | ✓ DeepThink | ✓ |
From parallel submission to structured reports — built into your Claude Code workflow.
Analyzes your intent and selects the right workflow automatically — no flags, no routing decisions, no skill names to remember.
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.
Raw responses from all 7 platforms are synthesized into structured deliverables — 9-section landscape reports, product intelligence 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.
A timestamped run log is appended after every execution. Templates and scripts can be updated based on learnings from each run.
domains/{domain}.md is enriched after every research run. New archetypes, terminology, and trends accumulate across sessions.
Just describe what you need. /multai figures out the rest.
Ask about a product category or market — get a 9-section structured report with Top 20 commercial and OSS solutions, positioning matrices, and trend analysis.
Landscape 9 SectionsName a product or URL — get a Competitive Intelligence Report covering capabilities, integrations, pricing, and competitive context. Optionally scored in the comparison matrix.
Product CIRMaintain an XLSX capability matrix — add vendors, update scores, apply combo columns, reorder by weighted total, and verify coverage.
XLSX MatrixFor anything else — submit your question to all 7 platforms simultaneously and get a synthesized answer drawing on every perspective.
Direct 7 PlatformsFrom natural language request to structured deliverable in four steps.
"Research the DevOps platform landscape for SMBs"
/multai analyzes your intent, selects the right workflow, and builds the prompt
Playwright submits to all 7 platforms concurrently in DEEP mode
Responses are synthesized into 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.
/multai analyzes your intent and routes automatically. No flags or skill names 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.3.00.2.26040601 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/ # 98 pytest unit tests └── docs/ # SRS, Architecture, Test, CI/CD