Skip to content

refactor: rename sidecar crate to CLI#77

Merged
rapids-bot[bot] merged 1 commit into
NVIDIA:mainfrom
willkill07:wkk_sidecar-rename
May 11, 2026
Merged

refactor: rename sidecar crate to CLI#77
rapids-bot[bot] merged 1 commit into
NVIDIA:mainfrom
willkill07:wkk_sidecar-rename

Conversation

@willkill07
Copy link
Copy Markdown
Member

@willkill07 willkill07 commented May 11, 2026

Overview

Renames the coding-agent sidecar surface to the NeMo Flow CLI and gateway terminology. This updates the Rust crate, generated binary name, workspace path, CI/package metadata, docs, and static integration bundles so the public surface is nemo-flow-cli with a nemo-flow executable.

  • I confirm this contribution is my own work, or I have the right to submit it under this project's license.
  • I searched existing issues and open pull requests, and this does not duplicate existing work.

Details

  • Renames the sidecar crate package to nemo-flow-cli, moves it from crates/sidecar to crates/cli, and generates the nemo-flow binary.
  • Replaces user-facing sidecar terminology with coding-agent gateway / CLI terminology across docs, READMEs, integration bundles, CI artifacts, Codecov config, and release guidance.
  • Renames CLI options and environment/config surfaces to --gateway-url, NEMO_FLOW_GATEWAY_URL, NEMO_FLOW_GATEWAY_BIND, and gateway.toml without legacy sidecar compatibility aliases.
  • Updates Rust internals from SidecarConfig / SidecarError to GatewayConfig / CliError and refreshes tests for the renamed surfaces.
  • Validation run locally: cargo fmt --check --package nemo-flow-cli, cargo clippy -p nemo-flow-cli --all-targets -- -D warnings, cargo test -p nemo-flow-cli, and just docs.

Where should the reviewer start?

Start with crates/cli/Cargo.toml and crates/cli/src/config.rs for the renamed package, binary, CLI flags, environment variables, and config-file discovery. Then review docs/integrate-frameworks/coding-agent-gateway.md for the public documentation rename.

Related Issues: (use one of the action keywords Closes / Fixes / Resolves / Relates to)

  • Relates to: none

Summary by CodeRabbit

Release Notes

  • Chores
    • Renamed published binary crate from nemo-flow-sidecar to nemo-flow-cli.
    • Updated component terminology from "sidecar" to "gateway" throughout.
    • Renamed configuration files from .nemo-flow/sidecar.toml to .nemo-flow/gateway.toml.
    • Updated environment variables: NEMO_FLOW_SIDECAR_BINDNEMO_FLOW_GATEWAY_BIND and NEMO_FLOW_SIDECAR_URLNEMO_FLOW_GATEWAY_URL.
    • Updated CLI command-line arguments and hook-forwarding commands to use new naming conventions.

Review Change Stack

Signed-off-by: Will Killian <wkillian@nvidia.com>
@willkill07 willkill07 requested review from a team as code owners May 11, 2026 17:49
@coderabbitai
Copy link
Copy Markdown

coderabbitai Bot commented May 11, 2026

Walkthrough

This PR comprehensively renames and refactors the NeMo Flow codebase from a "sidecar" to a "gateway" model, affecting workspace configuration, error handling, core APIs, session management, testing, and all user-facing documentation and integrations.

Changes

Workspace & Build Configuration

Layer / File(s) Summary
Workspace Members & Dependencies
Cargo.toml, justfile
crates/sidecarcrates/cli workspace member; nemo-flow-sidecarnemo-flow-cli in workspace dependencies and version tracking.
CI Workflows
.github/workflows/ci.yaml, .github/workflows/ci_rust.yml
publish-rust loop publishes nemo-flow-cli; Package job builds, stages, and uploads only nemo-flow CLI binary to cli-${{ matrix.platform }} artifact.
Project Metadata
README.md, RELEASING.md, codecov.yml
Crates.io badge, component coverage tracking, release documentation, and credential checklist updated to reference nemo-flow-cli and gateway terminology.
CLI Crate Manifest
crates/cli/Cargo.toml
Package renamed to nemo-flow-cli with gateway-focused description; binary target nemo-flow defined at src/main.rs.

Error Handling & Configuration Layer

Layer / File(s) Summary
Error Type & Response Mapping
crates/cli/src/error.rs
SidecarErrorCliError enum; JSON HTTP response type discriminator changes to "nemo_flow_gateway_error".
Configuration Structure & Resolution
crates/cli/src/config.rs
SidecarConfigGatewayConfig; environment variable NEMO_FLOW_SIDECAR_BINDNEMO_FLOW_GATEWAY_BIND; subcommand arguments sidecar_urlgateway_url; config discovery targets .nemo-flow/gateway.toml, /etc/nemo-flow/gateway.toml, ~/.config/nemo-flow/gateway.toml; all resolution functions return Result<_, CliError>.

Server & Gateway Implementation

Layer / File(s) Summary
Server & Router Wiring
crates/cli/src/server.rs
AppState holds GatewayConfig; serve/serve_listener accept GatewayConfig, return CliError; router builds gateway-labeled HTTP client; hook handlers return Result<_, CliError>.
Gateway HTTP Handlers
crates/cli/src/gateway.rs
passthrough and models handlers return CliError; prepare, streaming, and error translation logic refactored to propagate CliError; ProviderRoute::upstream_url accepts GatewayConfig.

Session & Lifecycle Orchestration

Layer / File(s) Summary
SessionManager Configuration
crates/cli/src/session.rs
Accepts GatewayConfig; session methods return CliError; observer labels renamed from sidecar-* to gateway-*; metadata key sidecar_config_profilegateway_config_profile; ATIF write helpers return CliError.
Transparent Launcher
crates/cli/src/launcher.rs
run returns Result<_, CliError>; environment injection NEMO_FLOW_SIDECAR_URLNEMO_FLOW_GATEWAY_URL; RunningGateway replaces RunningSidecar; hook executable defaults to "nemo-flow" and provider config builder added.
Installer & Hook Forwarding
crates/cli/src/installer.rs
install, hook_forward, merge_hooks, read_json_file return CliError; hook discovery via resolve_hook_gateway_url with NEMO_FLOW_GATEWAY_URL; header generation via gateway_headers; error messages reference gateway mode.

Adapter & Core Logic

