whatisgithub

What is fusion-fable?

duolahypercho/fusion-fable — explained in plain English

Analysis updated 2026-05-18

70ShellAudience · developerComplexity · 2/5LicenseSetup · easy

In one sentence

A Claude Code skill that sends a hard question to several AI models in parallel, then has a judge model synthesize their answers into one grounded response.

Mindmap

mindmap
  root((fusion-fable))
    What it does
      Panel of models
      Independent answers
      Judge synthesis
    Tech stack
      Shell scripts
      Claude Code skill
    Use cases
      High stakes questions
      Comparing model answers
      Slash command trigger
    Audience
      Developers
      Claude Code users

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

What do people build with it?

USE CASE 1

Get a more thorough answer to a high-stakes question by comparing multiple independent AI model responses.

USE CASE 2

Trigger a multi-model panel from Claude Code either by natural language or a pinned slash command.

USE CASE 3

See where different AI models agree, disagree, or catch things the others missed on the same question.

What is it built with?

ShellClaude Code

How does it compare?

duolahypercho/fusion-fablefilipedeschamps/dotfilesduggasco/bc250-40cu-unlock
Stars706774
LanguageShellShellShell
Last pushed2025-04-23
MaintenanceStale
Setup difficultyeasymoderatehard
Complexity2/52/55/5
Audiencedeveloperdeveloperops devops

Figures from each repo's GitHub metadata at analysis time.

How do you get it running?

Difficulty · easy Time to first run · 5min

The basic same-model panel works with no extra setup, using GPT-5.5 or Gemini panelists requires installing and authenticating their separate CLIs.

Use freely for any purpose, including commercial use, as long as you keep the copyright notice.

So what is it?

Fusion-Fable is a skill for Claude Code, the AI coding assistant made by Anthropic. It addresses a specific problem: when you ask a single AI model a hard question, you get one reasoning path. If you ask the same question to several models independently and then compare their answers, you often get better coverage of the problem because each model reasons differently, searches different sources, and sometimes catches what the others miss. This tool automates that process. The way it works is called a panel-then-judge pipeline. You submit a question and the skill dispatches it to two or three AI models simultaneously. Each model answers on its own without seeing the others' responses. Once all answers are collected, a final step runs using Opus 4.8 (Anthropic's most capable model as of the time this was written) to compare the responses, identify where they agreed, where they contradicted each other, what each one covered that the others missed, and where all of them may have blind spots. It then writes a final answer grounded in that structured analysis. Three panel configurations are available. The simplest runs the same prompt twice through Opus 4.8, which the README notes still produces meaningfully different answers on each run. The second pairs Opus 4.8 with GPT-5.5, accessed through OpenAI's codex command-line tool. The third adds a Gemini model as a third panelist. The skill detects which tools are installed and automatically picks the richest panel that is available. Installing it copies a set of shell scripts and configuration files into the Claude Code skills directory. After installation, you can trigger it either by asking naturally in conversation or by typing a slash command like /fusion-opus4.8 followed by your question. The trade-off is explicit: running a panel costs more in tokens and takes longer than a single answer. The README frames this as a tool for high-stakes questions where being confidently wrong carries real cost, not for routine lookups. The project is MIT licensed.

Copy-paste prompts

Prompt 1
Install fusion-fable and show me which model panels my machine can run.
Prompt 2
Run this question through the Fusion panel: is it safe to ALTER TABLE on a large production table?
Prompt 3
Explain how the panel-then-judge pipeline in fusion-fable combines multiple model answers.
Prompt 4
Show me how to force a specific panel configuration when asking a question in Claude Code.

Frequently asked questions

What is fusion-fable?

A Claude Code skill that sends a hard question to several AI models in parallel, then has a judge model synthesize their answers into one grounded response.

What language is fusion-fable written in?

Mainly Shell. The stack also includes Shell, Claude Code.

What license does fusion-fable use?

Use freely for any purpose, including commercial use, as long as you keep the copyright notice.

How hard is fusion-fable to set up?

Setup difficulty is rated easy, with roughly 5min to a first successful run.

Who is fusion-fable for?

Mainly developer.

Open on GitHub → Ask about another repo

This repo across BitVibe Labs

Verify against the repo before relying on details.