Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计提醒

meta-harness-evolver元线束进化者

Agent Skill

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

总安装

2,670

周安装

108

GitHub Stars

公开资料未说明

下载量

838
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install meta-harness-evolver

简介

meta-harness-evolver 是 Hoss(OpenClaw 代理)的端到端元线束演化工具。

  • 每晚凌晨 3 点通过 OpenClaw cron 运行,读取当前工作区配置。
  • 用于优化代理工作流程,自动调整提示和工具使用模式。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。
  • 可结合来源仓库和原始 README 继续核验具体用法。

SKILL.md

name
meta-harness-evolver
description
End-to-end Meta-Harness evolution for Hoss (OpenClaw agent). Runs nightly at 3 AM via OpenClaw cron. Reads Hoss's current workspace configs (SOUL.md, IDENTITY.md, AGENTS.md, TOOLS.md, MEMORY.md), proposes harness modifications via a coding-agent proposer, evaluates against a benchmark, logs results to ~/hoss-evolution/, and posts a summary to the #research Discord channel. Triggered: (1) automatically via cron at 3 AM CDT, (2) when Tyler says "run harness evolution", "evolve Hoss", or "run meta-harness".

Meta-Harness Evolver

What This Skill Does

Implements the Meta-Harness paper's outer-loop optimization for Hoss — your OpenClaw agent. Each night at 3 AM CDT, this skill:

  1. Reads Hoss's current workspace configs + all prior evolution logs
  2. Proposes a targeted harness modification via a coding-agent sub-agent
  3. Evaluates the proposed harness against a benchmark of ~20 diverse task scenarios
  4. Logs the candidate harness + scores + execution traces to the evolution filesystem
  5. Posts a summary report to #research Discord channel

The Meta-Harness Loop

Proposer Agent ──(filesystem access)──► Hoss Workspace
      ▲                                   │
      │                          propose harness
      │                                   ▼
      │                          Evaluate on benchmark
      │                                   ▼
log ───┴── store: code + scores + traces ──► ~/hoss-evolution/

Quick Start

Cron Schedule

  • 3 AM CDT daily — configured via openclaw cron
  • Cron command: SKILL=meta-harness-evolution TASK=run_evolution openclaw run

Manual Trigger

/openclaw run --skill meta-harness-evolver --task run_evolution

Directory Structure

~/hoss-evolution/
├── best/                  # Best harness found so far
│   └── current/
├── candidates/            # All evaluated harnesses
│   └── candidate_N/       # One dir per candidate
│       ├── harness/      # The proposed config files (SOUL.md, etc.)
│       ├── eval_scores.json
│       └── traces/        # Execution traces
├── benchmark/             # Evaluation tasks + scorer
│   └── scenarios/         # ~20 diverse task scenarios
├── proposer/              # Proposer's workspace
│   └── logs/              # Proposer's own reasoning traces
└── evolution_log.jsonl    # Full run history

What Can Be Evolved

Hoss's "harness" = the configs that wrap the LLM brain:

FileWhat It Controls
SOUL.mdCore identity, personality, decision-making style
IDENTITY.mdRole, voice, tone, signature patterns
AGENTS.mdSub-agent architecture, coordination protocol
TOOLS.mdTool configurations, credentials, key hosts
MEMORY.mdLong-term memory structure, what to persist
HEARTBEAT.mdActive hours, check priorities, alert thresholds

Constraints (do NOT modify):

  • Credentials, API keys, or secrets in TOOLS.md
  • Git safety rules (NEVER mutate git config from ~/flume/)
  • Security-sensitive groupPolicy settings

The Evolution Algorithm

  1. Seed: Start with Hoss's current configs as iteration 0
  2. Propose: Sub-agent reads full history from ~/hoss-evolution/candidates/, identifies failure patterns, proposes 1-2 targeted edits
  3. Validate: Lightweight import/syntax check before running full benchmark
  4. Evaluate: Run proposed harness against all 20 benchmark scenarios, score each
  5. Log: Store candidate harness + scores + proposer reasoning traces
  6. Select: Pareto frontier over (performance, simplicity) — proposer decides which candidates to keep exploring from
  7. Repeat: Next night's proposer can read ALL prior candidates to build on good ideas

