@lythos/skill-arena 0.13.2 → 0.13.3

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.
Files changed (2) hide show
  1. package/README.md +6 -6
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -49,7 +49,7 @@ Note: Claude `-p` mode has known issues with web tools in Bun.spawn (deferred to
49
49
  ```bash
50
50
  bun add -d @lythos/skill-arena
51
51
  # or use directly
52
- bunx @lythos/skill-arena@0.13.2 <command>
52
+ bunx @lythos/skill-arena@0.13.3 <command>
53
53
  ```
54
54
 
55
55
  ## Quick Start
@@ -85,23 +85,23 @@ bunx @lythos/skill-arena@latest vs --config ./arena.toml
85
85
 
86
86
  ```bash
87
87
  # Print execution plan without running
88
- bunx @lythos/skill-arena@0.13.2 vs --config arena.toml --dry-run
88
+ bunx @lythos/skill-arena@0.13.3 vs --config arena.toml --dry-run
89
89
 
90
90
  # Execute with per-side runs_per_side and statistical aggregation
91
- bunx @lythos/skill-arena@0.13.2 vs --config arena.toml
91
+ bunx @lythos/skill-arena@0.13.3 vs --config arena.toml
92
92
  ```
93
93
 
94
94
  ### Scaffold mode (legacy, manual execution)
95
95
 
96
96
  ```
97
- bunx @lythos/skill-arena@0.13.2 scaffold --task "Generate auth flow diagram" \
97
+ bunx @lythos/skill-arena@0.13.3 scaffold --task "Generate auth flow diagram" \
98
98
  --decks https://raw.githubusercontent.com/lythos-labs/lythoskill/main/examples/decks/scout.toml,https://raw.githubusercontent.com/lythos-labs/lythoskill/main/examples/decks/documents.toml
99
99
  ```
100
100
 
101
101
  ### Viz
102
102
 
103
103
  ```bash
104
- bunx @lythos/skill-arena@0.13.2 viz runs/arena-<id>/
104
+ bunx @lythos/skill-arena@0.13.3 viz runs/arena-<id>/
105
105
  ```
106
106
 
107
107
  ## Skill Documentation
@@ -115,7 +115,7 @@ The agent-visible **Skill** layer documentation is here:
115
115
  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).
116
116
 
117
117
  ```
118
- Starter (this package) → npm publish → bunx @lythos/skill-arena@0.13.2 ...
118
+ Starter (this package) → npm publish → bunx @lythos/skill-arena@0.13.3 ...
119
119
  Skill (packages/<name>/skill/) → build → SKILL.md + thin scripts
120
120
  Output (skills/<name>/) → git commit → agent-visible skill
121
121
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lythos/skill-arena",
3
- "version": "0.13.2",
3
+ "version": "0.13.3",
4
4
  "description": "Skill Arena — benchmark skill effectiveness with controlled-variable comparison",
5
5
  "keywords": [
6
6
  "ai-agent",
@@ -42,13 +42,13 @@
42
42
  "bun": ">=1.0.0"
43
43
  },
44
44
  "dependencies": {
45
- "@lythos/cold-pool": "^0.13.2",
46
- "@lythos/infra": "^0.13.2",
47
- "@lythos/test-utils": "^0.13.2",
45
+ "@lythos/cold-pool": "^0.13.3",
46
+ "@lythos/infra": "^0.13.3",
47
+ "@lythos/test-utils": "^0.13.3",
48
48
  "zod": "^3.24.0",
49
49
  "zod-to-json-schema": "^3.25.2"
50
50
  },
51
51
  "optionalDependencies": {
52
- "@lythos/agent-adapter-claude-sdk": "^0.13.2"
52
+ "@lythos/agent-adapter-claude-sdk": "^0.13.3"
53
53
  }
54
54
  }