feat: support uv tool install and document in README#124
Merged
Conversation
Add [tool.uv] section to pyproject.toml and document the uv tool install quick-start command in the README. This allows users to install SkillSpector with a single command: uv tool install git+https://github.com/NVIDIA/skillspector.git Updates are equally simple: uv tool update skillspector Fixes NVIDIA#99 Signed-off-by: Perseus Computing <51974392+tcconnally@users.noreply.github.com>
rng1995
approved these changes
Jun 21, 2026
rng1995
left a comment
Collaborator
There was a problem hiding this comment.
APPROVE — adds a uv tool install quick-start to the README plus a [tool.uv] section, with no behavioral risk.
Minor / optional (non-blocking):
- The
[tool.uv]section is comment-only/empty, so it does not actually change anything —uv tool install git+...already works because the package defines a[project.scripts]entry point. The README docs are the valuable part; the empty section could be dropped, or a real setting added if one was intended. - Nit: the README uses a lowercased
skillspector.gitwhile the canonical repo name isSkillSpector; GitHub is case-insensitive here so it works, just flagging for consistency.
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
Fixes #99: Add explicit
[tool.uv]section topyproject.tomland documentuv tool installas a quick installation method in the README.Changes
pyproject.toml: Add[tool.uv]section with comment documenting uv tool install supportREADME.md: Add "Quick install with uv" section before the "From source" instructionsUsage
Testing
All 621 tests pass. No code changes — packaging metadata only.