feat(marketplace): add eve plugin#219
Conversation
Add the eve built-in plugin to the marketplace. The eve plugin wraps the eve agent skill from vercel/eve (Apache-2.0), a filesystem-first framework for durable backend AI agents. - plugins/eve/: new plugin directory with skill (SKILL.md installed via bunx skills add vercel/eve --skill eve) and three runtime manifests: .claude-plugin/plugin.json (Claude Code), .codex-plugin/plugin.json (Codex), and root plugin.json (Antigravity) - plugins/eve/skills-lock.json: tracks the installed skill - .claude-plugin/marketplace.json: eve entry added (source of truth) - .agents/plugins/marketplace.json: Codex marketplace regenerated - release-please-config.json: plugins/eve package entry added - .release-please-manifest.json: plugins/eve 1.0.0 added - README.md: Built-in Plugins entry added Note: eve's SKILL.md lives at the vercel/eve repo root, so skills.sh cloned the full monorepo; the skill dir was trimmed to only SKILL.md to avoid vendoring the whole framework. A future bunx skills update may re-copy the full tree and will need re-trimming.
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
🔍 Tessl Skill Review
|
| Dimension | Score | Detail |
|---|---|---|
| conciseness | ███ 3/3 | The skill is very lean — it defines what eve is in one sentence, then directs Claude to the authoritative docs. No unnecessary explanation of concepts Claude already knows. Every token serves a purpose. |
| actionability | ██░ 2/3 | It provides concrete commands (npm install eve, npx eve init <agent-name>) and a specific path to read (node_modules/eve/docs/README.md), but it doesn't provide any executable code examples, patterns, or copy-paste-ready snippets for common eve tasks. The skill essentially delegates all actionability to external docs. |
| workflow clarity | ██░ 2/3 | There is an implicit workflow (install → read docs → write code), but it's not explicitly sequenced with numbered steps or validation checkpoints. The instruction 'Before writing any eve code, read the relevant guide there first' is a useful constraint but lacks structure. |
| progressive disclosure | ██░ 2/3 | The skill correctly points to node_modules/eve/docs/README.md as the entry point with a full index, which is good one-level-deep referencing. However, no bundle files are provided, so we cannot verify the referenced paths exist or that the structure actually supports this delegation. The skill is essentially a pointer with no fallback content. |
Overall: This skill is admirably concise and correctly delegates to versioned bundled documentation, avoiding staleness. However, it provides almost no standalone value — if the docs aren't installed or the path is wrong, Claude has zero actionable guidance. It functions more as a redirect than a skill, lacking any quick-reference patterns, common pitfalls, or executable examples that would make it useful on its own.
Suggestions:
- Add a minimal quick-start example showing a basic eve agent directory structure and a simple agent definition file, so Claude has actionable guidance even before reading the full docs.
- Structure the workflow as explicit numbered steps: 1. Check if eve is installed, 2. Install/scaffold, 3. Read docs, 4. Implement — with validation at each step.
- Include at least one concrete code snippet or file example (e.g., a minimal agent YAML/config) to make the skill independently actionable rather than purely a documentation pointer.
To improve your score, point your agent at the Tessl optimization guide. Need help? Jump on our Discord.
Feedback
Report issues with this review at tesslio/skill-review, or send private feedback from your terminal with tessl feedback.
Up to standards ✅🟢 Issues
|
|
Caution Review failedThe pull request is closed. ℹ️ Recent review info⚙️ Run configurationConfiguration used: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (10)
📝 WalkthroughWalkthroughAdds a new ChangesEve Plugin Addition
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~5 minutes Poem
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Code Review
This pull request adds the 'eve' plugin to the marketplace, including its configuration, documentation, and release settings. It creates the plugins/eve directory with its manifest files, lock files, and skill definitions, and updates the global marketplace manifests and README. As there are no review comments, I have no feedback to provide.
|



Summary
Adds the eve built-in plugin to the Claude Code plugin marketplace. The eve plugin wraps the
eveagent skill from vercel/eve (Apache-2.0) — a filesystem-first framework for durable backend AI agents.Files Changed
plugins/eve/(new) — plugin directory containing:.agents/skills/eve/SKILL.md— skill installed viabunx skills add vercel/eve --skill eve.claude-plugin/plugin.json— Claude Code runtime manifest.codex-plugin/plugin.json— Codex runtime manifest (generated viabun scripts/cli.ts multi-format)plugin.json— Antigravity runtime manifest (generated)skills-lock.json— tracks the installed skill.claude-plugin/marketplace.json— eve entry added (source of truth).agents/plugins/marketplace.json— Codex marketplace regenerated (eve entry only)release-please-config.json—plugins/evepackage entry added with version-bearing manifests inextra-files.release-please-manifest.json—plugins/eve: 1.0.0addedREADME.md— Built-in Plugins entry addedNotes
bunx skills add vercel/eve --skill eve— eve'sSKILL.mdlives at the monorepo root of vercel/eve, so skills.sh cloned the full monorepo. The skill directory was trimmed to onlySKILL.mdto avoid vendoring the entire framework. A futurebunx skills updatemay re-copy the full tree and will need re-trimming.claude plugin validate plugins/evepasses.bun scripts/cli.ts multi-format; only the eve-related files are included in this commit (unrelated churn was not committed per the marketplace-sync rule).Summary by cubic
Adds the built-in
eveplugin to the marketplace, wrapping theeveagent skill fromvercel/eve. Enables creating, editing, and debugging Eve-based backend agents across Claude, Codex, and Antigravity runtimes.plugins/eve/with.agents/skills/eve/SKILL.md,.claude-plugin/plugin.json,.codex-plugin/plugin.json, andplugin.json..claude-plugin/marketplace.jsonand regenerated.agents/plugins/marketplace.json.eve.release-pleaseforplugins/eve(1.0.0) inrelease-please-config.jsonand.release-please-manifest.json.Written for commit 8bd1fd7. Summary will update on new commits.
Summary by CodeRabbit
New Features
Documentation