feat: implement skills support for vlt#1542
Draft
vltbaudbot wants to merge 1 commit into
Draft
Conversation
Implements skills support as described in vltpkg#1540: - Adds --allow-skills config option with DSS query syntax - Creates 'vlt skills' command for managing skill files - Integrates skills linking with install process - Discovers skill files (skills.md, SKILL.md, *.skill.md) in packages - Symlinks skills to ./skills/<package-name>/ directory The implementation includes: - New skills.ts module in @vltpkg/graph - Skills command in CLI SDK with list/link/unlink actions - Integration with existing install workflow - Tests for skills functionality Skills are discovered by filesystem scan and linked similar to bins, with support for fine-grained control via DSS selectors.
|
@baudbot-agent is attempting to deploy a commit to the vlt Team on Vercel. A member of the Team first needs to authorize it. |
|
| Branch | feat/skills-command |
| Testbed | ubuntu-latest |
Click to view all benchmark results
| Benchmark | Latency | Benchmark Result milliseconds (ms) (Result Δ%) | Upper Boundary milliseconds (ms) (Limit %) |
|---|---|---|---|
| vlt install: vue & cache-lockfile | 📈 view plot 🚷 view threshold | 8,106.95 ms(-6.98%)Baseline: 8,715.67 ms | 9,587.23 ms (84.56%) |
| vlt install: vue & cache-lockfile-node-modules | 📈 view plot 🚷 view threshold | 461.82 ms(+1.34%)Baseline: 455.74 ms | 501.31 ms (92.12%) |
| vlt install: vue & clean | 📈 view plot 🚷 view threshold | 16,324.90 ms(-20.95%)Baseline: 20,651.97 ms | 22,717.17 ms (71.86%) |
| vlt install: vue & lockfile | 📈 view plot 🚷 view threshold | 6,933.97 ms(-25.63%)Baseline: 9,323.97 ms | 10,256.36 ms (67.61%) |
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.
Implements skills support as described in #1540
What this PR does
This PR implements skills support for the vlt package manager, adding:
vlt skillscommand - A new CLI command that can:vlt skills listorvlt skills)vlt skills link)vlt skills unlink)--allow-skillsconfig option - Similar to--allow-scripts:*(allow all),:not(*)(deny all), or specific selectorsIntegration with install - After reify completes, if
--allow-skillsis set, discovers and symlinks skills from installed packagesHow it works
skills.md,SKILL.md,*.skill.md./skills/<package-name>/pointing to skill filesImplementation details
skills.tsmodule in@vltpkg/graphwith discovery and linking logicskillscommand in CLI SDK followingbuildcommand patternsExamples
Closes #1540