feat(plugin): ship /agentify as an installable skill in the e2a plugin (v0.4.0)#345
Merged
Conversation
Makes the autonomous-repo deploy flow installable, not just copy-able.
- Add plugins/e2a/skills/agentify/SKILL.md — a second skill alongside
skills/e2a/, auto-discovered by the plugin. The scaffolder + templates
stay at plugins/e2a/agentify/ (CI + tests unchanged); the skill references
them via ${CLAUDE_PLUGIN_ROOT}/agentify/ (the whole plugin ships to the
install cache, so the bundled agentify-render.sh / templates / references
resolve at runtime).
- Bump the plugin version 0.3.2 -> 0.4.0 across all manifests (.claude /
.codex / .cursor plugin.json + the claude/cursor marketplace metadata) so
scripts/validate-plugin.mjs stays in sync.
Install: /plugin marketplace add Mnexa-AI/e2a -> /plugin install e2a ->
/agentify is available (alongside the e2a MCP tools). Design §10 addendum.
Validated: node scripts/validate-plugin.mjs (2 skills, in sync); the agentify
test suite still passes.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
jiashuoz
added a commit
that referenced
this pull request
Jul 1, 2026
…ry (#348) The agentify skill's scaffolder + assets lived at plugins/e2a/agentify/ (a sibling of skills/), split from its SKILL.md at plugins/e2a/skills/agentify/. #345 kept them there only to avoid touching CI. This consolidates everything under the skill's own directory — the conventional skill-local layout, matching skills/e2a/. - git-mv agentify-render.sh, templates/, references/, examples/, test/ into plugins/e2a/skills/agentify/ (alongside SKILL.md). - SKILL.md: ${CLAUDE_PLUGIN_ROOT}/agentify/ -> ${CLAUDE_PLUGIN_ROOT}/skills/agentify/. - Update both CI workflows (agentify-test, agentify-lane-fixtures) path filters + run commands. - Update docs/design/autonomous-repo-framework.md path references and the §10 addendum rationale (the CI-stability split no longer applies). Scripts already resolve paths self-relative (BASH_SOURCE/dirname), so the move is behavior-preserving. Verified: test/run.sh passes from the new location; validate-plugin.mjs reports 2 skills, manifests in sync. Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
What
Makes
/agentifyinstallable — it ships as a second skill in the e2a Claude Code plugin, alongside the existingskills/e2a/. Before this, the deploy flow was copy-only (drop the directory into~/.claude/skills/).How it works
plugins/e2a/skills/agentify/SKILL.md(auto-discovered — noplugin.jsonchange needed for skills).plugins/e2a/agentify/(so the CI workflows + test suite are untouched); the skill references them via${CLAUDE_PLUGIN_ROOT}/agentify/. The whole plugin ships to the local install cache, so the bundledagentify-render.sh/templates//references/resolve at runtime.0.3.2 → 0.4.0across all six manifests (.claude/.codex/.cursorplugin.json+ the claude/cursor marketplace metadata) soscripts/validate-plugin.mjsstays in sync.Install
→
/agentifyis available (alongside the e2a MCP tools), which then scaffolds the feedback-loop framework into a target repo.Validation
node scripts/validate-plugin.mjs→ ✓ 2 skills, manifests in syncConfirmed the plugin mechanics against the official docs first: the whole plugin source is copied to
~/.claude/plugins/cacheon install, and${CLAUDE_PLUGIN_ROOT}resolves to that path — so a skill can reference sibling plugin files.🤖 Generated with Claude Code