Layer / File(s) Summary
Adapter Metadata & Header Processing
crates/cli/src/adapters/mod.rs, crates/cli/src/adapters/*.rs
Metadata key sidecar_config_profilegateway_config_profile; adapter doc comments refer to gateway instead of sidecar for observational behavior.
CLI Entrypoint & Model
crates/cli/src/main.rs, crates/cli/src/model.rs
Documentation and entrypoint updated to gateway terminology; server mode accesses config.gateway; NormalizedEvent::TurnEnded doc refers to gateway ATIF snapshots.

OpenAI Chat Codec Refactoring

Layer / File(s) Summary
Streaming Choice & Tool-Call Parsing
crates/core/src/codec/openai_chat.rs
observe_choice delegates finish_reason and delta observation to new ChoiceState helper methods; ToolCallState::observe_function added for streamed function name/arguments accumulation.

Test Coverage & Validation

Layer / File(s) Summary
Integration Tests
crates/cli/tests/cli_tests.rs
Tests use gateway_bin() and --gateway-url; config files use gateway.toml; environment assertions target NEMO_FLOW_GATEWAY_BIND; hook-forward tests validate gateway headers and error messages.
Config & Gateway Coverage Tests
crates/cli/tests/coverage/config_tests.rs, crates/cli/tests/coverage/gateway_tests.rs
Config helper constructs GatewayConfig; resolution tests assert resolved.gateway.* fields; gateway tests use GatewayConfig throughout.
Installer & Launcher Coverage Tests
crates/cli/tests/coverage/installer_tests.rs, crates/cli/tests/coverage/launcher_tests.rs
Installer tests use gateway_url and gateway_headers; launcher tests use GatewayConfig::default and NEMO_FLOW_GATEWAY_URL assertions.
Server & Session Coverage Tests
crates/cli/tests/coverage/server_tests.rs, crates/cli/tests/coverage/session_tests.rs
Server config helper constructs GatewayConfig; error type assertions use CliError and nemo_flow_gateway_error; session tests construct SessionManager with GatewayConfig.

Documentation & User-Facing Integration

Layer / File(s) Summary
Installation & Getting Started
docs/getting-started/installation.md, docs/getting-started/rust.md
Guides list nemo-flow-cli as the published binary crate; source installation uses crates/cli path.
API Reference
docs/reference/api/rust/index.md
Documents nemo-flow-cli as the gateway binding surface; end-user behavior documented in gateway guides rather than generated Rust pages.
Framework Integration Guide Index
docs/index.md, docs/integrate-frameworks/about.md
"Sidecar Guide" toctree entries → "Gateway Guide" entries for all agent guides.
Agent-Specific Gateway Guides
docs/integrate-frameworks/coding-agent-*.md
Transparent run, shared config (.nemo-flow/gateway.toml), persistent install (--gateway-url), smoke test (NEMO_FLOW_GATEWAY_URL), and troubleshooting sections updated throughout.
Integration Bundles & Hook Configuration
integrations/coding-agents/*/README.md, integrations/coding-agents/*/hooks/hooks.json
Hook command changes from nemo-flow-sidecar hook-forward to nemo-flow hook-forward across all hook event types; integration docs describe gateway observability model.

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Possibly related PRs

  • NVIDIA/NeMo-Flow#63: Introduced the nemo-flow-sidecar crate that this PR refactors into nemo-flow-cli/gateway, including initial workspace, CI, and API changes that this PR systematically inverts and renames.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

@github-actions github-actions Bot added size:XL PR is extra large refactor PR refactors component(s) lang:rust PR changes/introduces Rust code labels May 11, 2026
@willkill07 willkill07 added this to the 0.2.0 milestone May 11, 2026
@willkill07 willkill07 self-assigned this May 11, 2026
Copy link
Copy Markdown

@AjayThorve AjayThorve left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lgtm

Copy link
Copy Markdown

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (1)
crates/cli/tests/cli_tests.rs (1)

148-168: ⚠️ Potential issue | 🟡 Minor | ⚡ Quick win

Make missing-URL hook-forward tests hermetic.

Line 149 and Line 166 only remove NEMO_FLOW_GATEWAY_URL, but config-layer discovery can still provide a gateway URL from host/project config and invalidate the assertion. Isolate HOME/XDG/current dir in these tests to keep them deterministic.

Proposed test isolation patch
 #[test]
 fn cli_hook_forward_fails_open_without_gateway_url() {
+    let temp = tempfile::tempdir().unwrap();
     let mut child = Command::new(gateway_bin())
+        .current_dir(temp.path())
+        .env("HOME", temp.path())
+        .env("XDG_CONFIG_HOME", temp.path().join("xdg"))
         .env_remove("NEMO_FLOW_GATEWAY_URL")
         .args(["hook-forward", "codex"])
         .stdin(Stdio::piped())
@@
 #[test]
 fn cli_hook_forward_fails_closed_without_gateway_url() {
+    let temp = tempfile::tempdir().unwrap();
     let mut child = Command::new(gateway_bin())
+        .current_dir(temp.path())
+        .env("HOME", temp.path())
+        .env("XDG_CONFIG_HOME", temp.path().join("xdg"))
         .env_remove("NEMO_FLOW_GATEWAY_URL")
         .args(["hook-forward", "codex", "--fail-closed"])
         .stdin(Stdio::piped())
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@crates/cli/tests/cli_tests.rs` around lines 148 - 168, The tests
cli_hook_forward_fails_open_without_gateway_url and
cli_hook_forward_fails_closed_without_gateway_url are still reading host/project
config; make them hermetic by isolating HOME/XDG and the working directory:
create a tempdir (e.g., tempfile::tempdir()), set the child's current_dir to
that tempdir and set envs HOME and XDG_CONFIG_HOME (and optionally
XDG_CONFIG_DIRS="") on the Command to point to the empty tempdir, keeping the
existing env_remove("NEMO_FLOW_GATEWAY_URL") call; this ensures no config-layer
discovery supplies a gateway URL and the assertion remains deterministic.
🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@crates/core/src/codec/openai_chat.rs`:
- Around line 515-517: The change touching crates/core (openai_chat.rs;
functions around entry.observe_finish_reason, entry.observe_delta, and use of
choice) requires running the full Rust and cross-language validation matrix: run
just test-rust, cargo fmt --all, and cargo clippy --workspace --all-targets --
-D warnings locally and fix any formatting/clippy/test failures, then run the
full required matrix for crates/core (Rust, Python, Go, Node.js, WebAssembly) as
described in the guidelines and include the successful command outputs in the PR
before merge.

---

Outside diff comments:
In `@crates/cli/tests/cli_tests.rs`:
- Around line 148-168: The tests cli_hook_forward_fails_open_without_gateway_url
and cli_hook_forward_fails_closed_without_gateway_url are still reading
host/project config; make them hermetic by isolating HOME/XDG and the working
directory: create a tempdir (e.g., tempfile::tempdir()), set the child's
current_dir to that tempdir and set envs HOME and XDG_CONFIG_HOME (and
optionally XDG_CONFIG_DIRS="") on the Command to point to the empty tempdir,
keeping the existing env_remove("NEMO_FLOW_GATEWAY_URL") call; this ensures no
config-layer discovery supplies a gateway URL and the assertion remains
deterministic.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: ASSERTIVE

Plan: Enterprise

Run ID: f318c417-3087-4c90-a197-080fa589b982

📥 Commits

Reviewing files that changed from the base of the PR and between 2b7f565 and 69e8bb3.

⛔ Files ignored due to path filters (1)
  • Cargo.lock is excluded by !**/*.lock
