evolution-network

evolution-network is a skill for Claude Code, Codex from hashgraph-online/awesome-codex-plugins. It costs 27 tokens per session (1,005 once invoked), scanned A, original, Apache-2.0.

A protocol for sharing reusable problem-solving patterns between separate coding-agent sessions. Received patterns start with lower trust and must work locally before becoming more trusted.

In plain words
What is it for?
Use it to discover, request, receive, validate, and share recurring solutions such as fixes for test failures or configuration problems.
Why use it?
It lets agents learn from one another without treating imported advice as proven. Local validation reduces the risk of blindly reusing a pattern from another agent.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths.

Good fit Use it to discover, request, receive, validate, and share recurring solutions such as fixes for test failures or configuration problems.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/hashgraph-online/awesome-codex-plugins/evolution-network
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add hashgraph-online/awesome-codex-plugins --skill evolution-network
Clone the repo
git clone --depth 1 https://github.com/hashgraph-online/awesome-codex-plugins

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for evolution-network

README.md
[![agentmods](https://agentmods.dev/badge/skills/hashgraph-online/awesome-codex-plugins/evolution-network/github.svg)](https://agentmods.dev/skills/hashgraph-online/awesome-codex-plugins/evolution-network)
Your own site
<a href="https://agentmods.dev/skills/hashgraph-online/awesome-codex-plugins/evolution-network"><img src="https://agentmods.dev/badge/skills/hashgraph-online/awesome-codex-plugins/evolution-network/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for evolution-network

Your own site · 80×15
<a href="https://agentmods.dev/skills/hashgraph-online/awesome-codex-plugins/evolution-network"><img src="https://agentmods.dev/badge/skills/hashgraph-online/awesome-codex-plugins/evolution-network.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 27 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,005 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00027 $0.01005
Opus 5 $0.00014 $0.00502
Sonnet 5 $0.00005 $0.00201
Haiku 4.5 $0.00003 $0.00101

Measured 3d ago against content hash 908c31cda967, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

evolution-network scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/Colin4k1024/tsp/skills/evolution-network/SKILL.md · 111 lines

How it starts

The opening of the file, as written. The whole thing — 111 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Evolution Network

跨 Agent 基因共享协议,允许不同 agent 实例发现、请求和接收来自其他 agent 的验证过的经验基因。

触发条件

  • evolution-core 查询未命中本地基因时
  • 当用户执行 /evolve share/evolve pull
  • 当 session-end hook 检测到可共享的高置信度基因时

核心概念

Gene Sharing Protocol

基因共享遵循 请求-响应 模型:

  1. Discovery:Agent A 广播信号特征,网络中的 agent 匹配本地基因
  2. Request:Agent A 获取候选列表后请求完整基因数据
  3. Receive:接收基因以 received 状态进入本地 store(confidence 降级为 0.30)
  4. Validate:本地至少成功执行 1 次后才提升为 candidate

Shared Gene Registry

共享注册表存储在 ~/.claude/evolution/network/registry.json

{
  "version": 1,
  "agents": {
    "agent-abc123": {
      "last_seen": "2025-01-15T10:00:00Z",
      "gene_count": 42,
      "promoted_count": 15,
      "capabilities": ["python", "typescript", "docker"]
    }
  },
  "shared_genes": [
    {
      "gene_id": "gene_xxx",
      "owner_agent": "agent-abc123",
      "signals_summary": ["npm test failure", "jest config"],
      "confidence": 0.85,
      "tags": ["testing", "jest", "node"],
      "shared_at": "2025-01-15T10:00:00Z"
    }
  ]
}

Trust Model

来源 初始 Confidence 提升条件
本地创建 0.40 正常流程
网络接收 0.30 本地执行成功 1 次 → 0.40,之后正常流程
导入 (migrate) 基于原始数据 正常流程

Share Policy

默认共享策略:

  • 只共享 promoted 状态的基因(confidence ≥ 0.60,至少 3 次成功)
  • 不共享包含路径、密钥或环境特有配置的基因
  • 共享前自动脱敏信号中的绝对路径和用户名

传输格式

Gene 共享使用 JSON 行格式(.jsonl),每行一个基因:

{
  "gene_id": "gene_xxx",
  "signals": [...],
  "strategy": {...},
  "confidence": 0.85,
  "tags": [...],
  "stats": {"successes": 5, "failures": 0},
  "exported_at": "2025-01-15T10:00:00Z",
  "source_agent": "agent-abc123"
}

导出文件存储在 ~/.claude/evolution/network/exports/,导入文件从 ~/.claude/evolution/network/imports/ 读取。

命令接口

/evolve share              # 导出 promoted 基因到 exports/
/evolve share --tags test  # 只导出特定 tag 的基因
/evolve pull               # 从 imports/ 导入其他 agent 的基因
/evolve pull --dry-run     # 预览将导入的基因
/evolve network status     # 查看网络注册表状态

隐私与安全

  • 基因共享默认 opt-in,需要设置 EVOLUTION_NETWORK_ENABLED=1
  • 导出前自动执行信号脱敏(路径、用户名、主机名)
  • 不传输 capsule 中的原始 outcome 数据(可能包含敏感输出)
  • 支持 ~/.claude/evolution/network/deny-list.json 手动排除特定基因或 tag

Read the full file on GitHub · 111 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 111 lines · 27 tokens per session scan A 908c31cda967

Subscribe to this mod's changes

evolution-network is a skill published in the GitHub repository hashgraph-online/awesome-codex-plugins (956 stars, last pushed today), licensed Apache-2.0. It adds 27 tokens to every session and 1,005 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.

Related

Other skills, from other repositories

search

Search 2500+ curated ChatGPT and LLM open-source repositories. Use when the user asks to find tools, libraries, or repos related to ChatGPT, LLMs, RAG, agents, langchain, NLP, AI development, or any open-source AI tooling.

taishi-i/awesome-ChatGPT-repositories · 57 tokens

vellum-memory-v3-migration

One-time migration of an existing memory-v2 concept corpus into the memory-v3 section-grain "wiki" — topical articles with a stand-alone lead and queryable sections — with loss-proof staging, assistant-reviewed authoring, and a retrieval-eval gate before cutover.

vellum-ai/vellum-assistant · 63 tokens

levelup-specify

Extract Context Directive Records (CDRs) from the current session after completing work. Identifies reusable patterns (rules, personas, examples, evals) and captures directive compliance cases for team-ai-directives.

tikalk/adlc-team-skills · 46 tokens

cross-session-handoff

Read, write, snapshot, and lock .arcgentic/state.yaml across planner, dev, audit, and optional test sessions.

Arch1eSUN/Arcgentic · 31 tokens

hunt-xxe

Hunting skill for xxe vulnerabilities. Built from 4 public bug bounty reports. Use when hunting xxe on any target.

adriannoes/awesome-agentic-ai · 31 tokens

detecting-process-injection-techniques

Detects and analyzes process injection techniques used by malware including classic DLL injection, process hollowing, APC injection, thread hijacking, and reflective loading. Uses memory forensics, API monitoring, and behavioral analysis to identify injection artifacts. Activates for requests involving process…

adriannoes/awesome-agentic-ai · 78 tokens