feat: restructure .claude skills and add plugin marketplace support#162
Merged
feat: restructure .claude skills and add plugin marketplace support#162
Conversation
- Move SKILL.md to .claude/skills/vlmrun-cli-skill/SKILL.md - Add .claude-plugin/marketplace.json for remote skill installation - Add .claude-plugin/plugin.json with plugin metadata Co-Authored-By: Sudeep Pillai <sudeep.pillai@gmail.com>
Contributor
Author
🤖 Devin AI EngineerI'll be helping with this pull request! Here's what you should know: ✅ I will automatically:
Note: I can only respond to comments from users who have write access to this repository. ⚙️ Control Options:
|
Co-Authored-By: Sudeep Pillai <sudeep.pillai@gmail.com>
… README Co-Authored-By: Sudeep Pillai <sudeep.pillai@gmail.com>
spillai
reviewed
Mar 18, 2026
Contributor
spillai
left a comment
There was a problem hiding this comment.
Recommend using vlmrun config instead of .env files.
README.md
Outdated
| /plugin install vlmrun-cli-skill@vlm-run/vlmrun-python-sdk | ||
| ``` | ||
|
|
||
| 3. Set up your environment variables by creating an `.env` file with your API key from [app.vlm.run](https://app.vlm.run): |
Contributor
There was a problem hiding this comment.
Instead of setup via .env file, recommend the vlmrun config init and vlmrun config show/set
Contributor
Author
There was a problem hiding this comment.
Updated to use vlmrun config init / vlmrun config set / vlmrun config show instead of .env files.
Co-Authored-By: Sudeep Pillai <sudeep.pillai@gmail.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.
Summary
Restructures the
.claudedirectory to follow the standardized Agent Skill format (matching the pattern in vlm-run/skills):.claude/SKILL.md→.claude/skills/vlmrun-cli-skill/SKILL.md(content unchanged).claude-plugin/marketplace.json— marketplace manifest listing the skill for remote installation.claude-plugin/plugin.json— plugin metadata (author, homepage, license, keywords)README.md(new "### Claude Code" section)This enables users to install the skill remotely via Claude Code:
Updates since last revision
vlmrun config init/vlmrun config set/vlmrun config showinstead of.envfile setup, per reviewer feedback.sourcepath inmarketplace.jsonto../.claude/skills/vlmrun-cli-skill(relative to.claude-plugin/) so it correctly resolves to the skill directory.pretty-format-jsonpre-commit hook.blackauto-format change invlmrun/cli/_cli/chat.py(line-break in atyper.Optioncall, no behavioral change).Review & Testing Checklist for Human
/plugin marketplace add vlm-run/vlmrun-python-sdkand/plugin install vlmrun-cli-skill@vlm-run/vlmrun-python-sdkin Claude Code to verify the skill is discovered and installed correctly. This is the only reliable way to validate the plugin spec paths.sourcepath resolves correctly: Thesourcefield inmarketplace.jsonis../.claude/skills/vlmrun-cli-skill(relative to.claude-plugin/). Confirm this is the expected resolution behavior per the Claude Code plugin spec — it may need to be a repo-root-relative path instead.vlmrun configCLI commands: The README referencesvlmrun config init,vlmrun config set, andvlmrun config show. Confirm these are the correct subcommands and syntax."name": "vlmrun-cli-skill"— verify this matches expectations (the referencevlm-run/skillsrepo uses the bundle name"vlmrun-skills"rather than the individual skill name).Notes
SKILL.mdcontent is unchanged — this is purely a structural reorganization..claude-plugin/directory invlm-run/skills.chat.pyformatting change is an unrelated pre-commit hook auto-fix (no logic change).Link to Devin session: https://app.devin.ai/sessions/43313e807036481d8b77bea2228393f2
Requested by: @spillai