Key Insight from the Paper

The skill text is the strongest lever — it steers the proposer. Iterating on the proposer's prompt/role description had more effect than changing iteration count or population size.

The Benchmark

The benchmark lives at ~/hoss-evolution/benchmark/. See references/benchmark-design.md for how to design scenarios and references/harness-spec.md for the full harness spec.

Default benchmark has 20 scenarios across categories:

  • Memory: Recall, update, synthesize from memory files
  • Code: Write, review, debug code tasks
  • Coordination: Spawn sub-agents, synthesize results
  • Research: Web search, fetch, summarize, synthesize
  • Communication: Draft emails, Discord messages, iMessages
  • Quality: Spot errors, inconsistencies, broken links

Each scenario has:

  • A concrete task description
  • Expected outcome criteria
  • A scoring rubric (0-3 per scenario: fail / partial / pass / excellent)

The Proposer Agent

The proposer is a coding-agent sub-agent (default: coder) that:

  • Reads all prior candidates from ~/hoss-evolution/candidates/ via filesystem ops
  • Identifies patterns in failed/succeeded candidates
  • Proposes targeted, specific edits (NOT wholesale rewrites)
  • Writes proposed configs to the new candidate directory
  • Logs its reasoning trace so future iterations can build on it

Proposer Skill (passed to sub-agent)

The proposer's role is defined by the task prompt in scripts/propose_harness.py. Key constraints:

  • Can only propose edits to files in the harness spec (SOUL.md, IDENTITY.md, AGENTS.md, TOOLS.md, MEMORY.md, HEARTBEAT.md)
  • Must pass lightweight validation before full evaluation
  • Should prefer targeted edits over full rewrites
  • Must log reasoning trace to proposer/logs/

Workflow Steps

Step 1: Read Prior Candidates

# List all prior candidates
ls ~/hoss-evolution/candidates/

# Read best candidate
cat ~/hoss-evolution/best/current/eval_scores.json

# Read history log
tail -20 ~/hoss-evolution/evolution_log.jsonl

Step 2: Run Proposer

# The sub-agent proposer reads ~/hoss-evolution/ and proposes
# This is triggered by openclaw run with this skill loaded

Step 3: Validate Before Benchmark

# Quick syntax check
bash ~/hoss-evolution/scripts/validate.sh <candidate_dir>

Step 4: Run Benchmark

# Evaluate candidate against all 20 scenarios
python3 ~/hoss-evolution/scripts/evaluate.py <candidate_dir>

Step 5: Log Results

# Scores + traces written to candidate dir automatically
# Evolution log updated

Step 6: Post to Discord

# Posts summary to #research
python3 ~/hoss-evolution/scripts/post_to_research.py <candidate_dir>

Scoring

Final score = weighted average across scenarios:

  • Memory tasks: 25%
  • Code tasks: 25%
  • Coordination: 15%
  • Research: 20%
  • Communication: 10%
  • Quality: 5%

Results are tracked as a Pareto frontier: for each candidate, log both score and "complexity" (size/diff of changes). Simpler harnesses that score equally get priority.

Resources

Notes

  • The proposer sub-agent runs with runtime=subagent, not ACP — it needs filesystem access to ~/hoss-evolution/
  • Cron is configured outside this skill via openclaw cron
  • If the proposer fails to produce a valid candidate, the iteration is skipped (no penalty)
  • Benchmark scenarios should be diverse enough that no single strategy can game all of them
  • The evolution workspace is NOT inside ~/.openclaw/ — it's at ~/hoss-evolution/ to keep it separate from operational configs

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

79.06%
按下载量换算663

安全审计

VirusTotal

未展示

ClawScan

可疑

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install meta-harness-evolver 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

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

来源信息

继续浏览同类 Skills