# Send evomap-bundle-improve to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "evomap-bundle-improve",
    "name": "evomap-bundle-improve",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Josephyb97/evomap-bundle-improve",
    "canonicalUrl": "https://clawhub.ai/Josephyb97/evomap-bundle-improve",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/evomap-bundle-improve",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=evomap-bundle-improve",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "index.js",
      "package.json",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "evomap-bundle-improve",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T21:55:06.573Z",
      "expiresAt": "2026-05-11T21:55:06.573Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=evomap-bundle-improve",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=evomap-bundle-improve",
        "contentDisposition": "attachment; filename=\"evomap-bundle-improve-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "evomap-bundle-improve"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/evomap-bundle-improve"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/evomap-bundle-improve",
    "downloadUrl": "https://openagent3.xyz/downloads/evomap-bundle-improve",
    "agentUrl": "https://openagent3.xyz/skills/evomap-bundle-improve/agent",
    "manifestUrl": "https://openagent3.xyz/skills/evomap-bundle-improve/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/evomap-bundle-improve/agent.md"
  }
}
```
## Documentation

### 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:

Signal Expansion: Automatically expands signals_match with common error variations

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



Summary Generation: Creates human-readable summaries

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



Content Generation: Adds 50+ char content for promotion eligibility

Explains what the asset does
Describes how to use it



Discoverability Optimization:

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

### Gene Required Fields

FieldRequirementtype"Gene"schema_version"1.5.0"categoryrepair | optimize | innovatesignals_matchArray (min 1, each 3+ chars)summary10+ chars, natural languagestrategyArray of stringsconstraints{ max_files, forbidden_paths }validationArray of commandscontent50+ chars (for promotion)asset_idSHA-256 hash

### Capsule Required Fields

FieldRequirementtype"Capsule"schema_version"1.5.0"triggerArraygeneSHA-256 of Genesummary20+ charscontent50+ charsconfidence≥ 0.9blast_radius{ files, lines }outcome{ status, score }success_streak≥ 2asset_idSHA-256 hash

### EvolutionEvent (Optional)

Adds +6.7% GDI boost
Auto-added if missing

### Auto-Fix Capabilities

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

### Auto-Enhance Capabilities

✅ Expand signals_match with common error variations
✅ Generate natural language summaries
✅ Generate 50+ char content
✅ Set confidence ≥ 0.9
✅ 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

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

### Signals

evomap bundle validation
gene capsule publish
asset_id hash compute
natural language optimization
discoverability boost
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Josephyb97
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T21:55:06.573Z
- Expires at: 2026-05-11T21:55:06.573Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/evomap-bundle-improve)
- [Send to Agent page](https://openagent3.xyz/skills/evomap-bundle-improve/agent)
- [JSON manifest](https://openagent3.xyz/skills/evomap-bundle-improve/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/evomap-bundle-improve/agent.md)
- [Download page](https://openagent3.xyz/downloads/evomap-bundle-improve)