Conversation
…kill` Renames the `ug skill` command group to `ug skills` (`ug skills add`, `ug skills remove`) and the download subset flag from `--skills` to `--skill` on both subcommands. This aligns the sibling commands: the group now matches `ug configure skills`, and the flag matches the existing `ug configure skills --skill`. Updates the CLI wiring, user facing help and error strings, docstrings, README, and tests. No behavior change beyond the renamed names. Co-authored-by: Isaac <no-reply@databricks.com>
`--path` was documented for `ug configure skills` and `ug skills remove` but not for `ug skills add`, though it is a valid download destination flag there. Adds a matching example and extends the quick-reference row. Co-authored-by: Isaac <no-reply@databricks.com>
xsh310
marked this pull request as ready for review
September 17, 2026 00:01
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.
What did you change, and why?
Change: Renamed the
ug skillcommand group toug skills, soug skill addbecomesug skills addandug skill removebecomesug skills remove. Also renamed the download subset flag from--skillsto--skillon both subcommands.Why: It makes the sibling commands consistent. The group now matches
ug configure skills, and the flag now matches the existingug configure skills --skillflag.The change covers the CLI wiring, the user facing help and error strings, docstrings, the README, and the tests. There is no behavior change beyond the renamed names.
How do you know it works?
Testing:
uv run ruff checkanduv run ruff format --checkpass.uv run pytest tests/test_cli.py tests/test_mcp.py tests/test_lint.pypasses (521 tests), including the renamedskills add/skills removecommand and--skillflag cases.ug skills --helpandug skills add --helpconfirm the renamed command group and the--skillflag.One unrelated test,
tests/test_e2e_user_agent.py::TestClaudeUserAgent::test_user_agent_arrives_at_gateway, fails on the clean base too (it launches the localclaudebinary), so it is pre-existing and environmental.This pull request and its description were written by Isaac.