-
Notifications
You must be signed in to change notification settings - Fork 210
Add Gemini CLI to databricks aitools install
#6204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 5 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
6e89d7f
Add Pi to `databricks aitools install`
lennartkats-db a3dfeba
Add Goose to `databricks aitools install`
lennartkats-db 60a0030
Add Gemini CLI to `databricks aitools install`
lennartkats-db 4b71160
Normalize Pi agent directory override
lennartkats-db d835008
Match Goose config path resolution
lennartkats-db c86614b
Merge branch 'add-agent-pi' into add-agent-goose
lennartkats-db 1c1ea3d
Keep Gemini skills discoverable for updates
lennartkats-db d73661a
Merge branch 'add-agent-goose' into add-agent-gemini
lennartkats-db 0eceecd
Keep Pi in skills-only name coverage
lennartkats-db 98d865a
Merge branch 'add-agent-goose' into add-agent-gemini
lennartkats-db ba2dc7f
Add Gemini CLI to `databricks aitools install`
lennartkats-db dee7acf
Keep Gemini skills discoverable for updates
lennartkats-db a9574e3
Match Gemini CLI telemetry enum
lennartkats-db 34b6a7f
Clarify mandatory agent detection file
lennartkats-db 6f894bc
Clarify mandatory agent detection file
lennartkats-db ed0a2f6
Inline Gemini detection filename
lennartkats-db 737677b
Merge remote-tracking branch 'origin/pr/6204' into add-agent-gemini
lennartkats-db 92aa590
Merge remote-tracking branch 'origin/main' into add-agent-gemini
lennartkats-db File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| `databricks aitools install` now supports Gemini CLI, installing Databricks agent skills into its skills directory. |
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| `databricks aitools install` now supports Pi, installing Databricks agent skills into its skills directory. |
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
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
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,28 @@ | ||
| package agents | ||
|
|
||
| import ( | ||
| "testing" | ||
|
|
||
| "github.com/stretchr/testify/assert" | ||
| ) | ||
|
|
||
| func TestSupportedNamesMatchesRegistry(t *testing.T) { | ||
| names := SupportedNames() | ||
| assert.Len(t, names, len(Registry)) | ||
| for i, a := range Registry { | ||
| assert.Equal(t, a.DisplayName, names[i]) | ||
| } | ||
| } | ||
|
|
||
| func TestSkillsOnlyNamesMatchesRegistry(t *testing.T) { | ||
| names := SkillsOnlyNames() | ||
| // Skills-only agents (Plugin nil) are listed; plugin agents are not. | ||
| assert.Contains(t, names, "Pi") | ||
| assert.Contains(t, names, "Gemini CLI") | ||
| assert.NotContains(t, names, "Claude Code") | ||
| for _, a := range Registry { | ||
| if a.Plugin != nil { | ||
| assert.NotContains(t, names, a.DisplayName) | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.