ray-multimodel

Orchestrates task delegation, review, and isolated Grok search across Grok, Claude, and Codex CLIs.

160|18|Updated Jul 13, 2026
One-click install
npx skills add https://github.com/imraywang/rayskills --skill ray-multimodel-imraywang
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: ray-multimodel
Source: https://github.com/imraywang/rayskills/tree/main/skills/ray-multimodel
Command: npx skills add https://github.com/imraywang/rayskills --skill ray-multimodel-imraywang

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve? Coordinating multiple AI models often leads to duplicated work, silent model swaps, unverified results, and accidental data leaks. This Skill turns the current session into a controller that decides when cross-model work is worthwhile, writes complete task packages, enforces isolation and permission boundaries, and independently verifies every external result before reporting completion. ## Core Features & Use Cases - Five routing modes: auto, fast (Grok executes well-specified work), review (a different vendor's model audits output read-only), race (two blind channels compete on identical task packages in separate workspaces), and scout (isolated Grok 4.5 search of X, Reddit, and the web with retained, verifiable evidence). - Hardened scout pipeline: The bundled run_search.py script verifies the Grok binary, sandboxes execution, validates structured results, checks Reddit dates against old.reddit.com, and retains runs for follow-up questions without re-searching. - Data egress gates: Task packages classify materials as public, internal, or sensitive; private repositories are never sent to external vendors or smuggled through temp directories. - Use Case: Ask whether a new AI coding tool is worth trying—the Skill runs a deep scout over the last 7 days of X posts, verifies key sources, and reports complaints and limitations with links, without touching your account. ## Quick Start Ask the assistant to use /ray-multimodel scout to research what X users are saying about a specific product in the last 7 days and verify the key sources before summarizing.

Frequently Asked Questions about ray-multimodel

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run multi-model collaboration across Grok, Claude, and Codex?▼

Invoke /ray-multimodel with a mode: auto, fast, review, race, or scout. The current session acts as controller, writes a complete task package with objective, scope, deliverables, constraints, and verification, then independently re-runs acceptance checks on whatever the external model returns.

How do I search X and Reddit with Grok from the command line?▼

Use scout mode, which runs the bundled run_search.py script with a platform (x, reddit, web, or auto), a time window like 7d, and quick or deep depth. It launches Grok 4.5 in an isolated sandbox and returns validated results with authors, dates, links, and limitations.

Can two AI models write code in the same directory at once?▼

No. The Skill enforces a single-writer rule: race implementations must use two independent workspaces, and both channels must finish before the controller compares them anonymously on correctness, evidence, scope discipline, maintainability, and uncertainty handling.

What happens if Grok is not installed or not logged in?▼

The wrapper returns explicit statuses like grok_not_found, grok_not_authenticated, or grok_model_unavailable. The controller reports the channel as unavailable with the original reason and never silently substitutes another model or fabricates results.

Is it safe to send a private repository to an external model for review?▼

Only with explicit authorization. Task packages classify data as public, internal, or sensitive, and the Skill refuses to bypass egress policies by copying files to temp directories. It offers public synthetic samples or requests explicit user approval instead.

When should I avoid using multi-model orchestration?▼

Skip it for simple rewrites, single facts, or one-step operations where extra round trips add no value. The Skill defaults to handling trivial tasks directly in the current session rather than manufacturing multi-model ceremony.