Agent Plugins Marketplace
All plugins

fable-harness

v0.3.0

Spec-anchored workflow for autonomous coding runs on Claude Fable 5.1: brief, run, verify, checkpoint, with an optional codex provider mode that routes implementation to gpt-5.6-sol or gpt-5.6-luna. Built from Anthropic's Fable 5.1 docs.

Claude Code4 Skills

By Michael Kissinger1 GitHub starsUpdated 45 minutes ago

Directory evidence

Runtimes
Claude Code
Parsed components
4 skill or MCP entries
Source updated
Sep 3, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install fable-harness for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install fable-harness@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/mckissinger/fable-harness

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.

Plugin files

fable-harness/
├── .claude-plugin/plugin.json
├── skills/fable-brief/SKILL.md
├── skills/fable-checkpoint/SKILL.md
├── skills/fable-mode/SKILL.md
└── skills/fable-verify/SKILL.md

Included Skills4

fable-briefskills/fable-brief/SKILL.md

Start substantial coding work on Claude Fable 5.1. On a project with no spec, it creates SPEC.md from the request and whatever structures the user supplies, then stops for review. On a project with a spec, it briefs the next slice (outcome, checkable done-conditions, out-of-scope, assumptions, checks, branch), runs it to completion, verifies, and updates the spec. Use at the start of any task beyond a few tool calls (features, multi-file changes, refactors, migrations, debugging), or when the user says "brief this", "start the project", "next slice", or "run this end to end".

fable-checkpointskills/fable-checkpoint/SKILL.md

Save transient session state when stopping mid-slice so the next Claude Code session resumes exactly where this one stopped. The spec holds the durable expectations; the checkpoint holds what the spec does not — position within the current step, problems and how they were handled, options tried and set aside, and details that are hard to reconstruct. Use before stopping mid-task, when the user says "checkpoint", "save state", "hand off", or "we'll continue later".

fable-modeskills/fable-mode/SKILL.md

Set or report the harness's provider mode for this project. `fable` (default) has Fable 5.1 implement each slice itself; `codex` hands implementation to an OpenAI Codex model (gpt-5.6-sol or gpt-5.6-luna) through the user's installed `codex exec`, routed by task class, while Fable briefs, keeps the spec, and verifies. Use when the user says "switch to codex mode", "use sol/luna for implementation", "what mode are we in", or "back to fable mode".

fable-verifyskills/fable-verify/SKILL.md

Independently verify a finished slice in a fresh, read-only context before reporting it done — checks the diff against the spec's done-conditions, runs the project's checks, hunts for bugs, and records verified status in the spec. Use after completing a slice, before opening a PR, or when the user asks "is this actually done", "verify", or "double-check".

Plugin manifests1

.claude-plugin/plugin.json
{
  "name": "fable-harness",
  "displayName": "Fable Harness",
  "version": "0.3.0",
  "description": "Spec-anchored workflow for autonomous coding runs on Claude Fable 5.1: brief, run, verify, checkpoint, with an optional codex provider mode that routes implementation to gpt-5.6-sol or gpt-5.6-luna. Built from Anthropic's Fable 5.1 docs.",
  "author": {
    "name": "Michael Kissinger",
    "email": "[email protected]"
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[fable-harness on Agent Plugins Marketplace](https://pluginsmp.com/plugins/fable-harness)