-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Add databricks skills installer #307
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| --- | ||
| name: databricks-skill-installer | ||
| description: Run `databricks experimental aitools install --global` to install or refresh Databricks skills for Codex and other supported coding agents. Use when Codex needs to bootstrap Databricks skills with the Databricks CLI or install a specific Databricks skill such as `databricks-apps` or `databricks-jobs`. | ||
| --- | ||
|
|
||
| # Databricks Skill Installer | ||
|
|
||
| First check: | ||
|
|
||
| ```bash | ||
| databricks -v | ||
| ``` | ||
|
|
||
| If the command is missing, follow the upstream Databricks CLI install guide and treat it as the source of truth. In a sandboxed agent session, show the user the appropriate install command from that guide and ask them to run it in their own terminal. | ||
|
|
||
| [databricks-cli-install.md](https://github.com/databricks/databricks-agent-skills/blob/main/skills/databricks/databricks-cli-install.md) | ||
|
|
||
| Run: | ||
|
|
||
| ```bash | ||
| databricks experimental aitools install --global --agents codex | ||
| ``` | ||
|
|
||
| Install one skill with: | ||
|
|
||
| ```bash | ||
| databricks experimental aitools install --global --agents codex --skills databricks-apps | ||
|
Comment on lines
+21
to
+27
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [P1] Align installer command with current Databricks docs The skill’s primary workflow tells Codex to run |
||
| ``` | ||
|
|
||
| After installation, open the installed Databricks skill under `${CODEX_HOME:-~/.codex}/skills` and follow its upstream `SKILL.md`. | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [P2] Tell users to restart Codex after installing The last instruction says to open the installed skill and follow its |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| interface: | ||
| display_name: "Databricks Skills" | ||
| short_description: "Install Databricks skills for Codex" | ||
| icon_small: "./assets/databricks.svg" | ||
| icon_large: "./assets/databricks.png" | ||
| brand_color: "#FF3621" | ||
| default_prompt: "Use $databricks-skill-installer to install or update Databricks skills from the official Databricks repository." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[P2] Add the per-skill license file
This new curated skill directory only adds
SKILL.md,agents/openai.yaml, and assets, but noLICENSE.txt. The repo README says each individual skill’s license should live inside the skill directory asLICENSE.txt; that is especially important here because the PR also adds Databricks logo assets whose license/trademark attribution needs to be clear before distribution.