evo-anything 0.1.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.
- package/LICENSE +201 -0
- package/README.md +322 -0
- package/README_EN.md +321 -0
- package/package.json +34 -0
- package/plugin/AGENTS.md +89 -0
- package/plugin/SOUL.md +7 -0
- package/plugin/TOOLS.md +32 -0
- package/plugin/evo-engine/models.py +103 -0
- package/plugin/evo-engine/pyproject.toml +16 -0
- package/plugin/evo-engine/selection.py +210 -0
- package/plugin/evo-engine/server.py +622 -0
- package/plugin/openclaw.plugin.json +18 -0
- package/plugin/skills/boost/SKILL.md +10 -0
- package/plugin/skills/evolve/SKILL.md +40 -0
- package/plugin/skills/freeze/SKILL.md +10 -0
- package/plugin/skills/hunt/SKILL.md +99 -0
- package/plugin/skills/report/SKILL.md +42 -0
- package/plugin/skills/status/SKILL.md +20 -0
- package/scripts/cli.js +152 -0
- package/scripts/postinstall.js +52 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,322 @@
|
|
|
1
|
+
# Evo-anything Plugin — Git-Based Evolutionary Code Optimizer
|
|
2
|
+
|
|
3
|
+
Evo-anything 是基于论文 **"From Understanding to Excelling: Template-Free Algorithm Design through Structural-Functional Co-Evolution"**(arXiv:2503.10721)的工程实现。它通过 LLM 驱动的**结构-功能协同演化**,在任意 git 仓库上自动演化代码,追求更优的 benchmark 表现。
|
|
4
|
+
|
|
5
|
+
> **论文引用:** Zhe Zhao, Haibin Wen, Pengkun Wang, Ye Wei, Zaixi Zhang, Xi Lin, Fei Liu, Bo An, Hui Xiong, Yang Wang, Qingfu Zhang. *From Understanding to Excelling: Template-Free Algorithm Design through Structural-Functional Co-Evolution.* arXiv:2503.10721 [cs.SE], 2025.
|
|
6
|
+
|
|
7
|
+
## 安装
|
|
8
|
+
|
|
9
|
+
### 前置条件
|
|
10
|
+
|
|
11
|
+
- Python >= 3.11
|
|
12
|
+
- Git
|
|
13
|
+
- GitHub CLI (`gh`) — 用于 `/hunt` 搜索仓库
|
|
14
|
+
|
|
15
|
+
### 方式一:npm 一键安装(推荐)
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install -g evo-anything
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
安装过程中会自动调用 `pip install` 完成 Python MCP server 的安装。
|
|
22
|
+
|
|
23
|
+
安装完成后,运行 setup 配置你的 AI IDE:
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
# 配置所有支持的平台(Claude Code、Cursor、Windsurf、OpenClaw)
|
|
27
|
+
npx evo-anything setup
|
|
28
|
+
|
|
29
|
+
# 或只配置指定平台
|
|
30
|
+
npx evo-anything setup --platform claude
|
|
31
|
+
npx evo-anything setup --platform cursor
|
|
32
|
+
npx evo-anything setup --platform windsurf
|
|
33
|
+
npx evo-anything setup --platform openclaw
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
### 方式二:手动安装
|
|
39
|
+
|
|
40
|
+
#### 通用步骤:安装 evo-engine
|
|
41
|
+
|
|
42
|
+
无论使用哪个平台,都需要先安装 MCP server:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
git clone https://github.com/DataLab-atom/Evo-anything.git
|
|
46
|
+
cd Evo-anything/plugin/evo-engine
|
|
47
|
+
pip install .
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
---
|
|
51
|
+
|
|
52
|
+
### OpenClaw
|
|
53
|
+
|
|
54
|
+
<details>
|
|
55
|
+
<summary>CLI 一键安装(推荐)</summary>
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
openclaw plugins install openclaw-evo
|
|
59
|
+
openclaw gateway restart
|
|
60
|
+
openclaw plugins doctor # 验证
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
</details>
|
|
64
|
+
|
|
65
|
+
<details>
|
|
66
|
+
<summary>本地开发模式</summary>
|
|
67
|
+
|
|
68
|
+
```bash
|
|
69
|
+
openclaw plugins install -l ./plugin
|
|
70
|
+
openclaw gateway restart
|
|
71
|
+
```
|
|
72
|
+
|
|
73
|
+
</details>
|
|
74
|
+
|
|
75
|
+
<details>
|
|
76
|
+
<summary>手动安装</summary>
|
|
77
|
+
|
|
78
|
+
将插件复制到扩展目录,并在 `~/.openclaw/openclaw.json` 中注册:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
cp -r plugin/ ~/.openclaw/extensions/openclaw-evo/
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
```json
|
|
85
|
+
{
|
|
86
|
+
"plugins": {
|
|
87
|
+
"entries": {
|
|
88
|
+
"openclaw-evo": {
|
|
89
|
+
"enabled": true,
|
|
90
|
+
"config": {}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"mcpServers": {
|
|
95
|
+
"evo-engine": {
|
|
96
|
+
"command": "evo-engine",
|
|
97
|
+
"args": [],
|
|
98
|
+
"env": {}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
```bash
|
|
105
|
+
openclaw gateway restart
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
</details>
|
|
109
|
+
|
|
110
|
+
**验证:** 对话中输入 `/status`,看到 "Evolution not initialized" 即安装成功。
|
|
111
|
+
|
|
112
|
+
---
|
|
113
|
+
|
|
114
|
+
### Claude Code
|
|
115
|
+
|
|
116
|
+
在项目根目录或全局 `.claude/settings.json` 中添加 MCP server:
|
|
117
|
+
|
|
118
|
+
```json
|
|
119
|
+
{
|
|
120
|
+
"mcpServers": {
|
|
121
|
+
"evo-engine": {
|
|
122
|
+
"command": "evo-engine",
|
|
123
|
+
"type": "stdio"
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
```
|
|
128
|
+
|
|
129
|
+
将 skills 链接到 Claude Code:
|
|
130
|
+
|
|
131
|
+
```bash
|
|
132
|
+
ln -s $(pwd)/plugin/skills/* ~/.claude/skills/
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
重启 Claude Code 即可使用。
|
|
136
|
+
|
|
137
|
+
---
|
|
138
|
+
|
|
139
|
+
### Cursor
|
|
140
|
+
|
|
141
|
+
在项目根目录的 `.cursor/mcp.json` 中添加:
|
|
142
|
+
|
|
143
|
+
```json
|
|
144
|
+
{
|
|
145
|
+
"mcpServers": {
|
|
146
|
+
"evo-engine": {
|
|
147
|
+
"command": "evo-engine",
|
|
148
|
+
"type": "stdio"
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
Cursor 会自动发现 MCP tools(`evo_init`、`evo_next_batch` 等)。Skills 需要作为 Cursor Rules 手动导入:
|
|
155
|
+
|
|
156
|
+
```bash
|
|
157
|
+
cp plugin/AGENTS.md .cursor/rules/evo-agents.md
|
|
158
|
+
```
|
|
159
|
+
|
|
160
|
+
---
|
|
161
|
+
|
|
162
|
+
### Windsurf
|
|
163
|
+
|
|
164
|
+
在全局 `~/.codeium/windsurf/mcp_config.json` 中添加:
|
|
165
|
+
|
|
166
|
+
```json
|
|
167
|
+
{
|
|
168
|
+
"mcpServers": {
|
|
169
|
+
"evo-engine": {
|
|
170
|
+
"command": "evo-engine",
|
|
171
|
+
"type": "stdio"
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
---
|
|
178
|
+
|
|
179
|
+
### 其它 MCP 兼容客户端
|
|
180
|
+
|
|
181
|
+
Evo-anything 的核心是一个标准 [MCP](https://modelcontextprotocol.io) server。任何支持 MCP stdio 传输的客户端都可以接入:
|
|
182
|
+
|
|
183
|
+
```bash
|
|
184
|
+
# 直接启动 server(stdio 模式)
|
|
185
|
+
evo-engine
|
|
186
|
+
|
|
187
|
+
# 或指定 Python 模块
|
|
188
|
+
python -m plugin.evo-engine.server
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
提供的 MCP tools:`evo_init`、`evo_register_targets`、`evo_next_batch`、`evo_report_fitness`、`evo_select_survivors`、`evo_get_status`、`evo_get_lineage`、`evo_freeze_target`、`evo_boost_target`、`evo_record_synergy`、`evo_check_cache`。
|
|
192
|
+
|
|
193
|
+
---
|
|
194
|
+
|
|
195
|
+
### 可选配置
|
|
196
|
+
|
|
197
|
+
演化状态默认存储在 `~/.openclaw/evo-state/`,可通过环境变量自定义(`U2E` 即论文名 *Understanding to Excelling* 缩写):
|
|
198
|
+
|
|
199
|
+
```bash
|
|
200
|
+
export U2E_STATE_DIR=/path/to/your/state
|
|
201
|
+
```
|
|
202
|
+
|
|
203
|
+
或在 OpenClaw 中通过 `openclaw.json` 配置:
|
|
204
|
+
|
|
205
|
+
```json
|
|
206
|
+
{
|
|
207
|
+
"plugins": {
|
|
208
|
+
"entries": {
|
|
209
|
+
"openclaw-evo": {
|
|
210
|
+
"enabled": true,
|
|
211
|
+
"config": {
|
|
212
|
+
"statePath": "/path/to/your/state"
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
```
|
|
219
|
+
|
|
220
|
+
## Quick Start
|
|
221
|
+
|
|
222
|
+
```
|
|
223
|
+
你在 Telegram 发:我要 CIFAR-100-LT 上 SOTA
|
|
224
|
+
↓
|
|
225
|
+
/hunt 自动触发
|
|
226
|
+
↓
|
|
227
|
+
搜 GitHub → 找到 3 个候选 → 问你选哪个
|
|
228
|
+
↓
|
|
229
|
+
你说:用第 1 个
|
|
230
|
+
↓
|
|
231
|
+
clone → pip install → 下载数据 → 跑基线确认能跑
|
|
232
|
+
↓
|
|
233
|
+
自动调用 /evolve → 进化循环
|
|
234
|
+
↓
|
|
235
|
+
每代给你发进度
|
|
236
|
+
↓
|
|
237
|
+
结束后推最优分支 + 发报告
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
## 工作原理
|
|
241
|
+
|
|
242
|
+
Evo-anything 实现了论文提出的 **U2E(Understanding to Excelling)协议**——一种无模板的两维协同演化框架,区别于 EoH、FunSearch 等依赖预定义模板、仅做局部函数优化的方法,U2E 同时在**功能维**(算法逻辑)和**结构维**(代码架构)上做全局联合优化。
|
|
243
|
+
|
|
244
|
+
所有实验以 git 分支记录,演化循环包含六个阶段:
|
|
245
|
+
|
|
246
|
+
1. **分析** — 自动识别关键算法模块(哪些代码值得优化)
|
|
247
|
+
2. **规划** — 决定变异/交叉策略和每轮变体数量,按温度自适应分配预算
|
|
248
|
+
3. **生成** — LLM 生成代码变体(变异:单亲改进;交叉:双亲融合)
|
|
249
|
+
4. **评估** — 在隔离的 git worktree 中运行 benchmark
|
|
250
|
+
5. **选择** — 保留最优,淘汰其余;每 N 代做跨目标协同(Synergy)检验
|
|
251
|
+
6. **反思** — 提取经验教训,写入结构化记忆,指导后续演化
|
|
252
|
+
|
|
253
|
+
每一代的最优结果打 tag(`best-gen-{N}`),最终推送 `best-overall` 分支。
|
|
254
|
+
|
|
255
|
+
### 与现有方法对比
|
|
256
|
+
|
|
257
|
+
| 方法 | 模板依赖 | 优化范围 | 结构演化 |
|
|
258
|
+
|------|---------|---------|---------|
|
|
259
|
+
| EoH / FunSearch | 需要预定义模板 | 局部函数 | 无 |
|
|
260
|
+
| **Evo-anything (U2E)** | **无需模板** | **全局多目标** | **功能 + 结构协同** |
|
|
261
|
+
|
|
262
|
+
## Skills
|
|
263
|
+
|
|
264
|
+
| 命令 | 说明 |
|
|
265
|
+
|------|------|
|
|
266
|
+
| `/hunt <任务描述>` | 搜索 GitHub 找到合适的仓库,自动 clone、安装、跑基线,然后启动演化 |
|
|
267
|
+
| `/evolve <repo> <benchmark_cmd>` | 对指定仓库启动演化优化循环 |
|
|
268
|
+
| `/status` | 查看当前演化进度 |
|
|
269
|
+
| `/report` | 生成完整的演化报告 |
|
|
270
|
+
| `/boost <target_id>` | 提升某个优化目标的优先级 |
|
|
271
|
+
| `/freeze <target_id>` | 冻结某个目标,停止对它的演化 |
|
|
272
|
+
|
|
273
|
+
## 目录结构
|
|
274
|
+
|
|
275
|
+
```
|
|
276
|
+
Evo-anythin/
|
|
277
|
+
├── LICENSE
|
|
278
|
+
├── README.md
|
|
279
|
+
└── plugin/
|
|
280
|
+
├── openclaw.plugin.json # 插件定义
|
|
281
|
+
├── AGENTS.md # 演化协议(核心循环)
|
|
282
|
+
├── SOUL.md # Agent 人格设定
|
|
283
|
+
├── TOOLS.md # 工具使用约定
|
|
284
|
+
├── evo-engine/ # 演化引擎(MCP server)
|
|
285
|
+
│ ├── server.py # MCP 工具接口
|
|
286
|
+
│ ├── models.py # 数据模型
|
|
287
|
+
│ └── selection.py # 选择算法
|
|
288
|
+
└── skills/ # 用户可调用的技能
|
|
289
|
+
├── hunt/ # 搜索并部署代码库
|
|
290
|
+
├── evolve/ # 启动演化循环
|
|
291
|
+
├── status/ # 查看进度
|
|
292
|
+
├── report/ # 生成报告
|
|
293
|
+
├── boost/ # 提升目标优先级
|
|
294
|
+
└── freeze/ # 冻结目标
|
|
295
|
+
```
|
|
296
|
+
|
|
297
|
+
## 演化记忆
|
|
298
|
+
|
|
299
|
+
Evo-anything 在目标仓库中维护结构化记忆,避免重复失败的尝试:
|
|
300
|
+
|
|
301
|
+
```
|
|
302
|
+
memory/
|
|
303
|
+
├── global/long_term.md # 跨目标的通用经验
|
|
304
|
+
├── targets/{id}/
|
|
305
|
+
│ ├── short_term/gen_{N}.md # 每代反思
|
|
306
|
+
│ ├── long_term.md # 该目标的累积智慧
|
|
307
|
+
│ └── failures.md # 失败记录(不要再试的方向)
|
|
308
|
+
└── synergy/records.md # 跨函数组合实验结果
|
|
309
|
+
```
|
|
310
|
+
|
|
311
|
+
## 分支命名
|
|
312
|
+
|
|
313
|
+
```
|
|
314
|
+
gen-{N}/{target_id}/{op}-{V} # 单目标变体
|
|
315
|
+
gen-{N}/synergy/{targetA}+{targetB}-{V} # 跨目标组合
|
|
316
|
+
```
|
|
317
|
+
|
|
318
|
+
Tags: `seed-baseline`, `best-gen-{N}`, `best-overall`
|
|
319
|
+
|
|
320
|
+
## License
|
|
321
|
+
|
|
322
|
+
MIT
|