For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Getting Started
    • Welcome
    • Contributing
  • Concepts
    • Columns
    • Seed Datasets
    • Agent Rollout Ingestion
    • Custom Columns
    • Validators
    • Processors
    • Person Sampling
    • Traces
    • Architecture & Performance
    • Deployment Options
    • Security
  • Tutorials
    • Overview
    • The Basics
    • Structured Outputs, Jinja Expressions, and Conditional Generation
    • Seeding with an External Dataset
    • Providing Images as Context
    • Generating Images
    • Image-to-Image Editing
  • Recipes
    • Recipe Cards
  • Plugins
    • Overview
    • Example Plugin
    • FileSystemSeedReader Plugins
    • Discover
  • Code Reference
    • Overview
  • Dev Notes
    • Overview
    • Have It Your Way
    • VLM Long Document Understanding
    • Push Datasets to Hugging Face Hub
    • Text-to-SQL for Nemotron Super
    • Async All the Way Down
    • Owning the Model Stack
NVIDIANVIDIA
Developer-friendly docs for your API
Privacy Policy | Your Privacy Choices | Terms of Service | Accessibility | Corporate Policies | Product Security | Contact

Copyright Β© 2026, NVIDIA Corporation.

LogoLogoNeMo Data Designer
On this page
  • How to Contribute
  • Before You Open an Issue
  • When to Open an Issue
  • When NOT to Open an Issue
  • Development Skills
  • Pull Requests
  • Pull Request Review Process
  • Commit Messages
  • License Headers
  • Signing Off on Your Work (DCO)
  • Code of Conduct
  • Reference
Getting Started

🎨✨ Contributing to NeMo Data Designer 🎨✨

||View as Markdown|
Previous

🎨 NeMo Data Designer

Next

Columns

The skills and workflows in this repository are for developing DataDesigner. If you’re looking to use DataDesigner to build datasets, see the product documentation instead.


This project uses agent-assisted development. Contributors are expected to use agents for investigation, planning, and implementation. The repository includes skills and guidance that make agents effective contributors.

Agents accelerate work; humans stay accountable. People make design decisions and own quality β€” agents help get there faster.

How to Contribute

  1. Open an issue using the appropriate issue template.
  2. Include investigation output. If you used an agent, paste its diagnostics. If you didn’t, include the troubleshooting you tried.
  3. For non-trivial changes, create a plan document at plans/<issue-number>/ before building. Have your agent draft the plan β€” it should describe the approach, trade-offs considered, affected subsystems, and a delivery strategy. See existing plans in plans/ for reference. Submit the plan in a PR for review.
  4. Once the plan is approved, implement using agent-assisted development. See DEVELOPMENT.md for local setup and workflow.

Before You Open an Issue

  • Clone the repo and point your agent at it
  • Have the agent search docs and existing issues (the search-docs and search-github skills can help)
  • If the agent can’t resolve it, include the diagnostics in your issue
  • If you didn’t use an agent, include the troubleshooting you already tried

When to Open an Issue

  • Real bugs β€” reproduced or agent-confirmed
  • Feature proposals with design context
  • Problems that search-docs / search-github couldn’t resolve

When NOT to Open an Issue

  • Questions about how things work β€” an agent can answer these from the codebase
  • Configuration problems β€” an agent can diagnose these
  • β€œHow do I…” requests β€” try the product documentation first

Development Skills

The repository includes skills for common development tasks. These are located in .agents/skills/ and are automatically discovered by agent harnesses.

CategorySkillsPurpose
Investigationsearch-docs, search-githubFind information, check for duplicates
Developmentcommit, create-pr, update-prStandard development cycle
Reviewreview-codeMulti-pass code review

Pull Requests

  • PRs must link to the issue they address (Fixes #NNN or Closes #NNN). For external contributors, this is enforced by a required status check: the linked issue must exist and carry the triaged label (added by a maintainer after review). Collaborators are exempt from this check. You can open the PR before the issue is triaged - the check re-runs automatically once a maintainer adds the label.
  • PRs with failing checks that remain inactive are automatically reminded after 7 days and closed after 14 days (collaborators: 14/28 days). Push an update or leave a comment to reset the timer. If you need more time, ask a maintainer to add the keep-open label.
  • Use the create-pr skill for well-formatted PR descriptions, or follow the PR template
  • Ensure all checks pass before requesting review:
    $make check-all-fix
    $make test
  • Run a self-review before opening the PR using the review-code skill. Address any critical or warning-level findings before requesting human review. If you have access to multiple models, run the review with different models across passes β€” different models surface different issues, and a single pass rarely catches everything.

Pull Request Review Process

  • PRs receive an automated CI code review. You must address all critical and warning-level findings from the automated review before requesting human review.
  • Maintainers will review your PR and may request changes
  • Address feedback by pushing additional commits to your branch
  • Reply to each comment before resolving it. If the comment resulted in a code change, include the commit hash that addresses it. Do not resolve comments without a response.
  • Once approved, a maintainer will merge your PR

Commit Messages

  • Use imperative mood (β€œadd feature” not β€œadded feature”)
  • Keep the subject line under 50 characters (hard limit: 72)
  • Reference issue numbers when applicable (Fixes #123)

License Headers

All code files must include the NVIDIA copyright header:

1# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
2# SPDX-License-Identifier: Apache-2.0

Use make update-license-headers to add headers automatically.

Signing Off on Your Work (DCO)

When contributing, you must agree that you have authored 100% of the content, that you have the necessary rights to the content, and that the content you contribute may be provided under the project license. All contributors are asked to sign the Developer Certificate of Origin (DCO) when submitting their first pull request. The process is automated by a bot that will comment on the pull request.

Code of Conduct

Data Designer follows the Contributor Covenant Code of Conduct. Please read our complete Code of Conduct for full details.


Reference

  • AGENTS.md β€” architecture, layering, design principles
  • STYLEGUIDE.md β€” code style, naming, imports, type annotations
  • DEVELOPMENT.md β€” local setup, testing, day-to-day workflow