domino-projects

domino-projects is a skill for Claude Code from dominodatalab/domino-claude-plugin. It costs 67 tokens per session (1,858 once invoked), scanned A, original, MIT.

A guide to managing Domino Data Lab projects, including projects stored in Git repositories or Domino’s own file system. It covers project setup, Git connections, branches, collaborators, and permissions.

In plain words
What is it for?
Use it to create or configure Domino projects, connect GitHub, GitLab, or Bitbucket, manage branches and collaborators, and change project settings.
Why use it?
It helps you choose how project files are stored and manage changes and team access without having to learn Domino’s project options from scratch.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the domino-claude-plugin plugin — 23 skills, 4 commands, 3 agents, 1 MCP server shipped together

Good fit Use it to create or configure Domino projects, connect GitHub, GitLab, or Bitbucket, manage branches and collaborators, and change project settings.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dominodatalab/domino-claude-plugin/projects
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add dominodatalab/domino-claude-plugin --skill projects
Clone the repo
git clone --depth 1 https://github.com/dominodatalab/domino-claude-plugin

Made for: Claude Code.

Or install domino-claude-plugin, the plugin that ships this one along with the rest of its 23 skills, 4 commands, 3 agents, 1 MCP server.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for domino-projects

README.md
[![agentmods](https://agentmods.dev/badge/skills/dominodatalab/domino-claude-plugin/projects.svg)](https://agentmods.dev/skills/dominodatalab/domino-claude-plugin/projects)
Your own site
<a href="https://agentmods.dev/skills/dominodatalab/domino-claude-plugin/projects"><img src="https://agentmods.dev/badge/skills/dominodatalab/domino-claude-plugin/projects.svg" alt="Measured on agentmods" height="20"></a>
Per session 67 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,858 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00067 $0.01858
Opus 5 $0.00034 $0.00929
Sonnet 5 $0.00013 $0.00372
Haiku 4.5 $0.00007 $0.00186

Measured 8d ago against content hash 0713f33b0f99, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

domino-projects scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/projects/SKILL.md · 341 lines

How it starts

The opening of the file, as written. The whole thing — 341 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Domino Projects and Git Skill

Description

This skill helps users work with Domino Projects - including project creation, Git integration, version control, and collaboration features.

Activation

Activate this skill when users want to:

  • Create or configure a Domino project
  • Set up Git integration
  • Understand DFS vs Git-based projects
  • Collaborate with team members
  • Manage project settings and permissions

Project Types

Git-Based Projects

  • Code stored in external Git provider (GitHub, GitLab, Bitbucket)
  • Full Git workflow support
  • Better for teams familiar with Git
  • Access to Git provider features (PRs, issues)

Domino File System (DFS) Projects

  • Code stored in Domino's internal file system
  • Automatic versioning (Git under the hood)
  • Simpler for users unfamiliar with Git
  • Good for research and experimentation

Creating a Project

Via Domino UI

  1. Click New Project
  2. Enter project name
  3. Select project type:
    • Git-based: Connect to Git repository
    • DFS: Use Domino File System
  4. Configure settings
  5. Click Create

Via Python SDK

from domino import Domino

domino = Domino()

# Create DFS project
project = domino.project_create(
    project_name="my-project",
    owner_name="your-username"
)

print(f"Project ID: {project['id']}")

Git-Based Projects

Connecting to Git Repository

  1. Create project as Git-based
  2. Enter repository URL
  3. Configure authentication:
    • SSH Key: Add SSH public key to Git provider
    • HTTPS: Use personal access token

Git Credentials

# Add SSH key to Domino account
# Go to Account Settings > Git Credentials

# Or use HTTPS with token
https://username:[email protected]/org/repo.git

Working with Git in Workspaces

Sync Changes

Click Sync in workspace to push changes:

  1. Domino commits changes
  2. Pushes to configured branch
  3. Updates project state
Manual Git Commands
# Check status
git status

# Add and commit
git add .
git commit -m "Update model training"

# Push to remote
git push origin main

# Pull latest
git pull origin main

Read the full file on GitHub · 341 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 341 lines · 67 tokens per session scan A 0713f33b0f99

Subscribe to this mod's changes

domino-projects is a skill published in the GitHub repository dominodatalab/domino-claude-plugin (6 stars, last pushed 2mo ago), licensed MIT. It adds 67 tokens to every session and 1,858 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.