feat(evi): add bi-weekly repo-health-sweep skill and schedule - #574
Merged
Conversation
|
Contributor
|
The latest updates on your projects. Learn more about Vercel for GitHub.
4 Skipped Deployments
|
Contributor
|
Thank you for following the naming conventions! 🙏 |
commit: |
HugoRCD
approved these changes
Aug 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Context
The repo health sweep (docs, skills, conventions, examples) only happened once, as a one-off. EVL-242 is about making it a recurring workflow, not a single run. This PR adds the mechanism so it runs twice a week on its own cadence.
What this adds
apps/evi/agent/skills/repo-health-sweep/SKILL.md: encodes the sweep procedure from the issue scope as a loadable skill, so the scheduled turn does not improvise it. Four lenses (skills vs reality, docs quality, convention drift, examples drift), each grounded inmainwith the "name the file and the rule it contradicts or drop it" bar, plus dedupe and deliver rules that mirror the existing self-review skill.apps/evi/agent/schedules/repo-health-sweep.ts: adefineScheduleentry firing Tuesday and Friday 08:00 UTC. Times chosen clear of the digest (05:00), upstream-sync (Mon/Thu 07:00), cost-watchdog (Mon 08:00) and self-review (Wed 08:00), so the scheduled turns never contend for the thread. It mirrors the delivery pattern of the other schedules (imessage thread viaMAINTAINER_PHONE).Both are auto-discovered by eve; there is no central registry to update. The change is confined to
apps/evi, so no changeset is needed.Checks
pnpm run lint: pass (22 tasks)pnpm run typecheck: pass (27 tasks)pnpm --filter evi exec vitest run: 95 tests passDeliverable only: no behavior of the package itself changes.