Thank you for your interest in contributing to NVIDIA NemoClaw. This guide covers how to set up your development environment, run tests, and submit changes.
Open an issue when you encounter one of the following situations.
- A real bug that you confirmed and could not fix.
- A feature proposal with a design — not a "please build this" request.
- Security vulnerabilities must follow SECURITY.md — not GitHub issues.
Install the following before you begin.
- Node.js 20+ and npm 10+
- Python 3.11+ (for blueprint and documentation builds)
- Docker (running)
- uv (for Python dependency management)
Install the root dependencies and build the TypeScript plugin:
# Install root dependencies (OpenClaw + CLI entry point)
npm install
# Install and build the TypeScript plugin
cd nemoclaw && npm install && npm run build && cd ..
# Install Python deps for the blueprint
cd nemoclaw-blueprint && uv sync && cd ..The TypeScript plugin lives in nemoclaw/ and compiles with tsc:
cd nemoclaw
npm run build # one-time compile
npm run dev # watch modeThese are the primary make and npm targets for day-to-day development:
| Task | Purpose |
|---|---|
make check |
Run all linters (TypeScript + Python) |
make lint |
Same as make check |
make format |
Auto-format TypeScript and Python source |
npm test |
Run root-level tests (test/*.test.js) |
cd nemoclaw && npm test |
Run plugin unit tests (Vitest) |
make docs |
Build documentation (Sphinx/MyST) |
make docs-live |
Serve docs locally with auto-rebuild |
The repository is organized as follows.
| Path | Purpose |
|---|---|
nemoclaw/ |
TypeScript plugin (Commander CLI, OpenClaw extension) |
nemoclaw-blueprint/ |
Python blueprint for sandbox orchestration |
bin/ |
CLI entry point (nemoclaw.js) |
scripts/ |
Install helpers and automation scripts |
test/ |
Root-level integration tests |
docs/ |
User-facing documentation (Sphinx/MyST) |
If your change affects user-facing behavior (new commands, changed defaults, new features, bug fixes that contradict existing docs), update the relevant pages under docs/ in the same PR.
If you use an AI coding agent (Cursor, Claude Code, Codex, etc.), the repo includes the /update-docs skill that drafts doc updates. Use them before writing from scratch and follow the style guide in docs/CONTRIBUTING.md.
To build and preview docs locally:
make docs # build the docs
make docs-live # serve locally with auto-rebuildSee docs/CONTRIBUTING.md for the full style guide and writing conventions.
We welcome contributions. Every PR requires maintainer review. To keep the review queue healthy, limit the number of open PRs you have at any time to fewer than 10.
Warning
Accounts that repeatedly exceed this limit or submit automated bulk PRs may have their PRs closed or their access restricted.
Follow these steps to submit a pull request.
- Create a feature branch from
main. - Make your changes with tests.
- Run
make checkandnpm testto verify. - Open a PR.
This project uses Conventional Commits. All commit messages must follow the format:
<type>(<scope>): <description>
[optional body]
[optional footer(s)]
Types:
feat- New featurefix- Bug fixdocs- Documentation onlychore- Maintenance tasks (dependencies, build config)refactor- Code change that neither fixes a bug nor adds a featuretest- Adding or updating testsci- CI/CD changesperf- Performance improvements
Examples:
feat(cli): add --profile flag to nemoclaw onboard
fix(blueprint): handle missing API key gracefully
docs: update quickstart for new install wizard
chore(deps): bump commander to 13.2