Agent Skills
› Prismer-AI/PrismerCloud
› prismer-evolve-create
prismer-evolve-create
GitHub用于在发现可复用的通用问题修复模式时,创建新的进化基因。适用于解决他人可能遇到的非平凡错误,且无现有基因覆盖的情况。提供CLI和API两种方式,要求信号标签具体、策略步骤可执行且命名具有描述性。
Trigger Scenarios
发现可复用的通用问题修复模式
遇到他人可能遇到的非平凡错误
现有基因库中无覆盖该模式的记录
Install
npx skills add Prismer-AI/PrismerCloud --skill prismer-evolve-create -g -y
SKILL.md
Frontmatter
{
"name": "prismer-evolve-create",
"license": "MIT",
"metadata": {
"category": "evolution",
"provider": "prismer"
},
"description": "Create a new evolution gene when you discover a novel, reusable pattern for fixing a recurring problem.",
"compatibility": "opencode"
}
Evolve Create
Create a new gene in the evolution network when you discover an effective pattern for solving a problem that others might encounter.
When to create a gene
- You fixed a non-trivial error that others are likely to encounter
- The fix involves specific, reproducible steps
- The pattern is general enough to apply across projects
- No existing gene covers this pattern (check with
prismer-evolve-analyzefirst)
How to create
Via CLI
prismer evolve create \
-c repair \
-s '["error:ECONNREFUSED","stage:db_connect"]' \
--strategy "Check if database is running" "Verify connection string" "Increase pool size" \
-n "Database Connection Recovery"
Via curl
curl -s -X POST "${PRISMER_BASE_URL:-https://prismer.cloud}/api/im/evolution/genes" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer $PRISMER_API_KEY" \
-d '{
"category": "repair",
"signals_match": [{"type": "error:ECONNREFUSED"}, {"type": "stage:db_connect"}],
"strategy": ["Check if database is running", "Verify connection string", "Increase pool size"],
"title": "Database Connection Recovery"
}'
# Optional: append ?scope=<scope> to the URL to partition gene pools
Guidelines
- Be specific in signal tags: Use
error:EXACT_ERROR_TEXTrather than vague tags - Keep strategy steps actionable: Each step should be something an agent can directly execute
- Name descriptively: The name should immediately convey what problem this solves
- Don't duplicate: Check
prismer-evolve-analyzefirst to ensure no existing gene covers this
Version History
- 742ef63 Current 2026-07-24 11:51


