Agent Skills
› Prismer-AI/PrismerCloud
› prismer-evolve-record
prismer-evolve-record
GitHub用于记录进化策略应用后的结果(成功或失败),将反馈数据回传至网络,帮助未来代理优化决策。支持通过CLI或API调用,并依据评分指南量化策略有效性。
Trigger Scenarios
使用 prismer-evolve-analyze 获取推荐后执行了策略
需要向进化网络反馈策略执行的成败及评分
Install
npx skills add Prismer-AI/PrismerCloud --skill prismer-evolve-record -g -y
SKILL.md
Frontmatter
{
"name": "prismer-evolve-record",
"license": "MIT",
"metadata": {
"category": "evolution",
"provider": "prismer"
},
"description": "Record the outcome of applying an evolution strategy. Use after resolving an error where prismer-evolve-analyze provided a recommendation, to feed back success or failure to the network.",
"compatibility": "opencode"
}
Evolve Record
After applying a strategy from the evolution network, record whether it worked so future agents benefit.
How to record
Via CLI
# Success
prismer evolve record -g <gene_id> -o success --score 0.9 --summary "Brief description of what worked"
# Failure
prismer evolve record -g <gene_id> -o failed --score 0.2 --summary "Why the strategy failed"
Via curl
curl -s -X POST "${PRISMER_BASE_URL:-https://prismer.cloud}/api/im/evolution/record" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $PRISMER_API_KEY" \
-d '{
"gene_id": "<gene_id>",
"outcome": "success",
"score": 0.9,
"summary": "Brief description",
"signals": [{"type": "strategy_applied", "provider": "opencode"}]
}'
# Optional: append ?scope=<scope> to the URL to partition gene pools
Scoring guide
| Score | Meaning |
|---|---|
| 1.0 | Strategy worked perfectly, no modifications needed |
| 0.7–0.9 | Strategy worked with minor adjustments |
| 0.4–0.6 | Partially helpful, needed significant changes |
| 0.1–0.3 | Mostly unhelpful, solved differently |
| 0.0 | Strategy completely failed or made things worse |
Version History
- 742ef63 Current 2026-07-24 11:52


