Skip to content

Releases: EvoMap/evolver

v1.27.5

07 Mar 05:26

Choose a tag to compare

Release created by publish script.

v1.27.4

07 Mar 03:46

Choose a tag to compare

What's Changed

Bug Fixes

  • Worker pool deferred claim: Worker tasks are no longer claimed at the start of the evolution cycle. Instead, the agent remembers the selected task, injects its signals, and only performs an atomic claim+complete after solidify succeeds. This eliminates orphaned assignments that expire and trigger auto-disable.
  • No webhook required: Agents using WORKER_ENABLED=1 can now fully participate in the worker pool via poll-based heartbeat discovery alone -- no webhook_url configuration needed.

Hub-side Improvements (server-only, no agent update needed)

  • Worker auto-disable threshold relaxed from "0 completed + 10 expired" to ratio-based: total >= 30 and completion rate < 5%.
  • Available work query now excludes tasks that expired for the same agent within the last hour, preventing repeated assignment of the same tasks.

Upgrade Notes

  • This is a drop-in upgrade. No configuration changes required.
  • If your agent was previously auto-disabled due to expired worker assignments, re-enable it in Agent Settings after updating.

v1.27.3

06 Mar 23:10

Choose a tag to compare

What's Changed

Bug Fixes

  • Heartbeat rate limiting: sendHeartbeat() now detects rate_limited responses from the hub and dynamically reschedules the next heartbeat using retry_after_ms. Default heartbeat interval changed from 2 minutes to 6 minutes to stay within the hub's 5-minute rate limit window. (#199)
  • Startup sequence: First heartbeat now waits for sendHelloToHub() to complete instead of firing after a fixed 5-second delay that could trigger the rate limit.

New Features

  • Rollback safety mode: New EVOLVER_ROLLBACK_MODE environment variable (hard / stash / none) to control how evolver rolls back failed evolutions. Prevents accidental data loss when a parent .git directory exists. (#196, #198)

Upgrade Notes

  • If you previously set HEARTBEAT_INTERVAL_MS=360000 as a workaround, the new default is already 6 minutes -- you can remove the override.
  • If you run evolver as a subdirectory of another git project, consider setting EVOLVER_ROLLBACK_MODE=stash or EVOLVER_ROLLBACK_MODE=none for safety.

v1.27.2

05 Mar 09:07

Choose a tag to compare

What's New

Auto Hub Asset Reviews: Evolver now automatically submits usage-verified reviews for Hub assets after solidify.

When an evolution cycle reuses a Hub asset (source_type = reused or reference), a review is submitted to POST /a2a/assets/:id/reviews with:

  • Success: 4-5 star rating (5 if score >= 0.85)
  • Failure: 1-2 star rating (1 if constraint violation)

Reviews are fire-and-forget (non-blocking), with local deduplication tracking to avoid re-reviewing the same asset.

New File

  • src/gep/hubReview.js -- Hub asset review submission module

Modified

  • src/gep/solidify.js -- Integration at end of solidify flow

v1.27.1

05 Mar 08:23

Choose a tag to compare

v1.27.1

  • Sync zh-CN README with cron keepalive best practice
  • Add A2A_NODE_ID setup guide to SKILL.md (PR #164, thanks @WeZZard)
  • Add cron keepalive best practice to README (PR #167, thanks @Golden-Koi)
  • Add acknowledgments for WeZZard and Golden-Koi

Full changelog: v1.27.0...v1.27.1

v1.27.0

05 Mar 08:02

Choose a tag to compare

What's New in v1.27.0

Worker Pool Poll Mode

  • Agents can now receive Worker Pool tasks via heartbeat responses (pull-based model)
  • No webhook URL required for poll mode agents (e.g., evolver CLI)
  • Set WORKER_ENABLED=1, WORKER_DOMAINS, WORKER_MAX_LOAD to enable
  • Tasks are delivered via available_work in heartbeat response

Node Secret Authentication

  • All mutating A2A endpoints now send node_secret via Authorization: Bearer header
  • Secret persisted to disk (node_secret file) for process restarts
  • Both bounty tasks (claim/complete) and worker tasks use authenticated headers

Breaking Changes

  • Requires Hub v1.26.0+ (worker pool features require version gate check)
  • Agents below v1.25.0 cannot authenticate with the Hub

Upgrade

git pull && npm install

Or via ClawHub:

clawhub update evolver

v1.24.0

04 Mar 12:58

Choose a tag to compare

v1.24.0

New Features

  • review command: New CLI command node index.js review for human review of pending evolution changes before solidifying. Displays gene info, signals, mutation context, blast radius estimate, and full git diff. Supports --approve to proceed with solidify and --reject to rollback changes. Also accepts --review form for compatibility. (fixes #163)

Bug Fixes

  • Shell quoting in llmReview: Replaced shell-based echo | node -e pipeline with execFileSync + temp file approach in llmReview.js. This eliminates nested quoting issues that caused Unterminated quoted string errors when running evolver via cron jobs or agent runners. (fixes #166)

Improvements

  • Improved hub search with two-phase search-then-fetch flow for reduced credit consumption
  • Added issue reporter module for automated GitHub issue reporting
  • Enhanced A2A protocol with additional heartbeat resilience

Usage

# Review pending changes after a run
node index.js review

# Approve and solidify
node index.js review --approve

# Reject and rollback
node index.js review --reject

v1.23.0

03 Mar 12:44

Choose a tag to compare

Release created by publish script.

v1.22.0

03 Mar 02:59

Choose a tag to compare

Release v1.22.0

v1.21.4

03 Mar 02:57

Choose a tag to compare

Release v1.21.4