Install the plugin so a Claude Code agent follows a structured think, act, verify loop.
Read the eval case studies to see how the method changes agent behavior on tricky tasks.
Use the fable-domain skill to generate new domain-specific instruction adapters.
Apply the judge skill to catch an agent falsely claiming finished, unverified work.
| sahir619/fable-method | facebookresearch/ai4animationpy | vasu-devs/justhireme | |
|---|---|---|---|
| Stars | 1,779 | 1,846 | 1,703 |
| Language | Python | Python | Python |
| Setup difficulty | easy | moderate | moderate |
| Complexity | 2/5 | 4/5 | 3/5 |
| Audience | developer | researcher | vibe coder |
Figures from each repo's GitHub metadata at analysis time.
The Fable Method is a set of instructions for AI coding agents that tries to capture how a particular model, called Claude Fable 5, approached problems before it was removed from its subscription. The author distilled that approach into a set of skills any model can follow, then tested the distillation against itself across fifteen rounds of evaluation and more than 260 agent runs, keeping a public log of both the wins and the failures. The core idea is a seven step loop: classify what is being asked, define what done looks like with a named way to verify it, gather evidence in parallel from primary sources, commit to one recommendation, make the smallest correct change, verify the result by actually observing it, and report the outcome first along with any honest caveats. Trivial one file changes skip most of this and just get done and checked quickly. The project argues that most agent instructions tell a model what to value in vague terms, like being careful, while this one tells it exactly what to do, in what order, with specific thresholds, so that even a smaller or cheaper model can follow it step by step. There are four skills that make up the method: one for thinking through a problem, one for acting on a plan, one for judging whether the finished work is actually trustworthy, and one for generating new domain specific adapters, following the same pattern the author observed the original model using. The evaluation results show the biggest improvement in tricky situations, such as an agent facing conflicting instructions or being tempted to claim work is finished when it is not, rather than in ordinary small tasks where capable models already do fine. It is distributed as a Claude Code plugin, installed from inside a Claude Code session by adding the marketplace and installing the plugin. The project is licensed under MIT.
A set of AI-agent skills that codifies a step-by-step think, act, verify workflow, tested across hundreds of evaluation runs.
Mainly Python. The stack also includes Python, Claude Code, Markdown.
Use freely for any purpose, including commercial use, as long as you keep the copyright notice.
Setup difficulty is rated easy, with roughly 5min to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Don't trust strangers blindly. Verify against the repo.