@livx.cc/agentx 0.95.6 → 0.96.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +224 -43
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +66 -3
- package/dist/index.js +145 -21
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ Claude Code is the floor; running isolated, on the edge, or hybrid is the ceilin
|
|
|
30
30
|
| Tokens | **69k** | 171k — **2.5× fewer** |
|
|
31
31
|
| Wall-time | **~100s** | 133s — **~25% faster** |
|
|
32
32
|
|
|
33
|
-
**Cost** (9-task hard suite, USD-metered,
|
|
33
|
+
**Cost at parity** (9-task hard suite, USD-metered, REPEATS=2): all reach 9/9 — **$0.59** single-tier Sonnet (**~8× cheaper**) · **$0.93** three-tier voice/duplex (**~5× cheaper**, 8/9: one miss on a deliberately probabilistic task) vs CC-on-Opus **$4.82**. The win is the same correctness for a fraction of the spend.
|
|
34
34
|
|
|
35
35
|
Plus things Claude Code simply doesn't do:
|
|
36
36
|
|
package/dist/cli.d.ts
CHANGED
|
@@ -142,6 +142,7 @@ interface Args {
|
|
|
142
142
|
harden?: boolean;
|
|
143
143
|
hardenNet?: boolean;
|
|
144
144
|
worktree?: string;
|
|
145
|
+
updateCheck?: boolean;
|
|
145
146
|
}
|
|
146
147
|
declare function parseArgs(argv: string[]): Args;
|
|
147
148
|
/** Hooks that render tool activity to stderr: a preToolUse header, and for edits a colorized diff.
|