chore: upgrade EvoZeus harness to v0.10.0 - #1
Conversation
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 78055abf42
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| isinstance(cached_version, str) | ||
| and version_key(cached_version) | ||
| and isinstance(cached_at, int) | ||
| and max(0, now_epoch - cached_at) <= GLOBAL_CACHE_TTL_SECONDS |
There was a problem hiding this comment.
Reject cache timestamps that are in the future
When the system clock moves backward or the shared dispatcher cache contains a future checked_at_epoch, max(0, now_epoch - cached_at) treats the entry as zero seconds old. A sufficiently future timestamp can therefore keep a stale wrapper version valid far beyond the one-hour TTL, preventing this startup check from discovering newer releases. Require the computed age to be nonnegative as well as within the TTL.
Useful? React with 👍 / 👎.
Summary
Verification
python3 .evozeus-wrapper/scripts/evozeus_wrapper_preflight.py structurepython3 .evozeus-wrapper/scripts/evozeus_wrapper_preflight.py doctor --repo MetaInFLow/metainflow-dev-taskspython3 /Users/anthonyf/.codex/skills/.system/skill-creator/scripts/quick_validate.py .continue: trueand wrapper currentgit diff --checkMigration Note
The v0.10.0 migrator initially removed the target H1 and emitted an incorrect layout label. This target PR restores the H1 and records the actual consolidated-v2 version refresh. The reusable wrapper regression is tracked in MetaInFLow/EvoZeus-CoEvolve#14; broad
upgrade-allwas not applied.Design doc:
.evozeus-wrapper/docs/designs/2026-07-20-upgrade-wrapper-v0.10.0.mdChangelog updated:
.evozeus-wrapper/CHANGELOG.mdData Boundary
No private configuration, customer data, chats, Feishu records, internal document links, or credentials are included.