feat: auto-wrap flat SKILL.md repos as skills#234
Merged
Conversation
When a plugin has no skills/ subdirectory, scan the plugin root for directories containing SKILL.md and treat each as a skill. This gives compatibility with the npx skills ecosystem (e.g. vercel-labs/agent-skills) without any schema changes. The enabledSkills/disabledSkills schema continues to work unchanged since the plugin is still tracked as a workspace plugin entry. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Deploying allagents with
|
| Latest commit: |
17e21a3
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://85bdc34e.allagents.pages.dev |
| Branch Preview URL: | https://feat-232-standalone-skills-f.allagents.pages.dev |
This was referenced Mar 14, 2026
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.
Summary
Closes #232.
Implements Option A (auto-wrap) from the issue — no schema changes needed.
How it works
When a plugin is installed and has no
skills/subdirectory,getAllSkillsFromPluginsnow scans the plugin root for directories containing aSKILL.mdfile and treats each as a skill. The existingenabledSkills/disabledSkillsschema works unchanged since the plugin is still tracked inworkspace.yaml.Before / After
Files changed
src/core/skills.ts— auto-wrap flat repos in skill discoverysrc/core/transform.ts— use resolved skill path instead of hardcoded skills/ assumption