harness-agnostic, model-agnostic: the core thesis
This commit is contained in:
parent
ee59a98c7e
commit
ac9a8ca32b
|
|
@ -1,15 +1,15 @@
|
||||||
# Fable Agent
|
# 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
|
node dist/index.js demo
|
||||||
# 3 seconds. Research → Learn → Sharpen → Compound. Live data.
|
# 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
|
```bash
|
||||||
git clone https://github.com/movez/fable-agent
|
git clone https://github.com/movez/fable-agent
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ const program = new Command();
|
||||||
|
|
||||||
program
|
program
|
||||||
.name("fable-agent")
|
.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);
|
.version(packageJson.version);
|
||||||
|
|
||||||
// ── Run ─────────────────────────────────────────────────────
|
// ── Run ─────────────────────────────────────────────────────
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue