-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.84 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.84 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
{
"name": "skill-optimizer",
"version": "1.1.0",
"description": "Benchmark and optimizer for evaluating SDK, CLI, and MCP guidance with static action matching.",
"license": "MIT",
"author": "Pi2 Labs",
"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": [
"benchmark",
"optimizer",
"mcp",
"sdk",
"cli",
"llm",
"tool-calling",
"evaluation"
],
"type": "module",
"files": [
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"bin": {
"skill-optimizer": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"benchmark": "tsx src/cli.ts run",
"prepack": "npm run build",
"clean": "node --eval \"import { rmSync } from 'node:fs'; rmSync('dist', { recursive: true, force: true });\"",
"dev": "tsx src/cli.ts",
"optimize": "tsx src/cli.ts optimize",
"materialize:mock": "tsx src/optimizer/materialize-mock-repo.ts",
"gen-docs": "tsx scripts/gen-docs.ts",
"build": "tsc && npm run gen-docs && chmod +x dist/cli.js",
"typecheck": "tsc --noEmit",
"lint": "tsc --noUnusedLocals --noEmit",
"test": "tsx tests/smoke-code.ts && tsx tests/smoke-sdk-python.ts && tsx tests/smoke-sdk-rust.ts && tsx tests/smoke-cli.ts && tsx tests/smoke-cli-entry.ts && tsx tests/smoke-mcp.ts && tsx tests/smoke-llm.ts && tsx tests/smoke-discovery-sdk.ts && tsx tests/smoke-discovery-cli.ts && tsx tests/smoke-discovery-mcp.ts && tsx tests/smoke-prompt-evaluator.ts && tsx tests/smoke-prompt-criteria.ts && tsx tests/smoke-snapshot-prompt.ts && tsx tests/smoke-generation.ts && tsx tests/smoke-optimize.ts && tsx tests/smoke-mock-repos.ts && tsx tests/smoke-release.ts && tsx tests/smoke-changelog-coverage.ts && tsx tests/smoke-scoring.ts && tsx tests/smoke-scope.ts && tsx tests/smoke-coverage.ts && tsx tests/smoke-feedback.ts && tsx tests/smoke-verdict.ts && tsx tests/smoke-verdict-prompt.ts && tsx tests/smoke-dry-run.ts && tsx tests/smoke-errors.ts && tsx tests/smoke-model-ids.ts && tsx tests/smoke-e2e.ts && tsx tests/smoke-import.ts && tsx tests/smoke-init.ts && tsx tests/smoke-gen-docs.ts && tsx tests/smoke-actions.ts"
},
"dependencies": {
"@clack/prompts": "^1.2.0",
"@mariozechner/pi-agent-core": "^0.66.1",
"@mariozechner/pi-ai": "^0.66.1",
"@mariozechner/pi-coding-agent": "^0.66.1",
"dotenv": "^17.4.1",
"tree-sitter-wasms": "^0.1.13",
"web-tree-sitter": "^0.24.7",
"zod": "^4.3.6",
"zod-to-json-schema": "^3.25.2"
},
"devDependencies": {
"@types/node": "^22.12.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20"
}
}