@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.
- package/README.md +1 -1
- package/package.json +7 -7
- package/src/cli.ts +1 -1
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lythos/skill-arena",
|
|
3
|
-
"version": "0.14.
|
|
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.
|
|
46
|
-
"@lythos/infra": "^0.14.
|
|
47
|
-
"@lythos/test-utils": "^0.14.
|
|
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.
|
|
53
|
-
"@lythos/agent-adapter-deepseek-serve": "^0.14.
|
|
54
|
-
"@lythos/agent-adapter-codex": "^0.14.
|
|
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
|
|
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
|
}
|