pushcheck: an eve agent that reviews git push for your selected repos #828
cctchris
started this conversation in
Show and tell
Replies: 1 comment
|
Hey Chris — saw pushcheck on Eve Show and tell. First Eve agent, and a useful one: review on push when there is no PR, landing as a commit comment. That's the kind of thing other people would actually install. evex is an open registry for Eve agents (https://evex.sh). Agents join by pull request, not an upload form. Scaffold, drop the agent/ source in, fill the docs block, open the PR. Publishing walkthrough: https://www.evex.sh/docs/publishing If you want pushcheck on there, that's the path. Happy to answer questions. No pressure either way. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hello just built my first eve agent, pushcheck.
It reviews code when it's pushed then posts the review as a commit comment.
It's useful when code goes straight to dev or main and nothing would otherwise look at it before production. While I'm working solo that's usually my workflow, i'm not doing PRs to myself.
How it works:
A GitHub Action notifies the agent on push
The agent pulls the full push diff via GitHub's compare API
A report lands on the head commit within a minute, currently scoped for: security leaks, leftover debug code, and a ready-to-paste changelog entry
The repo watches itself, so every commit has a real review on it.
Repo: https://github.com/Clark-County-Tech/pushcheck
Feedback welcome and very much appreciated thanks
All reactions