domino-model-endpoints

domino-model-endpoints is a skill for Claude Code from dominodatalab/domino-claude-plugin. It costs 58 tokens per session (752 once invoked), scanned A, original, MIT.

A guide to deploying trained machine-learning models as web APIs in Domino Data Lab, a platform for running data science work. It also covers checking endpoint health and performance after deployment.

In plain words
What is it for?
Use it to create prediction endpoints, update or manage deployed versions, view Grafana monitoring dashboards, set alerts, and troubleshoot production model APIs.
Why use it?
It helps turn a model into a usable service and find problems such as slow responses, errors, or resource issues. It also explains how to manage endpoint versions and GPU-based inference.

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 prediction endpoints, update or manage deployed versions, view Grafana monitoring dashboards, set alerts, and troubleshoot production model APIs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/dominodatalab/domino-claude-plugin/model-endpoints
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 model-endpoints
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-model-endpoints

README.md
[![agentmods](https://agentmods.dev/badge/skills/dominodatalab/domino-claude-plugin/model-endpoints/github.svg)](https://agentmods.dev/skills/dominodatalab/domino-claude-plugin/model-endpoints)
Your own site
<a href="https://agentmods.dev/skills/dominodatalab/domino-claude-plugin/model-endpoints"><img src="https://agentmods.dev/badge/skills/dominodatalab/domino-claude-plugin/model-endpoints/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for domino-model-endpoints

Your own site · 80×15
<a href="https://agentmods.dev/skills/dominodatalab/domino-claude-plugin/model-endpoints"><img src="https://agentmods.dev/badge/skills/dominodatalab/domino-claude-plugin/model-endpoints.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 752 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. 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.00058 $0.00752
Opus 5 $0.00029 $0.00376
Sonnet 5 $0.00012 $0.00150
Haiku 4.5 $0.00006 $0.00075

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

Security

Grade A, and why

domino-model-endpoints scanned grade A with 1 finding 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 10d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -X POST \
skills/model-endpoints/SKILL.md · 122 lines

How it starts

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

Domino Model Endpoints Skill

This skill provides comprehensive knowledge for deploying and monitoring model API endpoints in Domino Data Lab.

Key Concepts

Model Endpoints Overview

Domino Model Endpoints provide:

  • REST API for model predictions
  • Automatic scaling and load balancing
  • Version management
  • Built-in monitoring with Grafana
  • Authentication via API tokens

Endpoint Lifecycle

Train Model → Register → Deploy Endpoint → Monitor → Update Version

Environment Requirements

Important: Model APIs use the default environment set for your project. The environment must have the uwsgi Python package installed for model endpoints to work.

Required Package

# Add to your environment's Dockerfile instructions
RUN pip install uwsgi

Or in requirements.txt:

uwsgi

Setting Default Environment

  1. Go to Project SettingsExecution Preferences
  2. Set the Default Environment that includes uwsgi
  3. This environment will be used for all Model API deployments

Quick Start

1. Create Endpoint Function

# model.py
def predict(features):
    """
    Domino calls this function for predictions.

    Args:
        features: Input data (dict, list, or primitive)

    Returns:
        JSON-serializable prediction result
    """
    import pickle

    # Load model (cached after first call)
    with open('model.pkl', 'rb') as f:
        model = pickle.load(f)

    prediction = model.predict([features])
    return {"prediction": prediction.tolist()}

2. Deploy via Domino UI

  1. Go to PublishModel APIs
  2. Click New Model
  3. Configure:
    • Name: my-classifier
    • File: model.py
    • Function: predict
    • Environment: Select compute environment
  4. Click Publish

Read the full file on GitHub · 122 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

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. 10d ago First seen · 122 lines · 58 tokens per session scan A f3c8ad9f8efa

Subscribe to this mod's changes

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

Related

Other skills, from other repositories

tensorrt-llm

High-throughput LLM inference on NVIDIA GPUs.

NousResearch/hermes-agent · 18 tokens

google-cloud-solution-guided-gke-ai-migration

Guides the migration of existing AI workloads (Cloud Run, Gemini API, Gemini Enterprise Agent Platform) to self-hosted GKE inference using gcloud and kubectl. Use when the user has an existing AI inference workload (on Cloud Run, the Gemini API, Gemini Enterprise Agent Platform, or a custom VM) and wants to move it to…

google/skills · 157 tokens

agent-platform-tuning

Agent Platform Model Tuning. Use when you need to fine-tune open models or Gemini models using Agent Platform infrastructure. Don't use for model training outside Agent Platform, model deployment to endpoints (use agent-platform-deploy), or managing serving endpoints (use agent-platform-endpoint-management).

google/skills · 64 tokens

modal

Modal is a serverless cloud platform for running Python on demand, including on-demand GPUs. Use when deploying or serving AI/ML models, running GPU-accelerated workloads (training, fine-tuning, inference), serving web endpoints, scheduling batch jobs, or scaling Python code to cloud containers with the Modal SDK.

K-Dense-AI/scientific-agent-skills · 65 tokens

gke-inference

Deploys and optimizes AI/ML inference workloads on GKE, using GPUs, TPUs, and model servers. Use when deploying GKE inference servers, configuring GKE GPU resources for inference, or deploying LLMs on GKE. Don't use for generic batch jobs or HPC task queues (use gke-batch-hpc instead).

google/skills · 74 tokens

agent-platform-endpoint-management

Manages Agent Platform serving endpoints. Use when you need to create, list, describe, update, or delete serving endpoints for model deployment on Agent Platform. Also use when troubleshooting endpoint permission, quota, or resource busy errors. Don't use for deploying models to endpoints or for running model…

google/skills · 64 tokens