refactor: rename sidecar crate to CLI#77
Conversation
Signed-off-by: Will Killian <wkillian@nvidia.com>
WalkthroughThis 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. ChangesWorkspace & Build Configuration
Error Handling & Configuration Layer
Server & Gateway Implementation
Session & Lifecycle Orchestration
Adapter & Core Logic
OpenAI Chat Codec Refactoring
Test Coverage & Validation
Documentation & User-Facing Integration
Estimated code review effort🎯 3 (Moderate) | ⏱️ ~25 minutes Possibly related PRs
✨ Finishing Touches🧪 Generate unit tests (beta)
|
There was a problem hiding this comment.
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 winMake 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
⛔ Files ignored due to path filters (1)
Cargo.lockis excluded by!**/*.lock
📒 Files selected for processing (47)
.github/workflows/ci.yaml.github/workflows/ci_rust.ymlCargo.tomlREADME.mdRELEASING.mdcodecov.ymlcrates/cli/Cargo.tomlcrates/cli/src/adapters/claude_code.rscrates/cli/src/adapters/codex.rscrates/cli/src/adapters/cursor.rscrates/cli/src/adapters/hermes.rscrates/cli/src/adapters/mod.rscrates/cli/src/config.rscrates/cli/src/error.rscrates/cli/src/gateway.rscrates/cli/src/installer.rscrates/cli/src/launcher.rscrates/cli/src/main.rscrates/cli/src/model.rscrates/cli/src/server.rscrates/cli/src/session.rscrates/cli/tests/cli_tests.rscrates/cli/tests/coverage/adapters_tests.rscrates/cli/tests/coverage/config_tests.rscrates/cli/tests/coverage/gateway_tests.rscrates/cli/tests/coverage/installer_tests.rscrates/cli/tests/coverage/launcher_tests.rscrates/cli/tests/coverage/server_tests.rscrates/cli/tests/coverage/session_tests.rscrates/core/src/codec/openai_chat.rsdocs/getting-started/installation.mddocs/getting-started/rust.mddocs/index.mddocs/integrate-frameworks/about.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/integrate-frameworks/coding-agent-cursor.mddocs/integrate-frameworks/coding-agent-gateway.mddocs/integrate-frameworks/coding-agent-hermes.mddocs/reference/api/rust/index.mdintegrations/coding-agents/README.mdintegrations/coding-agents/claude-code/README.mdintegrations/coding-agents/claude-code/hooks/hooks.jsonintegrations/coding-agents/codex/README.mdintegrations/coding-agents/codex/hooks/hooks.jsonintegrations/coding-agents/cursor/README.mdjustfile
📜 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 spellNVIDIAin all caps. Do not useNvidia,nvidia,nVidia,nVIDIA, orNV.
Usean NVIDIAbefore a noun because the name starts with an 'en' sound.
Do not add a registered trademark symbol afterNVIDIAwhen 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 withNVIDIAon 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 withs, not an apostrophe, such asGPUs.
In headings, common acronyms can remain abbreviated. Spell out the term in the first or second sentence of the body.
Common terms such asCPU,GPU,PC,API, andUIusually do not need to be spelled out for developer audiences.
Files:
docs/index.mddocs/integrate-frameworks/about.mdREADME.mddocs/getting-started/installation.mdRELEASING.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mdintegrations/coding-agents/codex/README.mdintegrations/coding-agents/README.mdintegrations/coding-agents/cursor/README.mddocs/integrate-frameworks/coding-agent-cursor.mdintegrations/coding-agents/claude-code/README.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/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.mddocs/integrate-frameworks/about.mdREADME.mddocs/getting-started/installation.mdRELEASING.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mdintegrations/coding-agents/codex/README.mdintegrations/coding-agents/README.mdintegrations/coding-agents/cursor/README.mddocs/integrate-frameworks/coding-agent-cursor.mdintegrations/coding-agents/claude-code/README.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/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}: SpellNVIDIAin all caps. Do not useNvidia,nvidia, orNV.
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.
Usecanfor possibility and reservemayfor permission.
Useafterfor temporal relationships instead ofonce.
Preferrefer tooverseewhen 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.mddocs/integrate-frameworks/about.mdREADME.mddocs/getting-started/installation.mdRELEASING.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mdintegrations/coding-agents/codex/README.mdintegrations/coding-agents/README.mdintegrations/coding-agents/cursor/README.mddocs/integrate-frameworks/coding-agent-cursor.mdintegrations/coding-agents/claude-code/README.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/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.mddocs/integrate-frameworks/about.mdREADME.mddocs/getting-started/installation.mdRELEASING.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mdintegrations/coding-agents/codex/README.mdintegrations/coding-agents/README.mdintegrations/coding-agents/cursor/README.mddocs/integrate-frameworks/coding-agent-cursor.mdintegrations/coding-agents/claude-code/README.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/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.mddocs/integrate-frameworks/about.mdREADME.mddocs/getting-started/installation.mdRELEASING.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mdintegrations/coding-agents/codex/README.mdintegrations/coding-agents/README.mdintegrations/coding-agents/cursor/README.mddocs/integrate-frameworks/coding-agent-cursor.mdintegrations/coding-agents/claude-code/README.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/integrate-frameworks/coding-agent-gateway.md
docs/**/*.md
📄 CodeRabbit inference engine (CONTRIBUTING.md)
Run
./scripts/build-docs.shfor 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.mddocs/integrate-frameworks/about.mddocs/getting-started/installation.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mddocs/integrate-frameworks/coding-agent-cursor.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/integrate-frameworks/coding-agent-gateway.md
**/*.md
📄 CodeRabbit inference engine (CONTRIBUTING.md)
Run Markdown link checking via
lycheeforREADME.md,CONTRIBUTING.md, anddocs/through pre-commit hooks
Files:
docs/index.mddocs/integrate-frameworks/about.mdREADME.mddocs/getting-started/installation.mdRELEASING.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mdintegrations/coding-agents/codex/README.mdintegrations/coding-agents/README.mdintegrations/coding-agents/cursor/README.mddocs/integrate-frameworks/coding-agent-cursor.mdintegrations/coding-agents/claude-code/README.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/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.mddocs/integrate-frameworks/about.mdREADME.mddocs/getting-started/installation.mdRELEASING.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mdintegrations/coding-agents/codex/README.mdintegrations/coding-agents/README.mdintegrations/coding-agents/cursor/README.mddocs/integrate-frameworks/coding-agent-cursor.mdintegrations/coding-agents/claude-code/README.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/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.mdREADME.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.mddocs/integrate-frameworks/about.mddocs/getting-started/installation.mdRELEASING.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mddocs/integrate-frameworks/coding-agent-cursor.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/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.mddocs/integrate-frameworks/about.mdREADME.mddocs/getting-started/installation.mdRELEASING.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mdintegrations/coding-agents/codex/README.mdintegrations/coding-agents/README.mdintegrations/coding-agents/cursor/README.mddocs/integrate-frameworks/coding-agent-cursor.mdintegrations/coding-agents/claude-code/README.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/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.mddocs/integrate-frameworks/about.mdREADME.mddocs/getting-started/installation.mdRELEASING.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mdintegrations/coding-agents/codex/README.mdintegrations/coding-agents/README.mdintegrations/coding-agents/cursor/README.mddocs/integrate-frameworks/coding-agent-cursor.mdintegrations/coding-agents/claude-code/README.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/integrate-frameworks/coding-agent-gateway.md
{scripts/*.sh,docs/**/*.md}
📄 CodeRabbit inference engine (.agents/skills/contribute-integration/SKILL.md)
Use root
./scripts/*.shcommands in docs and contributor guidance as documented, with implementations underscripts/third-party/
Files:
docs/index.mddocs/integrate-frameworks/about.mddocs/getting-started/installation.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mddocs/integrate-frameworks/coding-agent-cursor.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/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.mddocs/integrate-frameworks/about.mddocs/getting-started/installation.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mddocs/integrate-frameworks/coding-agent-cursor.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/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.mddocs/integrate-frameworks/about.mdREADME.mddocs/getting-started/installation.mdRELEASING.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mddocs/integrate-frameworks/coding-agent-cursor.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/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.mddocs/integrate-frameworks/about.mdREADME.mddocs/getting-started/installation.mdRELEASING.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mdintegrations/coding-agents/codex/README.mdintegrations/coding-agents/README.mdintegrations/coding-agents/cursor/README.mddocs/integrate-frameworks/coding-agent-cursor.mdintegrations/coding-agents/claude-code/README.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/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.mdREADME.mdintegrations/coding-agents/codex/README.mdintegrations/coding-agents/README.mdintegrations/coding-agents/cursor/README.mdintegrations/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.mddocs/integrate-frameworks/about.mdREADME.mdcrates/cli/src/adapters/cursor.rsdocs/getting-started/installation.mdCargo.tomlcrates/cli/Cargo.tomlcodecov.ymlcrates/cli/src/error.rsRELEASING.mdcrates/cli/src/adapters/claude_code.rscrates/cli/tests/coverage/adapters_tests.rscrates/cli/src/main.rsdocs/getting-started/rust.mdcrates/cli/tests/coverage/config_tests.rsdocs/reference/api/rust/index.mdcrates/cli/src/model.rsdocs/integrate-frameworks/coding-agent-hermes.mdintegrations/coding-agents/codex/hooks/hooks.jsoncrates/core/src/codec/openai_chat.rsintegrations/coding-agents/codex/README.mdcrates/cli/tests/coverage/server_tests.rsintegrations/coding-agents/README.mdintegrations/coding-agents/claude-code/hooks/hooks.jsoncrates/cli/src/adapters/codex.rsintegrations/coding-agents/cursor/README.mddocs/integrate-frameworks/coding-agent-cursor.mdcrates/cli/tests/coverage/installer_tests.rscrates/cli/tests/coverage/session_tests.rsintegrations/coding-agents/claude-code/README.mdcrates/cli/src/server.rsdocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/integrate-frameworks/coding-agent-gateway.mdcrates/cli/src/adapters/mod.rscrates/cli/src/gateway.rscrates/cli/src/session.rscrates/cli/tests/coverage/launcher_tests.rscrates/cli/src/launcher.rscrates/cli/tests/coverage/gateway_tests.rscrates/cli/tests/cli_tests.rscrates/cli/src/config.rscrates/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.mddocs/integrate-frameworks/about.mdREADME.mddocs/getting-started/installation.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mddocs/integrate-frameworks/coding-agent-cursor.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/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.mddocs/integrate-frameworks/about.mdREADME.mdcrates/cli/src/adapters/cursor.rsdocs/getting-started/installation.mdcrates/cli/src/error.rsRELEASING.mdcrates/cli/src/adapters/claude_code.rscrates/cli/tests/coverage/adapters_tests.rscrates/cli/src/main.rsdocs/getting-started/rust.mdcrates/cli/tests/coverage/config_tests.rsdocs/reference/api/rust/index.mdcrates/cli/src/model.rsdocs/integrate-frameworks/coding-agent-hermes.mdcrates/core/src/codec/openai_chat.rsintegrations/coding-agents/codex/README.mdcrates/cli/tests/coverage/server_tests.rsintegrations/coding-agents/README.mdcrates/cli/src/adapters/codex.rsintegrations/coding-agents/cursor/README.mddocs/integrate-frameworks/coding-agent-cursor.mdcrates/cli/tests/coverage/installer_tests.rscrates/cli/tests/coverage/session_tests.rsintegrations/coding-agents/claude-code/README.mdcrates/cli/src/server.rsdocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/integrate-frameworks/coding-agent-gateway.mdcrates/cli/src/adapters/mod.rscrates/cli/src/gateway.rscrates/cli/src/session.rscrates/cli/tests/coverage/launcher_tests.rscrates/cli/src/launcher.rscrates/cli/tests/coverage/gateway_tests.rscrates/cli/tests/cli_tests.rscrates/cli/src/config.rscrates/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 docsfor docs-site builds andjust docs-linkcheckwhen links changed
Files:
docs/index.mddocs/integrate-frameworks/about.mdREADME.mddocs/getting-started/installation.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mddocs/integrate-frameworks/coding-agent-cursor.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/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.mddocs/integrate-frameworks/about.mdREADME.mddocs/getting-started/installation.mdRELEASING.mddocs/getting-started/rust.mddocs/reference/api/rust/index.mddocs/integrate-frameworks/coding-agent-hermes.mddocs/integrate-frameworks/coding-agent-cursor.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/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.mddocs/integrate-frameworks/coding-agent-hermes.mddocs/integrate-frameworks/coding-agent-cursor.mddocs/integrate-frameworks/coding-agent-claude-code.mddocs/integrate-frameworks/coding-agent-codex.mddocs/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.mdintegrations/coding-agents/codex/README.mdintegrations/coding-agents/README.mdintegrations/coding-agents/cursor/README.mdintegrations/coding-agents/claude-code/README.md
**/*.rs
📄 CodeRabbit inference engine (.agents/skills/test-ffi-surface/SKILL.md)
**/*.rs: Runcargo fmt --allfor FFI work as it is Rust work
Runjust test-rustfor FFI validation
Runcargo clippy --workspace --all-targets -- -D warningsto enforce warnings-as-errors lintingWhen Rust files changed as part of Python work, run
cargo fmt --all,just test-rust, andcargo clippy --workspace --all-targets -- -D warnings
**/*.rs: Runcargo fmt --allfor Rust code formatting
Runcargo clippy --workspace --all-targets -- -D warningsto enforce Rust linting with no warnings
Runjust test-rustas the shared-runtime build/test wrapper for Rust changesUse Rust snake_case naming convention for Rust code
**/*.rs: Any Rust change must runjust test-rust
Any Rust change must runcargo fmt --all
Any Rust change must runcargo clippy --workspace --all-targets -- -D warnings
**/*.rs: Runcargo fmt --allfor Rust code formatting when Node changes touch Rust files
Runcargo clippy --workspace --all-targets -- -D warningsto enforce strict linting when Rust files changed as part of Node work
**/*.rs: Always runjust test-rustwhen any Rust code changes
Always runcargo fmt --allwhen any Rust code changes
Always runcargo clippy --workspace --all-targets -- -D warningswhen any Rust code changes
Files:
crates/cli/src/adapters/cursor.rscrates/cli/src/error.rscrates/cli/src/adapters/claude_code.rscrates/cli/tests/coverage/adapters_tests.rscrates/cli/src/main.rscrates/cli/tests/coverage/config_tests.rscrates/cli/src/model.rscrates/core/src/codec/openai_chat.rscrates/cli/tests/coverage/server_tests.rscrates/cli/src/adapters/codex.rscrates/cli/tests/coverage/installer_tests.rscrates/cli/tests/coverage/session_tests.rscrates/cli/src/server.rscrates/cli/src/adapters/mod.rscrates/cli/src/gateway.rscrates/cli/src/session.rscrates/cli/tests/coverage/launcher_tests.rscrates/cli/src/launcher.rscrates/cli/tests/coverage/gateway_tests.rscrates/cli/tests/cli_tests.rscrates/cli/src/config.rscrates/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.rscrates/cli/src/error.rscrates/cli/src/adapters/claude_code.rscrates/cli/tests/coverage/adapters_tests.rscrates/cli/src/main.rscrates/cli/tests/coverage/config_tests.rscrates/cli/src/model.rscrates/core/src/codec/openai_chat.rscrates/cli/tests/coverage/server_tests.rscrates/cli/src/adapters/codex.rscrates/cli/tests/coverage/installer_tests.rscrates/cli/tests/coverage/session_tests.rscrates/cli/src/server.rscrates/cli/src/adapters/mod.rscrates/cli/src/gateway.rscrates/cli/src/session.rscrates/cli/tests/coverage/launcher_tests.rscrates/cli/src/launcher.rscrates/cli/tests/coverage/gateway_tests.rscrates/cli/tests/cli_tests.rscrates/cli/src/config.rscrates/cli/src/installer.rs
**/*.{rs,py,go,js,ts,tsx}
📄 CodeRabbit inference engine (CONTRIBUTING.md)
Use
SONAR_IGNORE_START/SONAR_IGNORE_ENDmarkers 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.rscrates/cli/src/error.rscrates/cli/src/adapters/claude_code.rscrates/cli/tests/coverage/adapters_tests.rscrates/cli/src/main.rscrates/cli/tests/coverage/config_tests.rscrates/cli/src/model.rscrates/core/src/codec/openai_chat.rscrates/cli/tests/coverage/server_tests.rscrates/cli/src/adapters/codex.rscrates/cli/tests/coverage/installer_tests.rscrates/cli/tests/coverage/session_tests.rscrates/cli/src/server.rscrates/cli/src/adapters/mod.rscrates/cli/src/gateway.rscrates/cli/src/session.rscrates/cli/tests/coverage/launcher_tests.rscrates/cli/src/launcher.rscrates/cli/tests/coverage/gateway_tests.rscrates/cli/tests/cli_tests.rscrates/cli/src/config.rscrates/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.rscrates/cli/src/error.rscrates/cli/src/adapters/claude_code.rscrates/cli/tests/coverage/adapters_tests.rscrates/cli/src/main.rscrates/cli/tests/coverage/config_tests.rscrates/cli/src/model.rscrates/core/src/codec/openai_chat.rscrates/cli/tests/coverage/server_tests.rscrates/cli/src/adapters/codex.rscrates/cli/tests/coverage/installer_tests.rscrates/cli/tests/coverage/session_tests.rscrates/cli/src/server.rscrates/cli/src/adapters/mod.rscrates/cli/src/gateway.rscrates/cli/src/session.rscrates/cli/tests/coverage/launcher_tests.rscrates/cli/src/launcher.rscrates/cli/tests/coverage/gateway_tests.rscrates/cli/tests/cli_tests.rscrates/cli/src/config.rscrates/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.rscrates/cli/src/error.rscrates/cli/src/adapters/claude_code.rscrates/cli/tests/coverage/adapters_tests.rscrates/cli/src/main.rscrates/cli/tests/coverage/config_tests.rscrates/cli/src/model.rscrates/core/src/codec/openai_chat.rscrates/cli/tests/coverage/server_tests.rscrates/cli/src/adapters/codex.rscrates/cli/tests/coverage/installer_tests.rscrates/cli/tests/coverage/session_tests.rscrates/cli/src/server.rscrates/cli/src/adapters/mod.rscrates/cli/src/gateway.rscrates/cli/src/session.rscrates/cli/tests/coverage/launcher_tests.rscrates/cli/src/launcher.rscrates/cli/tests/coverage/gateway_tests.rscrates/cli/tests/cli_tests.rscrates/cli/src/config.rscrates/cli/src/installer.rs
**/Cargo.{toml,lock}
📄 CodeRabbit inference engine (CONTRIBUTING.md)
Run
cargo deny checkfor Rust dependency auditing as configured indeny.toml
Files:
Cargo.tomlcrates/cli/Cargo.toml
**/*.toml
📄 CodeRabbit inference engine (CONTRIBUTING.md)
Include SPDX license headers in TOML files using TOML comment syntax
Files:
Cargo.tomlcrates/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: MaintainCargo.toml[workspace.package].versionas the source of truth for the Rust workspace and Python build versioning
KeepCargo.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 --allto 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.rscrates/cli/tests/coverage/config_tests.rscrates/cli/tests/coverage/server_tests.rscrates/cli/tests/coverage/installer_tests.rscrates/cli/tests/coverage/session_tests.rscrates/cli/tests/coverage/launcher_tests.rscrates/cli/tests/coverage/gateway_tests.rscrates/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 followdocs/integrate-frameworks/adding-scopes.md
Files:
integrations/coding-agents/codex/hooks/hooks.jsonintegrations/coding-agents/codex/README.mdintegrations/coding-agents/README.mdintegrations/coding-agents/claude-code/hooks/hooks.jsonintegrations/coding-agents/cursor/README.mdintegrations/coding-agents/claude-code/README.md
crates/{core,adaptive}/**
📄 CodeRabbit inference engine (.agents/skills/prepare-pr/SKILL.md)
Changes to
crates/coreorcrates/adaptivemust 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/coreorcrates/adaptive, also usevalidate-change
Files:
crates/core/src/codec/openai_chat.rs
crates/core/**/*.rs
📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)
When
crates/corechanges, 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}: Putpermissions: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 genericactions/cachein 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 usesworkflow_callin 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 withRELEASING.md: raw SemVer tags only, no leadingv
contents: readis the default minimum for checkout-based build, test, docs, and packaging jobs
pull-requests: readis required for PR metadata lookup jobs in GitHub Actions workflows
pages: writeandid-token: writeshould 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
Preferastral-sh/setup-uvcache support withcache-dependency-globanchored touv.lockfor Python dependency caching
PreferSwatinem/rust-cachewith explicitshared-keyandworkspacesinstead 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.yamljustfile
justfile
📄 CodeRabbit inference engine (.agents/skills/update-project-version/SKILL.md)
justfile: Keepset_project_version,set_cargo_workspace_version, andset_node_package_versionhelper functions aligned with actual version fields when editing helper code
Reuseset_npm_package_versionhelper 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)
|
/merge |
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-cliwith anemo-flowexecutable.Details
nemo-flow-cli, moves it fromcrates/sidecartocrates/cli, and generates thenemo-flowbinary.--gateway-url,NEMO_FLOW_GATEWAY_URL,NEMO_FLOW_GATEWAY_BIND, andgateway.tomlwithout legacy sidecar compatibility aliases.SidecarConfig/SidecarErrortoGatewayConfig/CliErrorand refreshes tests for the renamed surfaces.cargo fmt --check --package nemo-flow-cli,cargo clippy -p nemo-flow-cli --all-targets -- -D warnings,cargo test -p nemo-flow-cli, andjust docs.Where should the reviewer start?
Start with
crates/cli/Cargo.tomlandcrates/cli/src/config.rsfor the renamed package, binary, CLI flags, environment variables, and config-file discovery. Then reviewdocs/integrate-frameworks/coding-agent-gateway.mdfor the public documentation rename.Related Issues: (use one of the action keywords Closes / Fixes / Resolves / Relates to)
Summary by CodeRabbit
Release Notes
nemo-flow-sidecartonemo-flow-cli..nemo-flow/sidecar.tomlto.nemo-flow/gateway.toml.NEMO_FLOW_SIDECAR_BIND→NEMO_FLOW_GATEWAY_BINDandNEMO_FLOW_SIDECAR_URL→NEMO_FLOW_GATEWAY_URL.