Bump cli-compat skills to 0.2.0#5324
Queued
jamesbroadhead wants to merge 3 commits into
Queued
Conversation
Pulls in the new experimental skills (18 skills under repo_dir=experimental) released in databricks-agent-skills v0.2.0, so `databricks aitools install --experimental` resolves them without DATABRICKS_SKILLS_REF=main. The 0.300.0 entry stays at skills 0.1.5 for older CLI binaries. Co-authored-by: Isaac
Collaborator
|
Commit: f092b72 |
Previous Integration Tests run failed on TestAccept/bundle/resources/* and TestFsCp* on aws-prod-ucws-is/dbr and gcp-prod-is runners. The diff only changes the skills version in cli-compat.json, which is read by `aitools install` and unrelated to those tests. The same cli-isolated-pr workflow has been flaking on main independently. Co-authored-by: Isaac
simonfaltum
reviewed
May 26, 2026
| { | ||
| "1.0.0": { "appkit": "0.38.0", "skills": "0.1.5" }, | ||
| "1.0.0": { "appkit": "0.38.0", "skills": "0.2.0" }, | ||
| "0.300.0": { "appkit": "0.24.0", "skills": "0.1.5" } |
Member
There was a problem hiding this comment.
There was never a 0.300.0 version?
Member
There was a problem hiding this comment.
you're right, I'll clean this up in an upcoming PR (that will also do another skills bump - can't trigger the skills release right now as I'm encountering "Failed to queue workflow run. Please try again." - https://www.githubstatus.com/
simonfaltum
approved these changes
May 26, 2026
dustinvannoy-db
approved these changes
May 26, 2026
dustinvannoy-db
left a comment
There was a problem hiding this comment.
LGTM, assuming older CLI will also work.
Contributor
Author
@dustinvannoy-db this will require the 1.0 version of the CLI - but their upgrade lifecycle is pretty good |
Any commits made after this event will not be merged.
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
cli-compat.jsonto point CLI version1.0.0at Agent Skills0.2.0(from0.1.5).0.300.0entry stays at skills0.1.5so older CLI binaries keep resolving to a tag whose manifest format they understand (norepo_dir).Why
databricks-agent-skillsv0.2.0 (release) introduces the new manifest layout withrepo_dir: "skills"vsrepo_dir: "experimental"per skill (replacing the droppedexperimentalboolean) and ships 18 experimental skills underexperimental/. Until this bump lands,databricks aitools install --experimentalresolves to v0.1.5 and finds nothing experimental — users have to setDATABRICKS_SKILLS_REF=mainas a workaround.The CLI installer already understands
repo_dir(SkillMeta.IsExperimental()inlibs/aitools/installer/installer.go), so no code change is needed — only the version pin.Test plan
go test ./libs/clicompat/... ./libs/aitools/...— all green locally.DATABRICKS_FORCE_EMBEDDED_COMPAT=true databricks aitools list:Available skills (v0.2.0).databricks-agent-skills@v0.2.0manifest.json.[experimental]— confirmsSkillMeta.IsExperimental()returns true for entries withrepo_dir == "experimental"in the v2 manifest.go test ./libs/clicompat/...and./libs/aitools/...pass. Previous Integration Tests failure (run26372918714) was unrelated flake — failing onTestAccept/bundle/resources/*andTestFsCp*onaws-prod-ucws-is/gcp-prod-isrunners, none of which readcli-compat.json; same workflow has been flaking onmainindependently. Re-pushed an empty commit to retrigger.Related
This pull request and its description were written by Isaac.