feat: Add adb-coding-assistants-cluster module - #241
Open
dgokeeffe wants to merge 3 commits into
Open
Conversation
Add Terraform module for deploying Claude Code CLI on Databricks clusters with MLflow tracing integration. Features: - Claude Code CLI installation with Node.js runtime - Databricks authentication integration via proxy endpoints - MLflow tracing for Claude Code sessions - VS Code/Cursor Remote SSH support - Token refresh helpers and cron automation - Databricks skills for common patterns - Network dependency validation script - Minimal installation option for constrained environments The module includes init scripts that: - Install Claude Code CLI and dependencies - Configure authentication via DATABRICKS_TOKEN - Set up bashrc helpers for token management - Support profile-based Azure authentication - Disable experimental betas for stability Co-authored-by: Cursor <cursoragent@cursor.com>
- Add safe expansion for DATABRICKS_HOST to prevent crash under set -u - Remove unused local variables in claude-setup-token-refresh() - Fix broken $? check in claude-vscode-config() by capturing exit code - Use python3 -m pip instead of bare pip for safer execution - Add supply-chain verification comment to minimal installer - Fix node_type_id description to match actual default value - Update scripts README with all available scripts - Remove wget from system tools list (not installed) - Remove OpenCode references throughout documentation Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Per review feedback, not every example needs a corresponding module. Inlined all resources from modules/adb-coding-assistants-cluster/ directly into examples/adb-coding-assistants-cluster/ to make it self-contained. Copied scripts into the example directory and updated all references. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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
This PR adds a new Terraform module for deploying Claude Code CLI on Databricks clusters with MLflow tracing integration.
Key Features
Module Structure
modules/adb-coding-assistants-cluster/- Main module with full featuresexamples/adb-coding-assistants-cluster/- Example deployment configurationInit Scripts
Authentication
The module configures Claude Code to use Databricks as the model provider:
Helper Commands
The init scripts add several helper commands to the cluster:
check-claude- Verify installation statusclaude-refresh-token- Regenerate authentication settingsclaude-token-status- Check token freshnessclaude-tracing-enable/disable/status- Manage MLflow tracingclaude-vscode-setup- Remote SSH setup guideTest Plan
Made with Cursor