📒 Files selected for processing (47)
  • .github/workflows/ci.yaml
  • .github/workflows/ci_rust.yml
  • Cargo.toml
  • README.md
  • RELEASING.md
  • codecov.yml
  • crates/cli/Cargo.toml
  • crates/cli/src/adapters/claude_code.rs
  • crates/cli/src/adapters/codex.rs
  • crates/cli/src/adapters/cursor.rs
  • crates/cli/src/adapters/hermes.rs
  • crates/cli/src/adapters/mod.rs
  • crates/cli/src/config.rs
  • crates/cli/src/error.rs
  • crates/cli/src/gateway.rs
  • crates/cli/src/installer.rs
  • crates/cli/src/launcher.rs
  • crates/cli/src/main.rs
  • crates/cli/src/model.rs
  • crates/cli/src/server.rs
  • crates/cli/src/session.rs
  • crates/cli/tests/cli_tests.rs
  • crates/cli/tests/coverage/adapters_tests.rs
  • crates/cli/tests/coverage/config_tests.rs
  • crates/cli/tests/coverage/gateway_tests.rs
  • crates/cli/tests/coverage/installer_tests.rs
  • crates/cli/tests/coverage/launcher_tests.rs
  • crates/cli/tests/coverage/server_tests.rs
  • crates/cli/tests/coverage/session_tests.rs
  • crates/core/src/codec/openai_chat.rs
  • docs/getting-started/installation.md
  • docs/getting-started/rust.md
  • docs/index.md
  • docs/integrate-frameworks/about.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • docs/integrate-frameworks/coding-agent-gateway.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • docs/reference/api/rust/index.md
  • integrations/coding-agents/README.md
  • integrations/coding-agents/claude-code/README.md
  • integrations/coding-agents/claude-code/hooks/hooks.json
  • integrations/coding-agents/codex/README.md
  • integrations/coding-agents/codex/hooks/hooks.json
  • integrations/coding-agents/cursor/README.md
  • justfile
📜 Review details
🧰 Additional context used
📓 Path-based instructions (49)
**/*.{md,rst,html,txt}

📄 CodeRabbit inference engine (.agents/skills/review-doc-style/assets/nvidia-style-brand-terminology.md)

**/*.{md,rst,html,txt}: Always spell NVIDIA in all caps. Do not use Nvidia, nvidia, nVidia, nVIDIA, or NV.
Use an NVIDIA before a noun because the name starts with an 'en' sound.
Do not add a registered trademark symbol after NVIDIA when referring to the company.
Use trademark symbols with product names only when the document type or legal guidance requires them.
Verify official capitalization, spacing, and hyphenation for product names.
Precede NVIDIA product names with NVIDIA on first mention when it is natural and accurate.
Do not rewrite product names for grammar or title-case rules.
Preserve third-party product names according to the owner's spelling.
Include the company name and full model qualifier on first use when it helps identify the model.
Preserve the official capitalization and punctuation of model names.
Use shorter family names only after the full name is established.
Spell out a term on first use and put the acronym in parentheses unless the acronym is widely understood by the intended audience.
Use the acronym on later mentions after it has been defined.
For long documents, reintroduce the full term if readers might lose context.
Form plurals of acronyms with s, not an apostrophe, such as GPUs.
In headings, common acronyms can remain abbreviated. Spell out the term in the first or second sentence of the body.
Common terms such as CPU, GPU, PC, API, and UI usually do not need to be spelled out for developer audiences.

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • README.md
  • docs/getting-started/installation.md
  • RELEASING.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • integrations/coding-agents/codex/README.md
  • integrations/coding-agents/README.md
  • integrations/coding-agents/cursor/README.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • integrations/coding-agents/claude-code/README.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
**/*.{md,rst,html}

📄 CodeRabbit inference engine (.agents/skills/review-doc-style/assets/nvidia-style-brand-terminology.md)

Link the first mention of a product name when the destination helps the reader.

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • README.md
  • docs/getting-started/installation.md
  • RELEASING.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • integrations/coding-agents/codex/README.md
  • integrations/coding-agents/README.md
  • integrations/coding-agents/cursor/README.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • integrations/coding-agents/claude-code/README.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
**/*.{md,rst,txt}

📄 CodeRabbit inference engine (.agents/skills/review-doc-style/assets/nvidia-style-guide.md)

**/*.{md,rst,txt}: Spell NVIDIA in all caps. Do not use Nvidia, nvidia, or NV.
Format commands, code elements, expressions, package names, file names, and paths as inline code.
Use descriptive link text. Avoid raw URLs and weak anchors such as 'here' or 'read more.'
Use title case consistently for technical documentation headings.
Introduce code blocks, lists, tables, and images with complete sentences.
Write procedures as imperative steps. Keep steps parallel and split long procedures into smaller tasks.
Prefer active voice, present tense, short sentences, contractions, and plain English.
Use can for possibility and reserve may for permission.
Use after for temporal relationships instead of once.
Prefer refer to over see when the wording points readers to another resource.
Avoid culture-specific idioms, unnecessary Latinisms, jokes, and marketing exaggeration in technical documentation.
Spell out months in body text, avoid ordinal dates, and use clear time zones.
Spell out whole numbers from zero through nine unless they are technical values, parameters, versions, or UI values.
Use numerals for 10 or greater and include commas in thousands.
Do not add trademark symbols to learning-oriented documentation unless the source, platform, or legal guidance explicitly requires them.
Do not add trademark symbols to NeMo Flow learning documentation by default.
Do not rewrite API names, package names, command flags, or code literals for style reasons.

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • README.md
  • docs/getting-started/installation.md
  • RELEASING.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • integrations/coding-agents/codex/README.md
  • integrations/coding-agents/README.md
  • integrations/coding-agents/cursor/README.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • integrations/coding-agents/claude-code/README.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
**/*.{md,markdown,rst}

