feat(ecosystem): add agent-skill scanner for skills.sh lock files#41
Open
adel-pplx wants to merge 2 commits into
Open
feat(ecosystem): add agent-skill scanner for skills.sh lock files#41adel-pplx wants to merge 2 commits into
adel-pplx wants to merge 2 commits into
Conversation
Parses .skill-lock.json (global, ~/.agents or $XDG_STATE_HOME/skills) and skills-lock.json (project) lock files written by the skills.sh / vercel-labs/skills CLI. Emits one record per skill with ecosystem=agent-skill, package_name=<upstream source slug>, server_name=<local alias>. Local-source entries drop the on-disk path so filesystem layout does not leak. Tolerates both v1 (legacy computedHash) and v3 (skillFolderHash) schemas plus unknown version numbers. Fixes #32
kyle-pplx
previously approved these changes
May 29, 2026
# Conflicts: # README.md # cmd/bumblebee/main.go # cmd/bumblebee/main_test.go # cmd/bumblebee/roots.go # docs/inventory-sources.md # internal/model/model.go # internal/scanner/scanner.go # internal/scanner/scanner_integration_test.go
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.
Adds an
agent-skillecosystem covering skills.sh /vercel-labs/skillslock files: global~/.agents/.skill-lock.json(or$XDG_STATE_HOME/skills/.skill-lock.json) and project-localskills-lock.json. One record per skill:package_name= upstream source slug,server_name= local alias,requested_spec= compact install descriptor.sourceType=localentries drop the on-disk path so filesystem layout does not leak. Both schema v1 and v3 are accepted. LooseSKILL.mddirectories without a lock file are an accepted gap, documented indocs/inventory-sources.md.Fixes #32