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 ─────────────────────────────────────────────────────