@lythos/skill-arena 0.14.5 → 0.14.6

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 (3) hide show
  1. package/README.md +1 -1
  2. package/package.json +7 -7
  3. package/src/cli.ts +1 -1
package/README.md CHANGED
@@ -16,7 +16,7 @@
16
16
  ```bash
17
17
  bun add -d @lythos/skill-arena
18
18
  # or use directly
19
- bunx @lythos/skill-arena@0.14.5 <command>
19
+ bunx @lythos/skill-arena@0.14.6 <command>
20
20
  ```
21
21
 
22
22
  ## Quick Start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lythos/skill-arena",
3
- "version": "0.14.5",
3
+ "version": "0.14.6",
4
4
  "description": "Skill Arena — benchmark skill effectiveness with controlled-variable comparison",
5
5
  "keywords": [
6
6
  "ai-agent",
@@ -42,15 +42,15 @@
42
42
  "bun": ">=1.0.0"
43
43
  },
44
44
  "dependencies": {
45
- "@lythos/cold-pool": "^0.14.5",
46
- "@lythos/infra": "^0.14.5",
47
- "@lythos/test-utils": "^0.14.5",
45
+ "@lythos/cold-pool": "^0.14.6",
46
+ "@lythos/infra": "^0.14.6",
47
+ "@lythos/test-utils": "^0.14.6",
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.14.5",
53
- "@lythos/agent-adapter-deepseek-serve": "^0.14.5",
54
- "@lythos/agent-adapter-codex": "^0.14.5"
52
+ "@lythos/agent-adapter-claude-sdk": "^0.14.6",
53
+ "@lythos/agent-adapter-deepseek-serve": "^0.14.6",
54
+ "@lythos/agent-adapter-codex": "^0.14.6"
55
55
  }
56
56
  }
package/src/cli.ts CHANGED
@@ -232,7 +232,7 @@ async function singleRun(args: string[]) {
232
232
  if (!res?.ok) {
233
233
  const errorDetail = res ? `HTTP ${res.status}` : 'unreachable'
234
234
  console.error(`❌ Cannot reach ${url} (${errorDetail})`)
235
- if (allFailed) console.error(' Set LYTHOSKILL_GH_MIRROR to use a custom mirror.')
235
+ if (allFailed) console.error(' Set LYTHOS_GH_MIRROR to use a custom mirror.')
236
236
  console.error(' Or download manually and reference the local file.')
237
237
  process.exit(1)
238
238
  }