Add skill-map schema catalog entries - #6150
Merged
Merged
Conversation
Register three externally hosted skill-map schemas: the plugin extension manifest, the provider node-kind descriptor, and the per-project settings file (.skill-map/settings.json and its .local partner). The schema files are served from https://skill-map.ai. Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Contributor
|
Thanks for the PR! This section of the codebase is owned by @madskristensen and |
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.
Registers three externally hosted schemas for skill-map, following the self-hosted/remote/external flow in CONTRIBUTING.md (catalog entries only, the schemas are served from skill-map.ai):
extension.jsonper extension under.skill-map/plugins/*/{providers,extractors,analyzers,actions,formatters,hooks}/*.skill-map/settings.jsonand its.localpartnerkinds/*/kind.jsonAll three
fileMatchpatterns are anchored under a.skill-map/directory, so they cannot collide with similarly-named files from other ecosystems.Validated locally against this repo's own tooling:
node ./cli.js checkpasses (the full catalog assertion suite: schema validation, jsonlint, duplicate names,fileMatchconflicts) andprettier --check src/api/json/catalog.jsonis clean with the repo config.One note in the interest of transparency: the
/spec/v1/URLs above go live with skill-map's 1.0.0 release, which is imminent (the domain currently serves the pre-stable/spec/v0/path, and/spec/v0/will redirect to/spec/v1/once it ships). The version-stable path is what belongs in the catalog, so the entries point there rather than at a path that is about to become a redirect. Happy to hold this PR until the deploy lands if you prefer to verify the URLs first.