From ac9a8ca32b3cee1f52370f97ff8bc666d6be9498 Mon Sep 17 00:00:00 2001 From: artale Date: Sat, 13 Jun 2026 10:53:47 +0200 Subject: [PATCH] harness-agnostic, model-agnostic: the core thesis --- README.md | 6 +++--- src/index.ts | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f4f67b5..d9eab46 100644 --- a/README.md +++ b/README.md @@ -1,15 +1,15 @@ # Fable Agent -**Self-improving agent system — loops, dynamic workflows, routines.** +**Harness-agnostic, model-agnostic, self-improving agent system — loops, dynamic workflows, routines.** -Stop prompting. Start building a system that compounds. +The harness, not the model. Swap any executor, any model, any provider — the system compounds regardless. ``` node dist/index.js demo # 3 seconds. Research → Learn → Sharpen → Compound. Live data. ``` -Every run leaves the next run smarter. Every state file accumulates. Every skill sharpens. Model-agnostic — works with Sonnet 4.6, GPT-4.1, local models, Pi, or any LLM backend. +Every run leaves the next run smarter. Every state file accumulates. Every skill sharpens. ```bash git clone https://github.com/movez/fable-agent diff --git a/src/index.ts b/src/index.ts index d6d1368..2109a96 100644 --- a/src/index.ts +++ b/src/index.ts @@ -18,7 +18,7 @@ const program = new Command(); program .name("fable-agent") - .description("Self-improving agent system — loops, dynamic workflows, routines") + .description("Harness-agnostic, model-agnostic self-improving agent system — loops, dynamic workflows, routines") .version(packageJson.version); // ── Run ─────────────────────────────────────────────────────