📄 CodeRabbit inference engine (.agents/skills/review-doc-style/assets/nvidia-style-technical-docs.md)

**/*.{md,markdown,rst}: Use title case consistently in technical documentation headings
Avoid quotation marks, ampersands, and exclamation marks in headings
Keep product, event, research, and whitepaper names in their official title case
Use title case for table headers
Do not force social-media sentence case into technical docs
Use monospace formatting for code elements, commands, parameters, package names, and expressions
Use monospace formatting for directories, file names, and paths
Use angle brackets inside monospace for variables inside paths, such as /home/<username>/.login
Use quotation marks for error messages and strings in documentation
Use bold formatting for UI buttons, menus, fields, and labels in documentation
Use angle brackets between UI labels for menu paths, such as File > Save As
Use italics for new terms on first use in documentation
Use italics for publication titles in documentation
Use plain text formatting for keyboard shortcuts in documentation
Prefer [NVIDIA/NeMo](link) format for GitHub repository references over generic phrases like 'the GitHub repo'
Introduce every code block with a complete sentence
Do not make a code block complete the grammar of the previous sentence
Do not continue a sentence after a code block
Use syntax highlighting when the format supports it for code blocks
Avoid the word 'snippet' unless the surrounding docs already use it as a term of art
Keep inline method, function, and class references consistent with nearby docs, omitting empty parentheses for prose readability when no call is shown
Use descriptive anchor text that matches the destination title when possible for links
Avoid raw URLs in running text in documentation
Avoid generic link anchors such as 'here,' 'this page,' and 'read more' in documentation
Include the acronym in link text if a linked term includes an acronym
Do not link long sentences or multiple sentences in documentation
Avoid links that pull readers away from a procedure unles...

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • README.md
  • docs/getting-started/installation.md
  • RELEASING.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • integrations/coding-agents/codex/README.md
  • integrations/coding-agents/README.md
  • integrations/coding-agents/cursor/README.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • integrations/coding-agents/claude-code/README.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
**/*.{html,md}

📄 CodeRabbit inference engine (CONTRIBUTING.md)

Include SPDX license headers in HTML and Markdown files using HTML comment syntax

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • README.md
  • docs/getting-started/installation.md
  • RELEASING.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • integrations/coding-agents/codex/README.md
  • integrations/coding-agents/README.md
  • integrations/coding-agents/cursor/README.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • integrations/coding-agents/claude-code/README.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
docs/**/*.md

📄 CodeRabbit inference engine (CONTRIBUTING.md)

Run ./scripts/build-docs.sh for documentation site changes

docs/**/*.md: Relevant getting-started or reference docs must be updated when examples change
Release-policy docs must point to GitHub Releases as the only release-history source of truth

docs/**/*.md: Use title case for headings in technical documentation
Introduce code blocks, tables, and lists with complete lead-in sentences in documentation

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • docs/getting-started/installation.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
**/*.md

📄 CodeRabbit inference engine (CONTRIBUTING.md)

Run Markdown link checking via lychee for README.md, CONTRIBUTING.md, and docs/ through pre-commit hooks

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • README.md
  • docs/getting-started/installation.md
  • RELEASING.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • integrations/coding-agents/codex/README.md
  • integrations/coding-agents/README.md
  • integrations/coding-agents/cursor/README.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • integrations/coding-agents/claude-code/README.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
**/*.{md,markdown,py,sh,bash,js,ts,java,cpp,go,rust}

📄 CodeRabbit inference engine (.agents/skills/contribute-docs/SKILL.md)

Keep package names, repo references, and build commands current in documentation

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • README.md
  • docs/getting-started/installation.md
  • RELEASING.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • integrations/coding-agents/codex/README.md
  • integrations/coding-agents/README.md
  • integrations/coding-agents/cursor/README.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • integrations/coding-agents/claude-code/README.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
{README.md,docs/index.md}

📄 CodeRabbit inference engine (.agents/skills/contribute-docs/SKILL.md)

{README.md,docs/index.md}: Update entry-point docs when examples or reading paths change
README.md or docs/index.md must be updated when entry points change

Files:

  • docs/index.md
  • README.md
{RELEASING.md,CHANGELOG.md,docs/**/*.md}

📄 CodeRabbit inference engine (.agents/skills/contribute-docs/SKILL.md)

Keep release-process and release-notes guidance in repo-maintainer docs such as RELEASING.md, not as user-facing docs pages or CHANGELOG.md

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • docs/getting-started/installation.md
  • RELEASING.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
**/*.{md,markdown,py,sh,bash}

📄 CodeRabbit inference engine (.agents/skills/contribute-docs/SKILL.md)

Keep stable user-facing wrappers at scripts/ root in docs and examples; only point at namespaced helper paths when documenting internal maintenance work

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • README.md
  • docs/getting-started/installation.md
  • RELEASING.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • integrations/coding-agents/codex/README.md
  • integrations/coding-agents/README.md
  • integrations/coding-agents/cursor/README.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • integrations/coding-agents/claude-code/README.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
**/*.{md,markdown,py,sh,bash,js,ts,example}

📄 CodeRabbit inference engine (.agents/skills/contribute-docs/SKILL.md)

Example commands must match current package names and paths

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • README.md
  • docs/getting-started/installation.md
  • RELEASING.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • integrations/coding-agents/codex/README.md
  • integrations/coding-agents/README.md
  • integrations/coding-agents/cursor/README.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • integrations/coding-agents/claude-code/README.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
{scripts/*.sh,docs/**/*.md}

📄 CodeRabbit inference engine (.agents/skills/contribute-integration/SKILL.md)

Use root ./scripts/*.sh commands in docs and contributor guidance as documented, with implementations under scripts/third-party/

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • docs/getting-started/installation.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
{docs/**,examples/**,crates/adaptive/**,python/nemo_flow/**,go/nemo_flow/**,**/{example,component}.{ts,tsx,js,rs,py,go}}

📄 CodeRabbit inference engine (.agents/skills/maintain-optimizer/SKILL.md)

Any new adaptive component kind must have documentation, examples, and binding coverage across all supported languages

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • docs/getting-started/installation.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
{README*,CHANGELOG*,docs/**/*.{md,rst,txt},examples/**/*,*.md}

📄 CodeRabbit inference engine (.agents/skills/rename-surfaces/SKILL.md)

