From dominodatalab
Launches and manages Domino Workspaces (Jupyter, VS Code, RStudio) including hardware tier selection, environment configuration, volume mounting, SSH access, and package installation. Use when setting up or troubleshooting interactive development environments.
How this skill is triggered — by the user, by Claude, or both
Slash command
/dominodatalab:workspacesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill helps users work with Domino Workspaces - interactive development environments for data science work including Jupyter notebooks, JupyterLab, VS Code, and RStudio.
This skill helps users work with Domino Workspaces - interactive development environments for data science work including Jupyter notebooks, JupyterLab, VS Code, and RStudio.
Activate this skill when users want to:
Domino provides these default workspace types:
from domino import Domino
domino = Domino("project-owner/project-name")
# Start a workspace
workspace = domino.workspace_start(
environment_id="env-123",
hardware_tier_name="small",
workspace_type="JupyterLab"
)
print(f"Workspace ID: {workspace['workspaceId']}")
Work saved to these directories persists across workspace sessions:
/mnt/ - Project files (synced with Domino)/mnt/data/ - Domino Datasets/mnt/artifacts/ - Project artifacts/mnt/imported/ - Imported dataDomino 6.1+ supports home directory persistence:
# Python packages
pip install pandas numpy scikit-learn
# R packages
install.packages("tidyverse")
Add to environment's Dockerfile instructions:
RUN pip install pandas numpy scikit-learn
Or use requirements.txt in your project:
pandas>=2.0.0
numpy>=1.24.0
scikit-learn>=1.3.0
Domino 6.1+ allows SSH connections from local machines:
ssh -i ~/.ssh/domino_key user@workspace-hostname
Benefits:
# Clone a repo in workspace
git clone https://github.com/user/repo.git
# Standard git workflow
git add .
git commit -m "Update model"
git push origin main
Click Sync in the workspace UI to push changes back to Domino project.
domino.workspace_stop(workspace_id)
Stopped workspaces can be resumed to continue work.
Access logs for debugging through the Domino UI or API.
/mnt/ directories for persisted filesnpx claudepluginhub anthropics/claude-plugins-official --plugin dominodatalabOffers UI/UX design guidance for web and mobile with 50+ styles, 161 color palettes, 57 font pairings, and 99 UX guidelines across 10 stacks. Use for designing pages, components, color systems, or reviewing UI code.
Mines projects and conversations into a searchable memory palace. Activates on queries about MemPalace, memory palace, mining, searching, palace setup, wings, rooms, drawers, or recalling past work.