Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计通过

evolutionary-model进化模型

Agent Skill

evolutionary-model 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,305

周安装

135

GitHub Stars

1

下载量

1,069
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:evolutionary-model(进化模型)
来源仓库:https://github.com/borodich/evolutionary-model
安装命令:
openclaw skills install evolutionary-model
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install evolutionary-model

简介

evolutionary-model 构建与所有者共同发展的 AI 代理框架。

  • 适合新代理设置和团队引入 AI 工作流时使用。
  • 支持解释和培训功能,需确认模型适应性。evolutionary-model 属于研究检索类 Skill,可作为该场景下的辅助能力补充。
  • 通过 clawhub 安装,建议核对框架扩展性和文档完整性。
  • 涉及团队协作时,应先定义角色权限矩阵。

SKILL.md

name
evolutionary-model
version
1.0.0
description
Framework for building AI agents that evolve with their owner. Use when: setting up a new agent from scratch, onboarding a team to AI-native workflow, explaining the architecture to others, or auditing an existing agent setup for gaps.
when_to_use
Use when user asks how to set up an AI agent, how to make an agent smarter over time, how to share the agent framework with others, or when explaining the evolutionary model concept.

Evolutionary Model

*An AI agent that doesn't learn is just an expensive chatbot.*

The Core Idea

Most people set up AI assistants once and use them forever the same way. The Evolutionary Model is different: the agent grows smarter with every session, accumulates skills, and becomes increasingly specific to its owner's needs.

The model has three axes of evolution:

Memory      → agent remembers decisions, context, preferences
Skills      → agent gains new capabilities over time  
Protocols   → agent behavior becomes more reliable and predictable

Architecture

Layer 0 — Identity

Who the agent is. Fixed at birth, rarely changed.

SOUL.md       — personality, values, operating principles
IDENTITY.md   — name, role, emoji, avatar
USER.md       — who the agent serves (name, timezone, preferences)

Layer 1 — Memory

How the agent persists across sessions.

memory/SESSION-STATE.md      — current focus (WAL, read first)
memory/YYYY-MM-DD.md         — daily raw log
MEMORY.md                    — curated long-term memory
memory/chat-log-YYYY-MM-DD.jsonl  — conversation history

Key principle: no mental notes. If it's not written to a file, it doesn't exist after session restart.

Layer 2 — Skills

What the agent can do. Each skill is a self-contained capability module.

skills/
  skill-name/
    SKILL.md        — instructions + when_to_use frontmatter
    scripts/        — executable helpers (bash, python)
    config.json     — user-configurable parameters
    README.md       — human-readable docs

when_to_use is critical. Without it, the agent doesn't know when to activate the skill. Format:

---
when_to_use: "Use when user asks for X, Y, or Z."
---

Layer 3 — Protocols

How the agent behaves reliably. Learned from mistakes.

AGENTS.md     — operating rules, safety, memory protocol
HEARTBEAT.md  — periodic check-in schedule and format
policy.yaml   — what agent can do without asking (allow/ask/deny)

How Evolution Works

Session → Memory

Every session, the agent:

  1. Reads SESSION-STATE.md (hot context)
  2. Reads today's daily log
  3. Works
  4. Writes new decisions/insights to daily log
  5. Periodically distills into MEMORY.md

Task → Skill

When the agent solves a new type of problem:

  1. Documents the solution
  2. Creates skills/task-name/SKILL.md
  3. Adds when_to_use so it auto-activates next time

Mistake → Protocol

When the agent makes a mistake:

  1. Analyzes root cause
  2. Adds rule to AGENTS.md or SOUL.md
  3. Future sessions inherit the fix

Skill Quality Standards

A skill is production-ready when it has:

  • [ ] when_to_use frontmatter — agent knows when to use it
  • [ ] description frontmatter — discoverable in skill catalogs
  • [ ] No hardcoded personal context (paths, names, tokens)
  • [ ] config.json or env vars for user-specific settings
  • [ ] README.md explaining what it does and how to configure
  • [ ] Scripts that work from any machine (no absolute paths)

Starter Kit

Minimum viable agent setup:

clawd/
  SOUL.md           — who you are
  IDENTITY.md       — your name
  USER.md           — who you serve
  AGENTS.md         — operating rules
  MEMORY.md         — start empty
  memory/           — create on first run
  skills/           — add as you grow

Bootstrap checklist:

  1. Fill USER.md with owner's name, timezone, communication style
  2. Write SOUL.md — personality takes 30 minutes, saves 1000 future corrections
  3. Pick 3 starter skills from the catalog
  4. Run first session — agent reads all files and introduces itself
  5. After session: review what the agent wrote to memory files

The Compounding Effect

Month 1: agent knows your name and timezone Month 2: agent knows your projects, communication style, key contacts Month 3: agent anticipates needs, runs proactive checks, catches mistakes Month 6: agent has accumulated skills specific to your workflow Month 12: agent is irreplaceable — it carries institutional knowledge no new model can replicate

This is why the model is called "evolutionary": the value grows non-linearly. Not because the base model gets smarter, but because the accumulated context, skills, and protocols become a moat.


Why Not Just Use ChatGPT?

ChatGPT / Standard AssistantEvolutionary Model
MemoryResets every sessionPersists across sessions
SkillsFixed capabilitiesGrows with use
ContextGenericSpecific to you
MistakesRepeatedDocumented + prevented
Value over timeFlatCompounding
PortabilityLocked to providerFiles you own

The Evolutionary Model runs on any AI provider. The intelligence isn't in the model — it's in the accumulated files. You own them.


Contributing Skills

Skills are just markdown files. To share a skill:

  1. Remove all personal context (names, paths, tokens)
  2. Replace with ${VARIABLE} or config.json entries
  3. Add when_to_use frontmatter
  4. Write a README.md
  5. Submit to ClaWHub or share as a repo

See Also

  • SOUL.md — agent identity template
  • AGENTS.md — operating protocols
  • HEARTBEAT.md — proactive check-in system
  • Skills catalog: ~/clawd/skills/

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

95.25%
按下载量换算1,018

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills