Agent skills
Agent skills
Agent skills are instruction files that AI coding assistants load to perform Databricks development tasks. Databricks publishes its skills in the databricks/databricks-agent-skills repository and follows the open agent skills standard.
Skills tell your coding agent how Databricks works, including CLI conventions, authentication patterns, and resource names, so it generates correct code instead of guessing.
Install
Install the official Databricks agent skills with the following command:
databricks aitools install
This requires the Databricks CLI to be installed. See Databricks CLI for installation instructions.
The CLI detects which coding agents you have installed and links the skills into each agent's config directory from a shared location (~/.databricks/aitools/skills/).
The following flags are available for the databricks aitools install command:
Run databricks aitools install --help for the full list of options.
Manage
databricks aitools list
databricks aitools update
databricks aitools uninstall
update fetches the latest release and auto-installs new skills. Pass --check to preview without downloading, --no-new to skip auto-installing new skills, or --force to re-download even if versions match.
All commands accept --scope=global (default), --scope=project, or --scope=both to control scope.
Alternative install methods
You can also install Databricks skills with the Skills CLI (e.g. npx skills add databricks/databricks-agent-skills) or directly from Cursor chat with /add-plugin databricks-skills. That said, databricks aitools install is the recommended method — it's maintained by Databricks and always installs the latest stable versions.
Available skills
Run databricks aitools skills list to see available skills and their install status.
Where to next
With Databricks agent skills installed, your coding agent has the context it needs to build and deploy.
- To give your agent further context, install the Docs MCP Server.
- Ready to start building? Read about how templates can help you quickly scaffold your project.