Open
Conversation
- Document minimum Node.js (22.9.0) and npm (11.6.0) versions - Add note for nvm users about global package reinstallation - Add prepare script to run build before npm install - Clean up package-lock.json peer dependency markers Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Implement cookie-based authentication for Databricks workspaces using browser session cookies (DBAUTH) and CSRF tokens. Unlike other services with fixed URLs, Databricks uses dynamic workspace URLs (*.cloud.databricks.com) so it's handled via dynamic service creation rather than static registry. - Add DatabricksApiCredentials class for cookie + CSRF token storage - Add Databricks service with BrowserFollowupServiceSession for login flow - Update registry to detect Databricks URLs and create service dynamically - Update services command to include databricks in the list - Add unit tests for credentials serialization and URL matching - Document Databricks usage in README Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Collaborator
|
Thanks, @weishi-imbue ! I think we want the tool to work with public APIs. Mostly because the internal ones are typically not documented (and the skill definition asks agents to look up documentation online). Some services make this easy because their clients are built on top of public APIs. When that's not the case, our approach has been to use browser automation for to generate the API token through the service's web interface (like here). Do you think that would be a viable approach for Databricks? |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Test plan
latchkey curl 'https://dbc-b28fe787-b68d.cloud.databricks.com/ajax-api/2.0/mlflow/experiments/list'🤖 Generated with Claude Code