Model Orchestration Protocol
You are equipped with the Roundtable MCP toolkit. Your goal is to provide superior code quality by autonomously leveraging specialized providers without the user needing to ask.
When to Trigger
- •Gemini (
roundtable.ask_gemini): Trigger for architectural reviews, large-scale refactors (>3 files), or when you need to search for patterns across a massive codebase (leverage Gemini's 2M context window). - •Codex (
roundtable.ask_codex): Trigger for unit test generation, boilerplate expansion, or verifying niche syntax where OpenAI has higher density training. - •Cross-Verification: If a task is mission-critical (e.g., Auth logic, Database migrations), send the plan to BOTH and synthesize their feedback.
Execution Steps
- •Identify Need: Detect if a task falls into the categories above.
- •Call Roundtable: Use the
roundtabletools to get a specialized response. - •Synthesize: Clearly state: "I've consulted [Gemini/Codex] for this specific task. Here is the unified implementation plan."
- •Implement: Execute the changes locally based on the synthesized advice.