evex: an open registry for eve agents, installable with the shadcn CLI #2091
TommyBez
started this conversation in
Show and tell
Replies: 0 comments
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.
I have been building evex, an open registry for agents built on eve.
The install path is the shadcn CLI. Adding an agent to an eve app is
npx shadcn@latest add @evex/code-reviewer, and the CLI writes the agent source into your project: instructions, typed tools, config. You own the files afterwards and can edit them like anything else in the repo. The agent page shows every file before you install, so nothing arrives unseen.Publishing is a pull request against https://github.com/TommyBez/evex. An agent has to ship an eval suite, a README written for whoever runs it, and an
.env.examplethat covers every environment variable the code reads. A generator validates the manifest against a schema and checks that the declared file list matches disk, that dependencies are in sync, and that every agent pins the same eve version. Each merged agent gets a CODEOWNERS entry, so it has an owner after merge rather than becoming unmaintained catalog filler.There are 11 agents in the catalog today, all mine, which is the part I would most like to change. Categories so far: code review, data analysis over Postgres and Supabase from Slack, Linear operations, scheduled X and email digests, generative UI, brand and SEO asset generation, and an agent that builds other eve agents.
The publishing guide is at https://evex.sh/docs/publishing. Feedback on the packaging contract is welcome, especially from anyone who has tried to share an eve agent and found the current options awkward.
All reactions