Update documentation, examples, and getting-started guides with new package/module/crate names after rename operations

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • README.md
  • docs/getting-started/installation.md
  • RELEASING.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
**/*.{md,txt,rst}

📄 CodeRabbit inference engine (.agents/skills/review-doc-style/SKILL.md)

**/*.{md,txt,rst}: Ensure commands, package names, file paths, and APIs in documentation are correct and not stale; flag incorrect or outdated information as blocking issues
Ensure examples and procedures in documentation will execute successfully with current APIs and commands
Use consistent user-facing terminology throughout documentation that matches current repo terminology
Capitalize NVIDIA correctly in all documentation and public-facing text
Format code, commands, paths, and filenames as inline code (monospace) in documentation
Use descriptive anchor text for links instead of bare URLs or weak labels like 'here' in documentation
Prefer active voice, present tense, short sentences, and plain English in documentation
Structure documentation procedures as imperative steps that are easy to scan and not too long for a single sequence
Prefer 'after' instead of 'once' for temporal references in documentation
Use 'can' instead of 'may' when describing possibility (rather than permission) in documentation
Avoid ambiguous numeric dates and ordinal dates in documentation body text

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • README.md
  • docs/getting-started/installation.md
  • RELEASING.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • integrations/coding-agents/codex/README.md
  • integrations/coding-agents/README.md
  • integrations/coding-agents/cursor/README.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • integrations/coding-agents/claude-code/README.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
{README.md,docs/index.md,**/README.md}

📄 CodeRabbit inference engine (.agents/skills/review-doc-style/SKILL.md)

Update entry-point documentation (README.md, docs/index.md, package READMEs, binding-level source READMEs) whenever public behavior changes

Files:

  • docs/index.md
  • README.md
  • integrations/coding-agents/codex/README.md
  • integrations/coding-agents/README.md
  • integrations/coding-agents/cursor/README.md
  • integrations/coding-agents/claude-code/README.md
**/*.{rs,py,js,ts,go,sh,toml,yaml,yml,json,md,rst}

📄 CodeRabbit inference engine (AGENTS.md)

Keep SPDX headers on source, docs, scripts, and configuration files. The project is Apache-2.0.

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • README.md
  • crates/cli/src/adapters/cursor.rs
  • docs/getting-started/installation.md
  • Cargo.toml
  • crates/cli/Cargo.toml
  • codecov.yml
  • crates/cli/src/error.rs
  • RELEASING.md
  • crates/cli/src/adapters/claude_code.rs
  • crates/cli/tests/coverage/adapters_tests.rs
  • crates/cli/src/main.rs
  • docs/getting-started/rust.md
  • crates/cli/tests/coverage/config_tests.rs
  • docs/reference/api/rust/index.md
  • crates/cli/src/model.rs
  • docs/integrate-frameworks/coding-agent-hermes.md
  • integrations/coding-agents/codex/hooks/hooks.json
  • crates/core/src/codec/openai_chat.rs
  • integrations/coding-agents/codex/README.md
  • crates/cli/tests/coverage/server_tests.rs
  • integrations/coding-agents/README.md
  • integrations/coding-agents/claude-code/hooks/hooks.json
  • crates/cli/src/adapters/codex.rs
  • integrations/coding-agents/cursor/README.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • crates/cli/tests/coverage/installer_tests.rs
  • crates/cli/tests/coverage/session_tests.rs
  • integrations/coding-agents/claude-code/README.md
  • crates/cli/src/server.rs
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
  • crates/cli/src/adapters/mod.rs
  • crates/cli/src/gateway.rs
  • crates/cli/src/session.rs
  • crates/cli/tests/coverage/launcher_tests.rs
  • crates/cli/src/launcher.rs
  • crates/cli/tests/coverage/gateway_tests.rs
  • crates/cli/tests/cli_tests.rs
  • crates/cli/src/config.rs
  • crates/cli/src/installer.rs
{README.md,docs/**/*.md,examples/**/*.{js,ts,py,go,rs}}

📄 CodeRabbit inference engine (.agents/skills/maintain-packaging/SKILL.md)

Keep documentation and examples synchronized with current install, import, and build commands

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • README.md
  • docs/getting-started/installation.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
**/*.{py,js,ts,tsx,go,rs,md}

📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)

Format changed files with the language-native formatter before the final lint/test pass

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • README.md
  • crates/cli/src/adapters/cursor.rs
  • docs/getting-started/installation.md
  • crates/cli/src/error.rs
  • RELEASING.md
  • crates/cli/src/adapters/claude_code.rs
  • crates/cli/tests/coverage/adapters_tests.rs
  • crates/cli/src/main.rs
  • docs/getting-started/rust.md
  • crates/cli/tests/coverage/config_tests.rs
  • docs/reference/api/rust/index.md
  • crates/cli/src/model.rs
  • docs/integrate-frameworks/coding-agent-hermes.md
  • crates/core/src/codec/openai_chat.rs
  • integrations/coding-agents/codex/README.md
  • crates/cli/tests/coverage/server_tests.rs
  • integrations/coding-agents/README.md
  • crates/cli/src/adapters/codex.rs
  • integrations/coding-agents/cursor/README.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • crates/cli/tests/coverage/installer_tests.rs
  • crates/cli/tests/coverage/session_tests.rs
  • integrations/coding-agents/claude-code/README.md
  • crates/cli/src/server.rs
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
  • crates/cli/src/adapters/mod.rs
  • crates/cli/src/gateway.rs
  • crates/cli/src/session.rs
  • crates/cli/tests/coverage/launcher_tests.rs
  • crates/cli/src/launcher.rs
  • crates/cli/tests/coverage/gateway_tests.rs
  • crates/cli/tests/cli_tests.rs
  • crates/cli/src/config.rs
  • crates/cli/src/installer.rs
{README.md,CONTRIBUTING.md,docs/**/*.md}

📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)

