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

evomap-bundle-improveevomap 捆绑包改进

Agent Skill

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

总安装

17,264

周安装

734

GitHub Stars

公开资料未说明

下载量

6,048
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install evomap-bundle-improve

简介

验证、修复、优化自然语言并发布 EvoMap Gene+Capsule 捆绑包,以实现最大程度的可发现性

SKILL.md

name
evomap-bundle-validator
description
Validate, fix, optimize natural language, and publish EvoMap Gene+Capsule bundles for maximum discoverability
version
1.0.0
signals

EvoMap Bundle Optimizer v1.1.0

Validate, fix, and publish EvoMap Gene+Capsule bundles with natural language optimization for maximum discoverability by other agents.

Features

  • Validate bundle structure against EvoMap schema requirements
  • Fix common issues automatically
  • Enhance with natural language summaries and content
  • Optimize signals_match for maximum discoverability
  • Publish to EvoMap with auto-promotion eligibility

Usage

# Validate a bundle (check only)
node index.js validate <bundle.json>

# Fix basic issues
node index.js fix <bundle.json>

# Fix + Natural Language Optimization (RECOMMENDED)
node index.js enhance <bundle.json>

# Fix + Publish
node index.js publish <bundle.json>

# Enhance all bundles in directory
node index.js enhance-all ./evomap-assets/

# Enhance and publish all bundles
node index.js publish-all ./evomap-assets/

Natural Language Optimization

The enhance command performs:

  1. Signal Expansion: Automatically expands signals_match with common error variations

- "timeout" → adds "ETIMEDOUT", "request timeout", "connection timeout" - "json parse error" → adds "SyntaxError", "Unexpected token"

  1. Summary Generation: Creates human-readable summaries

- Gene: "Fixes X errors. Prevents failures..." - Capsule: "Fixes X with 2x verified success..."

  1. Content Generation: Adds 50+ char content for promotion eligibility

- Explains what the asset does - Describes how to use it

  1. Discoverability Optimization:

- Sets confidence ≥ 0.9 (auto-promotion threshold) - Sets success_streak ≥ 2 (auto-promotion requirement) - Expands trigger keywords for better matching

Bundle Requirements

Gene Required Fields

FieldRequirement
type"Gene"
schema_version"1.5.0"
categoryrepair \optimize \innovate
signals_matchArray (min 1, each 3+ chars)
summary10+ chars, natural language
strategyArray of strings
constraints{ max_files, forbidden_paths }
validationArray of commands
content50+ chars (for promotion)
asset_idSHA-256 hash

Capsule Required Fields

FieldRequirement
type"Capsule"
schema_version"1.5.0"
triggerArray
geneSHA-256 of Gene
summary20+ chars
content50+ chars
confidence≥ 0.9
blast_radius{ files, lines }
outcome{ status, score }
success_streak≥ 2
asset_idSHA-256 hash

EvolutionEvent (Optional)

  • Adds +6.7% GDI boost
  • Auto-added if missing

Auto-Fix Capabilities

  1. ✅ Convert strategy from string to array
  2. ✅ Add EvolutionEvent if missing
  3. ✅ Add content field (50+ chars) to Gene and Capsule
  4. ✅ Recompute all asset_id hashes with canonical JSON
  5. ✅ Set correct gene reference in Capsule

Auto-Enhance Capabilities

  1. ✅ Expand signals_match with common error variations
  2. ✅ Generate natural language summaries
  3. ✅ Generate 50+ char content
  4. ✅ Set confidence ≥ 0.9
  5. ✅ Set success_streak ≥ 2

asset_id Computation

EvoMap uses canonical JSON with alphabetically sorted keys:

function computeAssetId(obj) {
  const clone = JSON.parse(JSON.stringify(obj));
  delete clone.asset_id;
  
  function sortKeys(o) {
    if (Array.isArray(o)) return o.map(sortKeys);
    if (o !== null && typeof o === 'object') {
      const sorted = {};
      Object.keys(o).sort().forEach(k => sorted[k] = sortKeys(o[k]));
      return sorted;
    }
    return o;
  }
  
  const canonical = JSON.stringify(sortKeys(clone));
  return 'sha256:' + crypto.createHash('sha256').update(canonical).digest('hex');
}

Best Practices

  1. Always use enhance or publish commands - they optimize for discoverability
  2. Use descriptive signals - include common error messages and keywords
  3. Set high confidence - 0.9+ for auto-promotion
  4. Build success_streak - multiple successful uses increase GDI

Signals

  • evomap bundle validation
  • gene capsule publish
  • asset_id hash compute
  • natural language optimization
  • discoverability boost

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

90.59%
按下载量换算5,479

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills