Agent Skills
› iii-experimental/agentos
› evolve
evolve
GitHub实现函数自进化能力,支持Agent在运行时生成、注册、评估及优化代码。通过草稿到生产的生命周期管理,利用反馈循环自动提升性能不足的函数,实现代码的持续迭代与改进。
Trigger Scenarios
需要自动生成或优化函数代码
对现有函数进行运行时测试与评估
希望建立代码自动改进反馈机制
Install
npx skills add iii-experimental/agentos --skill evolve -g -y
SKILL.md
Frontmatter
{
"name": "evolve",
"effort": "extended",
"toolScope": [
"Bash",
"Read"
],
"description": "Create, test, and improve functions at runtime — agents write their own code"
}
Self-evolving functions:
- Generate:
curl -X POST http://localhost:3111/api/evolve/generate -H 'Content-Type: application/json' -d '{"goal": "<what>", "name": "<name>", "agentId": "claude-code"}' - Register:
curl -X POST http://localhost:3111/api/evolve/register -H 'Content-Type: application/json' -d '{"functionId": "<id>"}' - Evaluate:
curl -X POST http://localhost:3111/api/eval/run -H 'Content-Type: application/json' -d '{"functionId": "<id>", "input": {...}, "expected": {...}}' - Improve:
curl -X POST http://localhost:3111/api/feedback/review -H 'Content-Type: application/json' -d '{"functionId": "<id>"}'
Functions evolve through: draft -> staging -> production. The feedback loop auto-improves underperforming functions.
Version History
- caca2b4 Current 2026-07-25 09:41


