包含: - 核心配置文件(AGENTS.md, SOUL.md, USER.md等) - 记忆系统(memory/文件夹) - 技能库(skills/文件夹) - 小说内容(novel/文件夹) - .gitignore配置
39 lines
986 B
JSON
39 lines
986 B
JSON
{
|
|
"name": "@evomap/evolver",
|
|
"version": "1.31.0",
|
|
"description": "A GEP-powered self-evolution engine for AI agents. Features automated log analysis and Genome Evolution Protocol (GEP) for auditable, reusable evolution assets.",
|
|
"main": "index.js",
|
|
"bin": {
|
|
"evolver": "index.js"
|
|
},
|
|
"keywords": [
|
|
"evomap",
|
|
"ai",
|
|
"evolution",
|
|
"gep",
|
|
"meta-learning",
|
|
"self-repair",
|
|
"automation",
|
|
"agent"
|
|
],
|
|
"author": "EvoMap <team@evomap.ai>",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/EvoMap/evolver.git"
|
|
},
|
|
"homepage": "https://evomap.ai",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"run": "node index.js run",
|
|
"solidify": "node index.js solidify",
|
|
"review": "node index.js review",
|
|
"a2a:export": "node scripts/a2a_export.js",
|
|
"a2a:ingest": "node scripts/a2a_ingest.js",
|
|
"a2a:promote": "node scripts/a2a_promote.js"
|
|
},
|
|
"dependencies": {
|
|
"dotenv": "^16.4.7"
|
|
}
|
|
}
|