helixevo 0.2.0

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 +193 -0
  2. package/dist/cli.js +12869 -0
  3. package/package.json +46 -0
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "helixevo",
3
+ "version": "0.2.0",
4
+ "description": "Self-evolving skill ecosystem for AI agents. Skills and projects co-evolve through multi-judge evaluation and a Pareto frontier.",
5
+ "type": "module",
6
+ "bin": {
7
+ "helixevo": "dist/cli.js"
8
+ },
9
+ "files": [
10
+ "dist/",
11
+ "README.md",
12
+ "LICENSE"
13
+ ],
14
+ "scripts": {
15
+ "build": "bun build src/cli.ts --outdir dist --target node",
16
+ "dev": "bun run src/cli.ts",
17
+ "typecheck": "tsc --noEmit",
18
+ "prepare": "npm run build",
19
+ "prepublishOnly": "npm run typecheck && npm run build"
20
+ },
21
+ "dependencies": {
22
+ "commander": "^13.1.0",
23
+ "yaml": "^2.7.0"
24
+ },
25
+ "devDependencies": {
26
+ "@types/node": "^22.0.0",
27
+ "typescript": "^5.7.0"
28
+ },
29
+ "keywords": [
30
+ "ai",
31
+ "agent",
32
+ "skills",
33
+ "evolution",
34
+ "claude",
35
+ "claude-code",
36
+ "helixevo",
37
+ "helix",
38
+ "co-evolution",
39
+ "pareto-frontier",
40
+ "llm"
41
+ ],
42
+ "license": "MIT",
43
+ "engines": {
44
+ "node": ">=18.0.0"
45
+ }
46
+ }