Conversation
…EADME to use vlm-run/skills repo 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:
|
3 tasks
spillai
added a commit
to vlm-run/skills
that referenced
this pull request
Mar 19, 2026
…L.md (#8) ## Summary Replaces all `.env` file / environment variable references with `vlmrun config` CLI commands for authentication setup across the skills repo. This is the companion PR to vlm-run/vlmrun-python-sdk (which removes `.claude-plugin` and `.claude/skills` from the SDK, pointing users here instead). Changes: - **`skills/vlmrun-cli-skill/SKILL.md`**: Replaced "Environment Variables" section with "Configuration" section using `vlmrun config init / set / show`. - **`README.md`**: Replaced `.env` file setup instructions with `vlmrun config` CLI commands in both the installation guide and the bottom "Configuration" section. Renamed env var names to TOML-style setting names (`api_key`, `base_url`, `cache_dir`). - **Deleted `skills/vlmrun-cli-skill/.env.template`**: No longer needed since auth is handled via TOML config. ### Updates since last revision - Resolved merge conflicts with `main` (merged `origin/main` into branch). ## Review & Testing Checklist for Human - [ ] Confirm `vlmrun config init`, `vlmrun config set --api-key`, and `vlmrun config show` are the correct CLI commands (the user's original message mentioned `vlmrun config --api-key` without `set` — verify which form is correct) - [ ] Verify the `base_url` default of `https://api.vlm.run/v1` is correct for all contexts (SKILL.md and README both use this) - [ ] After merging, test the Claude Code installation flow end-to-end: `/plugin marketplace add vlm-run/skills` → `/plugin install vlmrun-cli-skill@vlm-run/skills` → `vlmrun config init` → `vlmrun config set --api-key <key>` → run a `vlmrun chat` command ### Notes - This is a docs/config-only change — no code changes to review. - The `.env.template` deletion means existing users who relied on it will need to migrate to `vlmrun config`. - The companion python-sdk PR is at vlm-run/vlmrun-python-sdk#163. Link to Devin session: https://app.devin.ai/sessions/f282651462f94c93985a95a7e8b098c5 Requested by: @spillai Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> 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
Moves the Claude Code skill plugin out of this SDK repo and into the dedicated vlm-run/skills repository. Removes
.env.templatesince auth is now handled viavlmrun config(TOML-based) rather than environment variables.Deleted:
.claude-plugin/(plugin.json, marketplace.json).claude/skills/vlmrun-cli-skill/SKILL.md.env.templateUpdated:
README.md— Claude Code section now points users tovlm-run/skillsfor plugin installationCompanion PR: vlm-run/skills (replaces
.envreferences withvlmrun configcommands, syncs SKILL.md content)Review & Testing Checklist for Human
vlm-run/skillsis merged before or alongside this PR — otherwise the README instructions will point to a repo that may not have the updated skill/config content yetvlmrun config init/vlmrun config set --api-key/vlmrun config showCLI commands work as documented in the README.env.templateor the old.claude-pluginpaths (e.g. CI workflows, Makefile, docs)Notes
/plugin marketplace add vlm-run/vlmrun-python-sdkin Claude Code — they will need to switch to/plugin marketplace add vlm-run/skillsLink to Devin session: https://app.devin.ai/sessions/f282651462f94c93985a95a7e8b098c5
Requested by: @spillai