For docs-only changes, run targeted checks only if commands, package names, or examples changed. Use just docs for docs-site builds and just docs-linkcheck when links changed

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • README.md
  • docs/getting-started/installation.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
{docs/**,README.md,CONTRIBUTING.md,RELEASING.md,SECURITY.md}

⚙️ CodeRabbit configuration file

{docs/**,README.md,CONTRIBUTING.md,RELEASING.md,SECURITY.md}: Review documentation for technical accuracy against the current API, command correctness, and consistency across language bindings.
Flag stale examples, missing SPDX headers where required, and instructions that no longer match CI or pre-commit behavior.

Files:

  • docs/index.md
  • docs/integrate-frameworks/about.md
  • README.md
  • docs/getting-started/installation.md
  • RELEASING.md
  • docs/getting-started/rust.md
  • docs/reference/api/rust/index.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
docs/integrate-frameworks/**/*.md

📄 CodeRabbit inference engine (.agents/skills/contribute-integration/SKILL.md)

Documentation must be updated if activation or usage of the integration changed

Files:

  • docs/integrate-frameworks/about.md
  • docs/integrate-frameworks/coding-agent-hermes.md
  • docs/integrate-frameworks/coding-agent-cursor.md
  • docs/integrate-frameworks/coding-agent-claude-code.md
  • docs/integrate-frameworks/coding-agent-codex.md
  • docs/integrate-frameworks/coding-agent-gateway.md
README.md

📄 CodeRabbit inference engine (CONTRIBUTING.md)

Update README.md to reflect current workspace members and top-level documentation for changes affecting public behavior, bindings, examples, or workspace structure

Files:

  • README.md
**/README.md

📄 CodeRabbit inference engine (CONTRIBUTING.md)

Update relevant crate or package README when that surface changed

Relevant package or crate README.md files must be updated when examples or binding guidance changes

Files:

  • README.md
  • integrations/coding-agents/codex/README.md
  • integrations/coding-agents/README.md
  • integrations/coding-agents/cursor/README.md
  • integrations/coding-agents/claude-code/README.md
**/*.rs

📄 CodeRabbit inference engine (.agents/skills/test-ffi-surface/SKILL.md)

**/*.rs: Run cargo fmt --all for FFI work as it is Rust work
Run just test-rust for FFI validation
Run cargo clippy --workspace --all-targets -- -D warnings to enforce warnings-as-errors linting

When Rust files changed as part of Python work, run cargo fmt --all, just test-rust, and cargo clippy --workspace --all-targets -- -D warnings

**/*.rs: Run cargo fmt --all for Rust code formatting
Run cargo clippy --workspace --all-targets -- -D warnings to enforce Rust linting with no warnings
Run just test-rust as the shared-runtime build/test wrapper for Rust changes

Use Rust snake_case naming convention for Rust code

**/*.rs: Any Rust change must run just test-rust
Any Rust change must run cargo fmt --all
Any Rust change must run cargo clippy --workspace --all-targets -- -D warnings

**/*.rs: Run cargo fmt --all for Rust code formatting when Node changes touch Rust files
Run cargo clippy --workspace --all-targets -- -D warnings to enforce strict linting when Rust files changed as part of Node work

**/*.rs: Always run just test-rust when any Rust code changes
Always run cargo fmt --all when any Rust code changes
Always run cargo clippy --workspace --all-targets -- -D warnings when any Rust code changes

Files:

  • crates/cli/src/adapters/cursor.rs
  • crates/cli/src/error.rs
  • crates/cli/src/adapters/claude_code.rs
  • crates/cli/tests/coverage/adapters_tests.rs
  • crates/cli/src/main.rs
  • crates/cli/tests/coverage/config_tests.rs
  • crates/cli/src/model.rs
  • crates/core/src/codec/openai_chat.rs
  • crates/cli/tests/coverage/server_tests.rs
  • crates/cli/src/adapters/codex.rs
  • crates/cli/tests/coverage/installer_tests.rs
  • crates/cli/tests/coverage/session_tests.rs
  • crates/cli/src/server.rs
  • crates/cli/src/adapters/mod.rs
  • crates/cli/src/gateway.rs
  • crates/cli/src/session.rs
  • crates/cli/tests/coverage/launcher_tests.rs
  • crates/cli/src/launcher.rs
  • crates/cli/tests/coverage/gateway_tests.rs
  • crates/cli/tests/cli_tests.rs
  • crates/cli/src/config.rs
  • crates/cli/src/installer.rs
**/*.{rs,go,js,ts,tsx}

📄 CodeRabbit inference engine (CONTRIBUTING.md)

Include SPDX license headers in all Rust, Go, JavaScript, and TypeScript source files using C-style comment syntax

Files:

  • crates/cli/src/adapters/cursor.rs
  • crates/cli/src/error.rs
  • crates/cli/src/adapters/claude_code.rs
  • crates/cli/tests/coverage/adapters_tests.rs
  • crates/cli/src/main.rs
  • crates/cli/tests/coverage/config_tests.rs
  • crates/cli/src/model.rs
  • crates/core/src/codec/openai_chat.rs
  • crates/cli/tests/coverage/server_tests.rs
  • crates/cli/src/adapters/codex.rs
  • crates/cli/tests/coverage/installer_tests.rs
  • crates/cli/tests/coverage/session_tests.rs
  • crates/cli/src/server.rs
  • crates/cli/src/adapters/mod.rs
  • crates/cli/src/gateway.rs
  • crates/cli/src/session.rs
  • crates/cli/tests/coverage/launcher_tests.rs
  • crates/cli/src/launcher.rs
  • crates/cli/tests/coverage/gateway_tests.rs
  • crates/cli/tests/cli_tests.rs
  • crates/cli/src/config.rs
  • crates/cli/src/installer.rs
**/*.{rs,py,go,js,ts,tsx}

📄 CodeRabbit inference engine (CONTRIBUTING.md)

Use SONAR_IGNORE_START / SONAR_IGNORE_END markers only for documented false positives that cannot be resolved in code; keep ignored blocks small, add explanatory comments, and require reviewer sign-off

Files:

  • crates/cli/src/adapters/cursor.rs
  • crates/cli/src/error.rs
  • crates/cli/src/adapters/claude_code.rs
  • crates/cli/tests/coverage/adapters_tests.rs
  • crates/cli/src/main.rs
  • crates/cli/tests/coverage/config_tests.rs
  • crates/cli/src/model.rs
  • crates/core/src/codec/openai_chat.rs
  • crates/cli/tests/coverage/server_tests.rs
  • crates/cli/src/adapters/codex.rs
  • crates/cli/tests/coverage/installer_tests.rs
  • crates/cli/tests/coverage/session_tests.rs
  • crates/cli/src/server.rs
  • crates/cli/src/adapters/mod.rs
  • crates/cli/src/gateway.rs
  • crates/cli/src/session.rs
  • crates/cli/tests/coverage/launcher_tests.rs
  • crates/cli/src/launcher.rs
  • crates/cli/tests/coverage/gateway_tests.rs
  • crates/cli/tests/cli_tests.rs
  • crates/cli/src/config.rs
  • crates/cli/src/installer.rs
**/*.{js,ts,tsx,jsx,py,rs,go,java,c,cpp,h,cc,cxx,cs,rb,php,swift,kt}

📄 CodeRabbit inference engine (.agents/skills/prepare-pr/SKILL.md)

Changed files must be formatted with the language-native formatter

Files:

  • crates/cli/src/adapters/cursor.rs
  • crates/cli/src/error.rs
  • crates/cli/src/adapters/claude_code.rs
  • crates/cli/tests/coverage/adapters_tests.rs
  • crates/cli/src/main.rs
  • crates/cli/tests/coverage/config_tests.rs
  • crates/cli/src/model.rs
  • crates/core/src/codec/openai_chat.rs
  • crates/cli/tests/coverage/server_tests.rs
  • crates/cli/src/adapters/codex.rs
  • crates/cli/tests/coverage/installer_tests.rs
  • crates/cli/tests/coverage/session_tests.rs
  • crates/cli/src/server.rs
  • crates/cli/src/adapters/mod.rs
  • crates/cli/src/gateway.rs
  • crates/cli/src/session.rs
  • crates/cli/tests/coverage/launcher_tests.rs
  • crates/cli/src/launcher.rs
  • crates/cli/tests/coverage/gateway_tests.rs
  • crates/cli/tests/cli_tests.rs
  • crates/cli/src/config.rs
  • crates/cli/src/installer.rs
**/*.{rs,py,js,ts,tsx,go}

📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)

