DannyMac180/fable-advisor

Claude Fable as an orchestrator for Opus, GPT and Grok

What it solves

It implements an "architect pattern" for AI-assisted coding to optimize the balance between reasoning quality, token cost, and accuracy. It prevents the "blind spots" that occur when a single model family handles both implementation and review by routing tasks across different model vendors (Claude and OpenAI) and varying reasoning effort levels based on the complexity of the task.

How it works

The project is a plugin for Claude Code that establishes a multi-agent orchestration system:

  • The Architect (Session Model): Runs on Fable 5.1. It handles high-level requirements, decomposes tasks into specifications, and verifies the final output.
  • Implementation Lanes: Tasks are routed to specific agents based on complexity:
    • Routine: Routed to codex-implementer (GPT-5.6 Luna) for straightforward tasks where the spec fully determines the outcome.
    • High-complexity: Routed to sol-implementer (GPT-5.6 Sol) for tasks requiring nuanced judgment, such as security-sensitive paths or complex refactors.
  • The Advisor: A read-only agent (Fable 5.1) that operates in a clean context to provide a skeptical final review of the accumulated changes before they are shipped.
  • Dynamic Effort: The architect specifies the reasoning effort (low to ultra) for each task, ensuring expensive compute is only used where it actually changes the outcome.

Who it’s for

Developers using Claude Code who want a rigorous, multi-model workflow for high-stakes software engineering where architectural integrity and cross-vendor verification are critical.

Highlights

  • Cross-Vendor Review: Automatically integrates Claude and GPT models to eliminate single-model family blind spots.
  • Context-Clean Skepticism: Uses a dedicated advisor agent in a fresh context to prevent the session's accumulated assumptions from biasing the final review.
  • Reasoning Effort Routing: Allows the architect to specify reasoning levels per task rather than pinning a global effort level.
  • Orchestration Skill: Provides a routing doctrine and a six-part spec contract to make context-free delegation safe.

Related

  • Project
  • Project
  • Project
  • Project
  • Project