← ClaudeAtlas

datarobot-setuplisted

Sets up DataRobot for local development including Python SDK, dr-cli, Agent Assist, and all required dependencies. Use when the user has not yet worked with DataRobot on this machine and wants to deploy agents to DataRobot, build an agent from scratch, or connect to DataRobot's APIs from a new project.
datarobot-oss/datarobot-agent-skills · ★ 18 · AI & Automation · score 78
Install: claude install-skill datarobot-oss/datarobot-agent-skills
# DataRobot Local Development Setup You are helping set up DataRobot for local development. Before installing anything, audit what is already present and only install what is missing. Follow these steps in order. ## Step 1: Pre-Flight Check (Detect Existing Installation) Build a checklist of what is already installed before doing any installation work. Run each check and record the result. Skip any install step in Steps 3-7 whose check below already passes. ```bash # Required tools — record version for each, or "missing" command -v python3 && python3 --version command -v git && git --version command -v uv && uv --version command -v dr && dr --version command -v pulumi && pulumi version command -v task && task --version command -v node && node --version command -v pip && pip --version # DataRobot CLI plugins (only meaningful if `dr` exists) dr plugin list 2>/dev/null | grep -i assist # Python SDK (in the user's active environment) python3 -c "import datarobot; print(datarobot.__version__)" 2>/dev/null python3 -c "import datarobot_predict; print('datarobot-predict installed')" 2>/dev/null # dr-cli auth state test -f ~/.config/datarobot/drconfig.yaml && echo "dr-cli already configured" ``` Compare each detected version to the minimums in the table in Step 3. Tell the user: - What is already installed and at acceptable versions (skip) - What is missing or below minimum version (install) - Whether dr-cli is already authenticated (sk