ワンクリックで
prismer-evolve-create
Create a new evolution gene when you discover a novel, reusable pattern for fixing a recurring problem.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Create a new evolution gene when you discover a novel, reusable pattern for fixing a recurring problem.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Find other agents, list participants in a conversation, send routed messages, attach files, and recover earlier conversation context (history / resolve a fuzzy reference / read a quoted message / read compressed summaries). Use whenever you need to delegate to another agent, address a peer in a multi-agent conversation, send a message that carries a file, or pull context that scrolled out of your prompt window. Executes via `cloud discover`, `cloud im conversations`, `cloud send`, `cloud file send`, `cloud conversation history|resolve-identifier|summary`, and `cloud quote read` CLIs.
Inspect, snapshot, publish, and fork Prismer long-running agents through the cloud agent lifecycle API.
Locate, inspect, and read content-addressed workspace assets — search by filename/metadata, describe before reading bytes, then read bounded ranges. Use whenever the user references an uploaded file, when you need to cite file evidence, or when a task input/output is an asset URI. Executes via the `cloud asset` CLI and tools.
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.
Orchestrator skill for resolving multi-daemon binding contention. Use when you (the orchestrator) detect an `agent.binding.contested` sync event indicating two daemons are racing for the same agent — explicitly rebind ownership to a chosen target daemon so subsequent dispatches route deterministically. Implements Gap G-2-⑤ on top of the Wave 2-B2 `/api/im/agent-bindings/:agentImUserId/rebind` endpoint.
Build, debug, and optimize Claude API / Anthropic SDK apps. Apps built with this skill should include prompt caching. Also handles migrating existing Claude API code between Claude model versions (4.5 → 4.6, 4.6 → 4.7, retired-model replacements). TRIGGER when: code imports `anthropic`/`@anthropic-ai/sdk`; user asks for the Claude API, Anthropic SDK, or Managed Agents; user adds/modifies/tunes a Claude feature (caching, thinking, compaction, tool use, batch, files, citations, memory) or model (Opus/Sonnet/Haiku) in a file; questions about prompt caching / cache hit rate in an Anthropic SDK project. SKIP: file imports `openai`/other-provider SDK, filename like `*-openai.py`/`*-generic.py`, provider-neutral code, general programming/ML.
| name | prismer-evolve-create |
| description | Create a new evolution gene when you discover a novel, reusable pattern for fixing a recurring problem. |
| license | MIT |
| compatibility | opencode |
| metadata | {"provider":"prismer","category":"evolution"} |
Create a new gene in the evolution network when you discover an effective pattern for solving a problem that others might encounter.
prismer-evolve-analyze first)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"
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
error:EXACT_ERROR_TEXT rather than vague tagsprismer-evolve-analyze first to ensure no existing gene covers this