During iteration, prefer uv run pre-commit run --files <changed files...> for targeted validation

Files:

  • crates/cli/src/adapters/cursor.rs
  • crates/cli/src/error.rs
  • crates/cli/src/adapters/claude_code.rs
  • crates/cli/tests/coverage/adapters_tests.rs
  • crates/cli/src/main.rs
  • crates/cli/tests/coverage/config_tests.rs
  • crates/cli/src/model.rs
  • crates/core/src/codec/openai_chat.rs
  • crates/cli/tests/coverage/server_tests.rs
  • crates/cli/src/adapters/codex.rs
  • crates/cli/tests/coverage/installer_tests.rs
  • crates/cli/tests/coverage/session_tests.rs
  • crates/cli/src/server.rs
  • crates/cli/src/adapters/mod.rs
  • crates/cli/src/gateway.rs
  • crates/cli/src/session.rs
  • crates/cli/tests/coverage/launcher_tests.rs
  • crates/cli/src/launcher.rs
  • crates/cli/tests/coverage/gateway_tests.rs
  • crates/cli/tests/cli_tests.rs
  • crates/cli/src/config.rs
  • crates/cli/src/installer.rs
**/Cargo.{toml,lock}

📄 CodeRabbit inference engine (CONTRIBUTING.md)

Run cargo deny check for Rust dependency auditing as configured in deny.toml

Files:

  • Cargo.toml
  • crates/cli/Cargo.toml
**/*.toml

📄 CodeRabbit inference engine (CONTRIBUTING.md)

Include SPDX license headers in TOML files using TOML comment syntax

Files:

  • Cargo.toml
  • crates/cli/Cargo.toml
{Cargo.toml,setup.py,setup.cfg,pyproject.toml,go.mod,go.sum,package.json,package-lock.json,yarn.lock,pom.xml,*.gradle}

📄 CodeRabbit inference engine (.agents/skills/rename-surfaces/SKILL.md)

Update repository manifest files (Cargo.toml, setup.py, go.mod, package.json, etc.) with new package/crate names during rename operations

Files:

  • Cargo.toml
{Cargo.toml,pyproject.toml,go/nemo_flow/go.mod,package.json,package-lock.json,crates/node/package.json}

📄 CodeRabbit inference engine (.agents/skills/maintain-packaging/SKILL.md)

Maintain consistent package names, import paths, and module names across Rust, Python, Go, Node, and WebAssembly workspaces in NeMo Flow

Files:

  • Cargo.toml
Cargo.toml

📄 CodeRabbit inference engine (.agents/skills/update-project-version/SKILL.md)

Cargo.toml: Maintain Cargo.toml [workspace.package].version as the source of truth for the Rust workspace and Python build versioning
Keep Cargo.toml [workspace.dependencies] self-references aligned when the workspace version changes (nemo-flow, nemo-flow-adaptive, nemo-flow-ffi)

Format Rust project files with cargo fmt --all to maintain consistent Rust code style

Files:

  • Cargo.toml
{RELEASING.md,CHANGELOG.md,docs/releases/**/*}

📄 CodeRabbit inference engine (.agents/skills/maintain-packaging/SKILL.md)

Reflect public packaging changes in release-facing documentation

Files:

  • RELEASING.md
{crates/**/tests/**,python/tests/**,go/nemo_flow/**/*_test.go}

⚙️ CodeRabbit configuration file

{crates/**/tests/**,python/tests/**,go/nemo_flow/**/*_test.go}: Tests should cover the behavior promised by the changed API surface, including error paths and cross-request isolation where relevant.
Prefer assertions on lifecycle events, scope stacks, middleware ordering, and binding parity over shallow smoke tests.

Files:

  • crates/cli/tests/coverage/adapters_tests.rs
  • crates/cli/tests/coverage/config_tests.rs
  • crates/cli/tests/coverage/server_tests.rs
  • crates/cli/tests/coverage/installer_tests.rs
  • crates/cli/tests/coverage/session_tests.rs
  • crates/cli/tests/coverage/launcher_tests.rs
  • crates/cli/tests/coverage/gateway_tests.rs
  • crates/cli/tests/cli_tests.rs
docs/reference/**/*.md

📄 CodeRabbit inference engine (CONTRIBUTING.md)

Update relevant reference documentation for any public API changes

Files:

  • docs/reference/api/rust/index.md
**/{integrations,integration,*-integration}/**

📄 CodeRabbit inference engine (.agents/skills/contribute-integration/SKILL.md)

**/{integrations,integration,*-integration}/**: Keep NeMo Flow optional in framework integrations
Preserve the framework's original behavior when NeMo Flow is absent
Wrap tool and LLM paths at the correct framework boundary
Integration pattern must follow docs/integrate-frameworks/adding-scopes.md

Files:

  • integrations/coding-agents/codex/hooks/hooks.json
  • integrations/coding-agents/codex/README.md
  • integrations/coding-agents/README.md
  • integrations/coding-agents/claude-code/hooks/hooks.json
  • integrations/coding-agents/cursor/README.md
  • integrations/coding-agents/claude-code/README.md
crates/{core,adaptive}/**

📄 CodeRabbit inference engine (.agents/skills/prepare-pr/SKILL.md)

Changes to crates/core or crates/adaptive must run the full language matrix

Files:

  • crates/core/src/codec/openai_chat.rs
{crates/core,crates/adaptive}/**/*.rs

