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.
- Open an issue using the appropriate issue template.
- Include investigation output. If you used an agent, paste its diagnostics. If you didn't, include the troubleshooting you tried.
- 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 inplans/for reference. Submit the plan in a PR for review. - Once the plan is approved, implement using agent-assisted development. See DEVELOPMENT.md for local setup and workflow.
- Clone the repo and point your agent at it
- Have the agent search docs and existing issues (the
search-docsandsearch-githubskills 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
- Real bugs — reproduced or agent-confirmed
- Feature proposals with design context
- Problems that
search-docs/search-githubcouldn't resolve
- 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
The repository includes skills for common development tasks. These are located in .agents/skills/ and are automatically discovered by agent harnesses.
| Category | Skills | Purpose |
|---|---|---|
| Investigation | search-docs, search-github |
Find information, check for duplicates |
| Development | commit, create-pr, update-pr |
Standard development cycle |
| Review | review-code |
Multi-pass code review |
- PRs should link to the issue they address (
Fixes #NNNorCloses #NNN) - Use the
create-prskill 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-codeskill. 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.
- 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
- 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)
All code files must include the NVIDIA copyright header:
# SPDX-FileCopyrightText: Copyright (c) 2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0Use make update-license-headers to add headers automatically.
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.
Data Designer follows the Contributor Covenant Code of Conduct. Please read our complete Code of Conduct for full details.
- AGENTS.md — architecture, layering, design principles
- STYLEGUIDE.md — code style, naming, imports, type annotations
- DEVELOPMENT.md — local setup, testing, day-to-day workflow