@lythos/skill-arena 0.9.13 → 0.9.15
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 +10 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,26 +18,26 @@
|
|
|
18
18
|
```bash
|
|
19
19
|
bun add -d @lythos/skill-arena
|
|
20
20
|
# or use directly
|
|
21
|
-
bunx @lythos/skill-arena <command>
|
|
21
|
+
bunx @lythos/skill-arena@0.9.15 <command>
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
## Quick Start
|
|
25
25
|
|
|
26
26
|
```bash
|
|
27
27
|
# Mode 1: Compare two skills on the same task
|
|
28
|
-
bunx @lythos/skill-arena \
|
|
28
|
+
bunx @lythos/skill-arena@0.9.15 \
|
|
29
29
|
--task "Generate auth flow diagram" \
|
|
30
30
|
--skills "design-doc-mermaid,mermaid-tools" \
|
|
31
31
|
--criteria "syntax,context,token"
|
|
32
32
|
|
|
33
33
|
# Mode 2: Compare full deck configurations
|
|
34
|
-
bunx @lythos/skill-arena \
|
|
34
|
+
bunx @lythos/skill-arena@0.9.15 \
|
|
35
35
|
--task "Generate auth flow diagram" \
|
|
36
36
|
--decks "./decks/minimal.toml,./decks/rich.toml" \
|
|
37
37
|
--criteria "quality,token,maintainability"
|
|
38
38
|
|
|
39
39
|
# Visualize results
|
|
40
|
-
bunx @lythos/skill-arena viz tmp/arena-<id>/
|
|
40
|
+
bunx @lythos/skill-arena@0.9.15 viz tmp/arena-<id>/
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
## Commands
|
|
@@ -46,16 +46,16 @@ bunx @lythos/skill-arena viz tmp/arena-<id>/
|
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
48
|
# Print execution plan without running
|
|
49
|
-
bunx @lythos/skill-arena run --config arena.toml --dry-run
|
|
49
|
+
bunx @lythos/skill-arena@0.9.15 run --config arena.toml --dry-run
|
|
50
50
|
|
|
51
51
|
# Execute with per-side runs_per_side and statistical aggregation
|
|
52
|
-
bunx @lythos/skill-arena run --config arena.toml
|
|
52
|
+
bunx @lythos/skill-arena@0.9.15 run --config arena.toml
|
|
53
53
|
```
|
|
54
54
|
|
|
55
55
|
### CLI-flag mode (backward compat)
|
|
56
56
|
|
|
57
57
|
```
|
|
58
|
-
bunx @lythos/skill-arena run \
|
|
58
|
+
bunx @lythos/skill-arena@0.9.15 run \
|
|
59
59
|
--task ./TASK-arena.md \
|
|
60
60
|
--players ./players/claude.toml \
|
|
61
61
|
--decks ./decks/run-01.toml,./decks/run-02.toml \
|
|
@@ -65,13 +65,13 @@ bunx @lythos/skill-arena run \
|
|
|
65
65
|
### Scaffold mode (legacy, manual execution)
|
|
66
66
|
|
|
67
67
|
```
|
|
68
|
-
bunx @lythos/skill-arena scaffold --task "..." --skills a,b
|
|
68
|
+
bunx @lythos/skill-arena@0.9.15 scaffold --task "..." --skills a,b
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
### Viz
|
|
72
72
|
|
|
73
73
|
```bash
|
|
74
|
-
bunx @lythos/skill-arena viz runs/arena-<id>/
|
|
74
|
+
bunx @lythos/skill-arena@0.9.15 viz runs/arena-<id>/
|
|
75
75
|
```
|
|
76
76
|
|
|
77
77
|
## Skill Documentation
|
|
@@ -85,7 +85,7 @@ The agent-visible **Skill** layer documentation is here:
|
|
|
85
85
|
Part of the [lythoskill](https://github.com/lythos-labs/lythoskill) ecosystem — the thin-skill pattern separates heavy logic (this npm package) from lightweight agent instructions (SKILL.md).
|
|
86
86
|
|
|
87
87
|
```
|
|
88
|
-
Starter (this package) → npm publish → bunx @lythos/skill-arena ...
|
|
88
|
+
Starter (this package) → npm publish → bunx @lythos/skill-arena@0.9.15 ...
|
|
89
89
|
Skill (packages/<name>/skill/) → build → SKILL.md + thin scripts
|
|
90
90
|
Output (skills/<name>/) → git commit → agent-visible skill
|
|
91
91
|
```
|