-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 976 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 976 Bytes
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
{
"name": "agent-evolutions",
"version": "1.0.0",
"private": true,
"description": "Genetic exploration of solution spaces for AI coding agents — gather a verifiable objective, evolve variants, apply the winner.",
"author": {
"name": "Médéric Hurier",
"email": "github@fmind.dev",
"url": "https://fmind.dev"
},
"homepage": "https://github.com/fmind/agent-evolutions",
"repository": "https://github.com/fmind/agent-evolutions",
"license": "MIT",
"keywords": [
"agentic-coding",
"agent-skills",
"agent-evolutions",
"genetic-loop",
"variant-optimization",
"verifiable-scoring",
"gemini-cli",
"claude-code",
"github-copilot"
],
"scripts": {
"lint": "prettier --check \"**/*.{md,json,yml,yaml}\" && markdownlint-cli2",
"format": "prettier --write \"**/*.{md,json,yml,yaml}\" && markdownlint-cli2 --fix"
},
"devDependencies": {
"markdownlint-cli2": "^0.22.1",
"prettier": "^3.8.3"
}
}