Skip to main content

AI skills for Dagster

Dagster maintains an AI skill that gives coding agents better context and patterns for building Dagster projects. With this skill installed, your agent can help you create robust data pipelines according to Dagster best practices.

About Dagster skills

A skill is a structured document that your AI coding agent loads when you invoke it. Skills tell agents what to do and how -- for example, which CLI commands to use, how to structure assets, and which patterns to follow.

Dagster maintains the dagster-expert skill in the dagster-io/skills repository. It provides expert guidance for building production-quality Dagster projects, covering dg CLI usage, asset patterns, automation strategies, and implementation workflows.

Installing Dagster skills

  1. Install and sign in to Claude Code using the setup guide.

  2. In Claude Code, add the Dagster skills from the plugin marketplace:

    /plugin marketplace add dagster-io/skills

    Claude Code plugin marketplace showing the Dagster skills being added

  3. Install the dagster-expert skill from the plugin:

    /plugin install dagster-expert@dagster
  4. To confirm the skill is enabled, open the plugin list:

    /plugin

    Switch to the Installed tab and confirm you see dagster-expert: enabled. If it is disabled, enable it before continuing.

    Claude Code plugin list showing dagster-expert enabled

Invoking Dagster skills

In Claude Code, invoke the skill using the namespaced format:

/dagster-expert create a new Dagster project called my-pipeline

Next steps