refactor(plugin): move agentify implementation into the skill directory#348
Merged
Conversation
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
Consolidates the
agentifyskill so its implementation lives inside the skill directory (plugins/e2a/skills/agentify/), next toSKILL.md— the conventional skill-local layout, matching the siblingskills/e2a/.Previously the scaffolder + assets sat at
plugins/e2a/agentify/(a sibling ofskills/), split from theSKILL.mdthat #345 placed underskills/agentify/. #345 kept them there only to avoid touching CI; this finishes the move.Changes
agentify-render.sh,templates/,references/,examples/,test/→plugins/e2a/skills/agentify/.${CLAUDE_PLUGIN_ROOT}/agentify/→${CLAUDE_PLUGIN_ROOT}/skills/agentify/.agentify-test.yml,agentify-lane-fixtures.yml) — path filters + run commands.docs/design/autonomous-repo-framework.mdpath references and the §10 addendum (the CI-stability rationale for the split no longer applies).Why it's safe
The scripts resolve paths self-relative (
BASH_SOURCE/dirname), not via the old hardcoded path, so the move is behavior-preserving.Verification
plugins/e2a/skills/agentify/test/run.sh→ ALL PASS from the new location.scripts/validate-plugin.mjs→ ✓ 2 skills, version 0.4.0, manifests in sync.🤖 Generated with Claude Code