-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.97 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "skill-optimizer",
"version": "2.0.0",
"description": "Benchmark, evaluate, and optimize skills to ensure reliable performance across all LLMs",
"license": "MIT",
"author": "Fast",
"homepage": "https://github.com/fastxyz/skill-optimizer#readme",
"bugs": {
"url": "https://github.com/fastxyz/skill-optimizer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastxyz/skill-optimizer.git"
},
"keywords": [
"agent",
"skills",
"agent-skills",
"evals",
"skill-testing",
"model-evaluation"
],
"type": "module",
"main": "./dist/index.js",
"files": [
"dist/",
"docker/",
"src/",
"scripts/",
"docs/",
"docs/README.codex.md",
"docs/README.opencode.md",
"examples/workbench/README.md",
"examples/workbench/pdf/README.md",
"examples/workbench/pdf/suite.yml",
"examples/workbench/pdf/checks/",
"examples/workbench/pdf/references/",
"examples/workbench/mcp/README.md",
"examples/workbench/mcp/suite.yml",
"examples/workbench/mcp/checks/",
"examples/workbench/mcp/mcp/",
"examples/workbench/mcp/references/",
"skills/",
".agents/plugins/marketplace.json",
".claude-plugin/",
".codex-plugin/",
".cursor-plugin/",
".opencode/plugins/skill-optimizer.js",
".opencode/INSTALL.md",
".codex/INSTALL.md",
".cursor/INSTALL.md",
"AGENTS.md",
"CLAUDE.md",
"CONTRIBUTING.md",
"README.md",
"GEMINI.md",
"gemini-extension.json",
"LICENSE",
"CHANGELOG.md",
"package-lock.json",
"tsconfig.json"
],
"bin": {
"skill-optimizer": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./server": {
"import": "./.opencode/plugins/skill-optimizer.js"
}
},
"scripts": {
"prepack": "npm run build",
"clean": "node --eval \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true });\"",
"dev": "tsx src/cli.ts",
"build": "tsc && chmod +x dist/cli.js",
"typecheck": "tsc --noEmit",
"lint": "tsc --noUnusedLocals --noEmit",
"test": "tsx tests/smoke-workbench-case.ts && tsx tests/smoke-workbench-checks.ts && tsx tests/smoke-workbench-trace.ts && tsx tests/smoke-workbench-container.ts && tsx tests/smoke-workbench-docker-runner.ts && tsx tests/smoke-workbench-pi-agent.ts && tsx tests/smoke-workbench-run-case.ts && tsx tests/smoke-workbench-models.ts && tsx tests/smoke-workbench-suite.ts && tsx tests/smoke-workbench-trials.ts && tsx tests/smoke-workbench-metrics.ts && tsx tests/smoke-skill-distribution.ts"
},
"dependencies": {
"@mariozechner/pi-agent-core": "^0.66.1",
"@mariozechner/pi-ai": "^0.66.1",
"@mariozechner/pi-coding-agent": "^0.66.1",
"dotenv": "^17.4.1",
"mcporter": "^0.9.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@types/node": "^22.12.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20"
}
}