-
Notifications
You must be signed in to change notification settings - Fork 168
Promote aitools skills-management commands to top-level #4917
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
Open
jamesbroadhead
wants to merge
15
commits into
main
Choose a base branch
from
jbroadhead/aitools-public
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 10 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
8c97fac
aitools: promote skills-management surface to top-level
simonfaltum 514cceb
aitools: update tip and error messages to canonical top-level path
simonfaltum 506a8ef
aitools install: accept [skill-name] positional arg
simonfaltum fbb2a1b
Revert "aitools install: accept [skill-name] positional arg"
simonfaltum 7efa0d3
aitools/README: fix install command shape
simonfaltum e7f09a4
experimental/aitools: fix stale Long help text
jamesbroadhead c677e6f
aitools install: accept [skill-name] positional to match alias
jamesbroadhead 8a66a93
Merge remote-tracking branch 'origin/main' into jbroadhead/aitools-re…
jamesbroadhead ae72f55
Merge remote-tracking branch 'origin/main' into jbroadhead/aitools-re…
jamesbroadhead 960a74d
gofmt: align field alignment in aitools.go
jamesbroadhead 51d5258
Merge remote-tracking branch 'origin/main' into jb/aitools-drop-posit…
jamesbroadhead 9e5bcbc
aitools install: drop positional [skill-name] form
jamesbroadhead 9df5e93
Merge remote-tracking branch 'origin/main' into jb/aitools-move-only
jamesbroadhead 994aa20
Merge remote-tracking branch 'origin/main' into jb/aitools-merge-main
jamesbroadhead d15ad6e
Merge remote-tracking branch 'origin/main' into jb/aitools-merge-main2
jamesbroadhead 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
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,15 @@ | ||
| # Databricks AI Tools | ||
|
|
||
| `databricks aitools` installs and manages Databricks skills for detected coding agents. | ||
|
|
||
| ## Commands | ||
|
|
||
| - `databricks aitools install [skill-name]` (or `--skills <name>[,<name>...]` for multiple) | ||
| - `databricks aitools update` | ||
| - `databricks aitools uninstall` | ||
| - `databricks aitools list` | ||
| - `databricks aitools version` | ||
|
|
||
| Supported agents: Claude Code, Cursor, Codex CLI, OpenCode, GitHub Copilot, Antigravity. | ||
|
|
||
| The `tools` subtree (`query`, `discover-schema`, `get-default-warehouse`, `statement …`) and the `skills` alias group remain under `databricks experimental aitools` while their stability story is still in flux. |
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,25 @@ | ||
| package aitools | ||
|
|
||
| import ( | ||
| "github.com/spf13/cobra" | ||
| ) | ||
|
|
||
| func NewAitoolsCmd() *cobra.Command { | ||
| cmd := &cobra.Command{ | ||
| Use: "aitools", | ||
| Short: "Databricks AI Tools for coding agents", | ||
| Long: `Manage Databricks AI Tools. | ||
|
|
||
| Provides commands to install, update, and manage Databricks skills for | ||
| detected coding agents (Claude Code, Cursor, Codex CLI, OpenCode, GitHub | ||
| Copilot, Antigravity).`, | ||
| } | ||
|
|
||
| cmd.AddCommand(NewInstallCmd()) | ||
| cmd.AddCommand(NewUpdateCmd()) | ||
| cmd.AddCommand(NewUninstallCmd()) | ||
| cmd.AddCommand(NewListCmd()) | ||
| cmd.AddCommand(NewVersionCmd()) | ||
|
|
||
| return cmd | ||
| } |
File renamed without changes.
File renamed without changes.
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
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.