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

live-evo现场进化

Agent Skill

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

总安装

9,337

周安装

397

GitHub Stars

1

下载量

3,271
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install live-evo

简介

现场进化系统通过可验证任务自我优化记忆,适用于编码、预测与分析类工作流。

  • 强调结果可校验性,优先用于有明确输出标准的场景。
  • 在任务目标清晰且需迭代改进时自动启用。
  • 当前版本未公开详细接口,建议结合具体用例测试效果。
  • live-evo 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

name
live-evo
description
Self-evolving memory system that learns from verifiable tasks. Use when completing tasks where you can verify the outcome (coding, predictions, analysis). Automatically retrieves relevant past experiences and generates task-specific guidelines.
user-invocable
true
disable-model-invocation
false
allowed-tools
Bash(python *), Read, Write, Edit

Live-Evo: Online Self-Evolving Memory

You are using the Live-Evo memory system that learns from past mistakes through experience accumulation and adaptive evaluation.

IMPORTANT — Script location: All scripts are in the scripts/ subdirectory next to this SKILL.md file. When running scripts, use the absolute path to the scripts/ directory relative to where this file is located. For example, if this SKILL.md is at /path/to/live-evo/SKILL.md, the scripts are at /path/to/live-evo/scripts/.

Experience data is stored persistently at ~/.live-evo/experience_db.jsonl (independent of skill installation location).

Core Workflow

1. Retrieve & Compile (Before Acting)

Run the experience retrieval script to find relevant past experiences:

python <scripts-dir>/retrieve.py --query "YOUR_TASK_DESCRIPTION"

If experiences are found, they will be compiled into a task-specific guideline. Use this guideline to inform your approach.

2. Decide: Verify or Direct Apply

You must judge whether contrastive verification (two attempts) is worthwhile based on:

FactorDo Contrastive EvalSkip, Direct Apply
Cost of re-runningLow (e.g. run a test)High (e.g. long build, API costs, heavy computation)
VerifiabilityClear ground truth exists (tests, known answer)No easy way to verify programmatically
Task complexitySimple enough to attempt twiceToo complex/large to reasonably duplicate
Guideline relevanceRetrieved guideline is highly relevantGuideline is loosely related or no guideline found

If contrastive eval IS worthwhile → Go to Step 2A If contrastive eval is NOT worthwhile → Go to Step 2B

Step 2A: Contrastive Evaluation (Two Attempts)

Make two independent attempts:

Attempt A (Without Memory):

  • Solve the task using only your base knowledge
  • Record your answer/approach

Attempt B (With Guideline):

  • Apply the retrieved guideline
  • Solve the task with this informed approach
  • Record your answer/approach

Then verify and update weights:

python <scripts-dir>/update.py \
  --task "TASK_DESCRIPTION" \
  --result-a "RESULT_WITHOUT_MEMORY" \
  --result-b "RESULT_WITH_GUIDELINE" \
  --correct "CORRECT_ANSWER" \
  --experience-ids "id1,id2,..."

Step 2B: Direct Apply with Feedback-Based Learning

When contrastive evaluation is not feasible:

  1. Apply the guideline directly (if one was retrieved) and complete the task
  2. Observe feedback from any of these sources:

- User feedback (corrections, complaints, approval) - Environment signals (test results, error messages, build output) - Outcome observation (did the result work as expected?)

  1. Store experience directly if feedback reveals a lesson:
python <scripts-dir>/add_experience.py \
  --question "THE_TASK_QUESTION" \
  --failure-reason "What went wrong (from feedback)" \
  --improvement "Key lesson learned" \
  --category "coding|analysis|prediction|debugging|other"

No contrastive comparison needed — just learn from what happened.

3. Add New Experience (On Any Failure)

Whenever a task fails or feedback reveals a learnable lesson — regardless of which path you took — store the experience:

python <scripts-dir>/add_experience.py \
  --question "THE_TASK_QUESTION" \
  --failure-reason "What went wrong" \
  --improvement "Key lesson learned" \
  --category "coding|analysis|prediction|debugging|other"

4. Update Weights (When Possible)

If you used a retrieved guideline and can determine whether it helped:

python <scripts-dir>/update.py \
  --task "TASK_DESCRIPTION" \
  --result-a "WHAT_WOULD_HAVE_HAPPENED" \
  --result-b "WHAT_ACTUALLY_HAPPENED" \
  --correct "CORRECT_OUTCOME" \
  --experience-ids "id1,id2,..."

If you cannot determine whether the guideline helped, skip weight updates — no update is better than a wrong update.

When to Use Live-Evo

Use this system for:

  • Coding tasks: Bug fixes, implementations where tests can verify
  • Analysis tasks: Where ground truth can be checked
  • Predictions: Forecasting with eventual verification
  • Problem solving: Tasks with objectively correct answers
  • Any task with user feedback: Even without formal verification, user corrections are valuable signals

Experience Format

Each experience contains:

  • question: The original task/question
  • failure_reason: What went wrong in the original attempt
  • improvement: Key lesson or approach that would have helped
  • missed_information: Information sources or considerations that were missed
  • weight: Quality score (0.1-2.0) updated based on usefulness
  • category: Domain category for filtering

Key Principles

  1. Cost-Aware Verification: Only do contrastive evaluation when the cost is justified — don't waste tokens/time on expensive double-runs
  2. Feedback is Gold: User corrections, test failures, and error messages are direct learning signals — always store these
  3. Selective Acquisition: Only store experiences that contain a genuine, actionable lesson
  4. Weight-based Retrieval: Good experiences rise, bad ones fade
  5. Task-Specific Guidelines: Don't apply raw experiences — synthesize them into actionable guidance
  6. When in Doubt, Store: It's better to store a potentially useful experience than to miss a lesson; low-quality experiences will naturally decay via weight updates

Manual Commands

View all experiences:

python <scripts-dir>/list_experiences.py

Search experiences:

python <scripts-dir>/retrieve.py --query "your search query" --top-k 5

Get statistics:

python <scripts-dir>/stats.py

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

96.17%
按下载量换算3,146

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills