diff --git a/TODO.md b/TODO.md index db205ae..2cada5e 100644 --- a/TODO.md +++ b/TODO.md @@ -30,7 +30,7 @@ ## Polish -- [ ] Fix trigger matching — only trigger when nick is at the start of the message, not anywhere in text. Currently "say hi to worker" triggers worker even when addressed to another agent. +- [ ] Agent-to-agent response quality — small models (7B) parrot messages instead of answering. Needs better prompting ("don't repeat the question, answer it") or larger models (14B+). Claude API would help here. - [ ] Cost tracking per agent interaction - [ ] Execution recording / audit trail - [ ] Agent health checks — overseer pings agents, restarts dead ones diff --git a/package.json b/package.json index 958a7ae..9f5cbcb 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "fireclaw", - "version": "0.1.0", - "description": "Run commands in ephemeral Firecracker microVMs", + "version": "0.1.2", + "description": "Multi-agent system powered by Firecracker microVMs", "type": "module", "bin": { "fireclaw": "./dist/index.js" diff --git a/src/cli.ts b/src/cli.ts index 1895c23..4625188 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -16,7 +16,7 @@ export function createCli() { program .name("fireclaw") .description("Run commands in ephemeral Firecracker microVMs") - .version("0.1.0"); + .version("0.1.2"); program .command("run")