📄 CodeRabbit inference engine (.agents/skills/test-wasm-binding/SKILL.md)

If the change touched shared runtime semantics in crates/core or crates/adaptive, also use validate-change

Files:

  • crates/core/src/codec/openai_chat.rs
crates/core/**/*.rs

📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)

When crates/core changes, run the full validation matrix across Rust, Python, Go, Node.js, and WebAssembly

Files:

  • crates/core/src/codec/openai_chat.rs
crates/{core,adaptive}/**/*.rs

⚙️ CodeRabbit configuration file

crates/{core,adaptive}/**/*.rs: Review the Rust runtime for async correctness, scope isolation, middleware ordering, and event lifecycle regressions.
Pay close attention to task-local/thread-local scope propagation, callback lifetimes, stream finalization, and root_uuid isolation.
Public API changes should preserve existing behavior unless tests and docs show the intended migration path.

Files:

  • crates/core/src/codec/openai_chat.rs
.github/workflows/**/*.{yml,yaml}

📄 CodeRabbit inference engine (.agents/skills/maintain-ci/SKILL.md)

.github/workflows/**/*.{yml,yaml}: Put permissions: on each job that needs token access in GitHub Actions workflows
Avoid workflow-level permissions unless the repository intentionally centralizes them and the inheritance tradeoff is documented
Keep third-party actions pinned to full commit SHAs and preserve the readable version comment after the SHA
Prefer action-native or ecosystem-native caching over generic actions/cache in GitHub Actions workflows
Use lockfiles or dependency manifests to drive cache invalidation in GitHub Actions workflows
Keep deploy and publish permissions isolated to the jobs that need them
Read both caller and callee when a workflow uses workflow_call in GitHub Actions
Put release-tag validation in the earliest practical caller job when the pipeline has tag-based publish behavior
Keep release-tag policy aligned with RELEASING.md: raw SemVer tags only, no leading v
contents: read is the default minimum for checkout-based build, test, docs, and packaging jobs
pull-requests: read is required for PR metadata lookup jobs in GitHub Actions workflows
pages: write and id-token: write should be limited to Pages deployment jobs and any caller that invokes them through a reusable workflow
For reusable workflows, the caller must grant every permission the called jobs require and the callee cannot elevate beyond what the caller provides
Prefer astral-sh/setup-uv cache support with cache-dependency-glob anchored to uv.lock for Python dependency caching
Prefer Swatinem/rust-cache with explicit shared-key and workspaces instead of ad hoc target-directory caching
Avoid caching generated outputs that can hide stale behavior unless the repo already relies on them deliberately
Ensure each job has the minimum permissions it needs during GitHub Actions CI review
Ensure reusable workflow callers grant only the scopes their callees require
Ensure every external action is pinned to a full SHA in GitHub Actions workflows
Ensure cache ...

Files:

  • .github/workflows/ci_rust.yml
  • .github/workflows/ci.yaml
{.github/**/*.{yml,yaml},*.patch,scripts/**/*,*.sh,*.bat,Dockerfile*}

📄 CodeRabbit inference engine (.agents/skills/rename-surfaces/SKILL.md)

Update CI configuration, patch files, and build scripts with new functional identifiers after rename operations

Files:

  • .github/workflows/ci_rust.yml
  • .github/workflows/ci.yaml
{.github/workflows/*.{yml,yaml},.gitlab-ci.yml}

📄 CodeRabbit inference engine (.agents/skills/maintain-packaging/SKILL.md)

Ensure CI workflow references match local package names and installation methods

Files:

  • .github/workflows/ci_rust.yml
  • .github/workflows/ci.yaml
{.github/**,.gitlab-ci.yml,.pre-commit-config.yaml,justfile,scripts/**}

⚙️ CodeRabbit configuration file

{.github/**,.gitlab-ci.yml,.pre-commit-config.yaml,justfile,scripts/**}: Review automation changes for reproducibility, pinned versions where appropriate, secret handling, and consistency with the documented validation matrix.
Pay attention to commands that need generated native artifacts, FFI libraries, or platform-specific environment variables.

Files:

  • .github/workflows/ci_rust.yml
  • .github/workflows/ci.yaml
  • justfile
justfile

📄 CodeRabbit inference engine (.agents/skills/update-project-version/SKILL.md)

justfile: Keep set_project_version, set_cargo_workspace_version, and set_node_package_version helper functions aligned with actual version fields when editing helper code
Reuse set_npm_package_version helper function for both Node and WebAssembly packaging recipes

Files:

  • justfile
**/{config,schema,adaptive}.{yaml,yml,json,ts,tsx,py,go,rs}

📄 CodeRabbit inference engine (.agents/skills/maintain-optimizer/SKILL.md)

Ensure dynamic config shape matches the documented canonical model in docs/use-adaptive-optimization/configure.md

Files:

  • crates/cli/src/config.rs
🧠 Learnings (1)
📚 Learning: 2026-05-03T04:23:07.497Z
Learnt from: willkill07
Repo: NVIDIA/NeMo-Flow PR: 46
File: .github/workflows/ci_rust.yml:31-64
Timestamp: 2026-05-03T04:23:07.497Z
Learning: In GitHub Actions workflow YAML, it’s valid to conditionally disable a service container by setting the service container’s `image` to an empty string (`''`) via a matrix variable (e.g., `redis_service_image: ''`). This intentionally makes the runner skip service initialization for that matrix entry rather than failing the job. When reviewing workflows, don’t flag this as an error if the workflow uses an empty `image` to disable the service on specific matrix entries (e.g., OS-specific setups); verify the `image` is sourced from the matrix variable and that the service is only expected to be available when a non-empty image is provided.

Applied to files:

  • .github/workflows/ci_rust.yml
🪛 LanguageTool
docs/getting-started/rust.md

[style] ~28-~28: Three successive sentences begin with the same word. Consider rewording the sentence or use a thesaurus to find a synonym.
Context: ... learning components. - nemo-flow-cli is a binary crate. Use `cargo install --pa...

(ENGLISH_WORD_REPEAT_BEGINNING_RULE)

Comment thread crates/core/src/codec/openai_chat.rs
@willkill07
Copy link
Copy Markdown
Member Author

/merge

@rapids-bot rapids-bot Bot merged commit 7e079b0 into NVIDIA:main May 11, 2026
66 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

lang:rust PR changes/introduces Rust code refactor PR refactors component(s) size:XL PR is extra large

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants