datarobot-agent-assist-build

datarobot-agent-assist-build is a skill for Claude Code from datarobot-oss/datarobot-agent-skills. It costs 74 tokens per session (4,564 once invoked), scanned A, original, Apache-2.0.

A workflow for designing, coding, simulating, and deploying AI agents on DataRobot. An AI agent is a program that uses a model to carry out tasks through tools or other software.

In plain words
What is it for?
Use it to write an agent specification, run a dress rehearsal before coding, adapt the DataRobot agent template, and deploy agents built with frameworks such as LangGraph, CrewAI, or LlamaIndex.
Why use it?
It provides a defined path from an agent idea or specification to an implemented and deployed application.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: mentions subagents; names the TodoWrite tool; mentions AGENTS.md.

Part of the datarobot-agent-skills plugin — 17 skills shipped together

Good fit Use it to write an agent specification, run a dress rehearsal before coding, adapt the DataRobot agent template, and deploy agents built with frameworks such as LangGraph, CrewAI, or LlamaIndex.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/datarobot-oss/datarobot-agent-skills/agent-assist-build
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 datarobot-oss/datarobot-agent-skills --skill agent-assist-build
Clone the repo
git clone --depth 1 https://github.com/datarobot-oss/datarobot-agent-skills

Made for: Claude Code.

Or install datarobot-agent-skills, the plugin that ships this one along with the rest of its 17 skills.

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 datarobot-agent-assist-build

README.md
[![agentmods](https://agentmods.dev/badge/skills/datarobot-oss/datarobot-agent-skills/agent-assist-build/github.svg)](https://agentmods.dev/skills/datarobot-oss/datarobot-agent-skills/agent-assist-build)
Your own site
<a href="https://agentmods.dev/skills/datarobot-oss/datarobot-agent-skills/agent-assist-build"><img src="https://agentmods.dev/badge/skills/datarobot-oss/datarobot-agent-skills/agent-assist-build/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 datarobot-agent-assist-build

Your own site · 80×15
<a href="https://agentmods.dev/skills/datarobot-oss/datarobot-agent-skills/agent-assist-build"><img src="https://agentmods.dev/badge/skills/datarobot-oss/datarobot-agent-skills/agent-assist-build.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 74 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,564 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. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
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.00074 $0.04564
Opus 5 $0.00037 $0.02282
Sonnet 5 $0.00015 $0.00913
Haiku 4.5 $0.00007 $0.00456

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

Security

Grade A, and why

datarobot-agent-assist-build 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.

The scan reads SKILL.md. This mod also ships 8 executable files (scripts/check_codespace.py, scripts/clone_template.py, scripts/env_utils.py, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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/datarobot-agent-assist/agent-assist-build/SKILL.md · 421 lines

How it starts

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

Agent Assist — Build

This skill merges agent design, coding, and deployment with interactive dress-rehearsal simulation in one place.

Assistance falls into three categories:

  1. Designing an AI agent → Clarify requirements, build agent_spec.md, optionally simulate the agent before coding
  2. Coding an AI agent → Adapt the DataRobot agent application template to the spec
  3. Deploying an AI agent → Follow AGENTS.md deployment instructions

If the user's first message is simply 1, 2, or 3, treat it as selecting one of these categories.


On Activation

Present the three options clearly:

Welcome! I help you design, code, and deploy AI agents (with optional dress-rehearsal simulation before coding).

What would you like to do?
  1. Design an AI agent     → Describe your idea
  2. Code an AI agent       → Load and implement an existing agent_spec.md
  3. Deploy an AI agent     → Deploy an implemented agent to DataRobot

Show this menu first. After the user selects an option (1, 2, or 3), run the Pre-requisite Check and then the Script Path Resolution before doing anything else for that option.


Script Path Resolution

Before invoking any helper script, resolve <skill_scripts_dir> once for the session:

  • <skill_scripts_dir> is the scripts/ subdirectory of the directory containing this SKILL.md file.
  • Confirm it exists with ls <path_to_this_skill_dir>/scripts/. If the directory is missing, tell the user the skill installation is incomplete and stop.
  • Use the resolved absolute path for every <skill_scripts_dir>/... reference in this skill.

Pre-requisite Check

Run in order before proceeding:

  1. Git — run git --version. If missing, tell the user to install from https://git-scm.com and stop.
  2. Python — run python --version. If missing or below 3.11, tell the user to install Python 3.11+ from https://python.org and stop.
  3. DataRobot CLI — run dr --version and dr auth check. If either fails, invoke the datarobot-setup skill before continuing. Do not print manual install instructions.
  4. Codespace — run python <skill_scripts_dir>/check_codespace.py (no-op outside a Codespace). On non-zero exit, relay its message and stop; otherwise relay any exposed-ports warning it prints.

Read the full file on GitHub · 421 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 Changed · -39 lines f7ec95fc9ded
  2. 12d ago First seen · 460 lines · 74 tokens per session scan A 92d816638cef

Subscribe to this mod's changes

datarobot-agent-assist-build is a skill published in the GitHub repository datarobot-oss/datarobot-agent-skills (25 stars, last pushed yesterday), licensed Apache-2.0. It adds 74 tokens to every session and 4,564 once invoked, about $0.0004 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.

Related

Other skills, from other repositories

upstash-vector-js

Work with the @upstash/vector TypeScript/JavaScript SDK, a serverless vector database for embeddings, similarity search, semantic search, and RAG (retrieval-augmented generation). Use when upserting, querying, fetching, ranging, or deleting vectors, upserting raw text against an index with a built-in embedding model…

upstash/skills · 152 tokens

fine-tuning

Use when considering fine-tuning a model. Covers when fine-tuning beats prompting or RAG, dataset construction, LoRA and full fine-tuning, evaluation, and the failure modes that waste the effort.

nimadorostkar/Claude-Skills-collection · 46 tokens

llm-cost-optimization

Use when an LLM feature costs too much. Covers prompt caching, context reduction, model routing, batching, output limits, and finding where the tokens actually go.

nimadorostkar/Claude-Skills-collection · 39 tokens

llm-evaluation

Use when measuring the quality of an LLM feature. Covers building an evaluation set, choosing metrics, LLM-as-judge and its pitfalls, regression testing prompts, and evaluating in production.

nimadorostkar/Claude-Skills-collection · 43 tokens

llm-integration

Use when integrating an LLM API into an application. Covers streaming, retries and rate limits, timeouts, caching, fallback across providers, and the production concerns that a tutorial integration ignores.

nimadorostkar/Claude-Skills-collection · 43 tokens

ml-pipeline

Use when building or operating a machine learning pipeline. Covers feature engineering, training reproducibility, train/serve skew, deployment, monitoring for drift, and retraining.

nimadorostkar/Claude-Skills-collection · 37 tokens