This directory contains configuration for Factory integration with the DataRobot CLI project.
Droid Computers are persistent cloud compute environments that Factory can connect to across sessions. Unlike the legacy Cloud Templates (now superseded), Droid Computers retain installed packages, files, and configuration between sessions.
- Navigate to Settings > Droid Computers in the Factory App
- Click Create and give your computer a name
- Factory provisions an Ubuntu environment (4 CPU, 8GB RAM)
- Once active, clone this repo and run
task bootstrapto install the full toolchain
For BYOM (Bring Your Own Machine), see the BYOM docs.
A devcontainer configuration is provided at .devcontainer/devcontainer.json. It pins Go 1.26 and installs Task automatically.
- VS Code: Open the repo and select "Reopen in Container"
- Zed: Open the repo and click Open in Container when prompted. If you modify
.devcontainer/devcontainer.json, Zed does not auto-rebuild — kill the container manually (docker kill <container-id>) and use Project: Open Remote to reconnect. - GitHub Codespaces: Create a codespace from this repo
- Droid Computers: The devcontainer can be used to provision the environment
If you prefer not to use a devcontainer, install the prerequisites manually (see docs/development/setup.md), then run:
task bootstrapThis verifies your Go version matches go.mod, installs all development tools (golangci-lint, goreleaser, jscpd, lefthook), sets up git hooks, and builds the CLI binary.
task build # Build the CLI binary to ./dist/dr
task test # Run tests with race detection and coverage
task lint # Run linters and formatters (read-only)
task run # Run the CLI via go run
task run -- --help # Run CLI with arguments- Droid Computers
- Factory Missions
- Task Runner
- Development Setup
- AGENTS.md - Project coding guidelines