| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| evolver-windows-x64.exe.sha256 | 2026-05-09 | 90 Bytes | |
| SHA256SUMS.txt | 2026-05-09 | 432 Bytes | |
| evolver-linux-arm64.sha256 | 2026-05-09 | 86 Bytes | |
| evolver-windows-x64.exe | 2026-05-09 | 120.3 MB | |
| evolver-darwin-arm64 | 2026-05-09 | 65.8 MB | |
| evolver-darwin-arm64.sha256 | 2026-05-09 | 87 Bytes | |
| evolver-darwin-x64 | 2026-05-09 | 71.0 MB | |
| evolver-darwin-x64.sha256 | 2026-05-09 | 85 Bytes | |
| evolver-linux-arm64 | 2026-05-09 | 104.1 MB | |
| evolver-linux-x64 | 2026-05-09 | 104.5 MB | |
| evolver-linux-x64.sha256 | 2026-05-09 | 84 Bytes | |
| README.md | 2026-05-09 | 1.4 kB | |
| v1.80.5 source code.tar.gz | 2026-05-09 | 1.6 MB | |
| v1.80.5 source code.zip | 2026-05-09 | 1.7 MB | |
| Totals: 14 Items | 468.9 MB | 0 | |
What's Changed
Schema layer follow-ups to v1.80.4 createGene factory
- Bugbot follow-ups on createGene normalization (PR [#26]): three small but real defensive fixes the Cursor Bugbot flagged on the v1.80.4 Gene factory: (a) integrity guard so a synthesized gene's
idmatches the asset_id its content hashes to, (b) tighter category fallback so a malformedcategoryfrom an LLM-emitted gene cannot bypassvalidateGene, (c) preserve provenance metadata fields that are not part of the canonical Gene shape (e.g.source_capsule_id) when the factory rebuilds the object. - Capsule schema factory (PR [#27]): introduces
src/gep/schemas/capsule.jswithcreateCapsule(partial)andvalidateCapsule(c), the Capsule mirror of the Gene factory shipped in v1.80.4. Same mutation-isolation guarantees ascreateGene: array fields (trigger,strategy,execution_trace) are always freshly sliced per call, so downstream.push()in the solidify path can never leak across capsule instances. Three capsule-construction sites insrc/gep/solidify.jsmigrated to use the factory; legacy inline normalization removed.
Tests
- 27 unit tests for the Capsule factory (defaults, normalization, idempotency, mutation isolation, validator errors).
- Updated 2 createGene tests for the Bugbot fixes.
- Full suite: 1343 / 1343 passing on this commit.
Internal improvements and stability enhancements.