Genie Workbench is maintained by Databricks Field Engineering. The repository is public so anyone can read, fork, and learn from it, but pull requests are currently accepted only from Databricks employees. If you're a Databricks FE and want to pitch in, we'd love the help — start here.
We plan work on the Genie Workbench Roadmap. Contributions flow from there: pick an issue, claim it, ship it.
- Browse the Roadmap board.
- Pick an open issue that isn't already assigned.
- Assign yourself via the Assignees sidebar. This signals you're working on it so no one duplicates effort.
- If you want to sanity-check scope or approach first, comment on the issue or drop a note in #genie-workbench on Slack.
If you start on something and realize you can't finish, unassign yourself so someone else can pick it up.
- Branch name:
feature/<issue-#>-short-desc— e.g.,feature/141-contributing-rewrite. - PR title: one descriptive sentence — no required prefix. e.g.,
Rewrite CONTRIBUTING.md for board-first flow. - PR description: link the issue (
Closes #141), summarize the change, and note what you tested. There is no local dev server — test against a deployed workspace via./scripts/deploy.sh. - Target branch:
main.
Not on the board yet? Two options:
- Small ideas or questions: drop them in #genie-workbench on Slack.
- Concrete feature requests: open a feature request. Core contributors triage these ad hoc. Outcomes:
- Added to the Roadmap — we plan to work on it; the issue joins the board.
- Accepted, unscheduled — reasonable ask, no plan yet. PRs welcome; otherwise we'll get to it when there's bandwidth.
- Declined — closed with a comment explaining why.
Use GitHub Issues to report bugs.
Do not include sensitive information in issues. This is a public repository. Never include customer names, workspace URLs, access tokens, or any customer-identifiable data.
If your bug involves a customer environment or contains details that can't be shared publicly, report it in #genie-workbench on Slack instead.
Please include:
- A clear description of the problem
- Steps to reproduce
- Expected vs. actual behavior
- Browser and workspace region (not the URL)
-
Clone the repository:
git clone https://github.com/databricks-solutions/databricks-genie-workbench.git cd databricks-genie-workbench -
Install dependencies:
uv sync --frozen cd frontend && npm ci
-
First-time setup (creates
.env.deploywith your workspace config):./scripts/install.sh
See the README for full architecture and environment variable reference.
- Create a
feature/<issue-#>-short-descbranch frommain. - Make changes with clear, descriptive commits.
- Run the test suite:
./scripts/test.sh
- Deploy and test against a real Databricks workspace:
./scripts/deploy.sh
- Open a PR linking the issue you claimed, describing the change, and noting what you tested.
- Address review feedback.
Join #genie-workbench on Slack for questions, discussion, sensitive bug reports, and general feedback.
To report a security vulnerability, see SECURITY.md.
By submitting a contribution, you agree that your contributions will be licensed under the same terms as the project. See LICENSE.md.