Agent Skills
› iii-experimental/agentos
› evolve
evolve
GitHub支持代理在运行时自动生成、注册、评估和改进函数,通过反馈循环实现代码自进化。
Trigger Scenarios
需要动态生成或优化函数逻辑
构建自我进化的AI代理系统
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


