fix: fail closed generated enforcement hooks - #692
Conversation
Generate explicit per-event forwarding policies so permission-bearing pre-operation hooks reject delivery failures while observational hooks remain fail open. Preserve legacy installation migration and update packaged hooks, trust handling, tests, and documentation. Signed-off-by: Will Killian <wkillian@nvidia.com>
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: ASSERTIVE Plan: Enterprise Run ID: 📒 Files selected for processing (7)
💤 Files with no reviewable changes (1)
📜 Recent review details⏰ Context from checks skipped due to timeout. (2)
🧰 Additional context used📓 Path-based instructions (21)**/*.mdx📄 CodeRabbit inference engine (.agents/skills/review-doc-style/SKILL.md)
Files:
{docs,examples}/**/*📄 CodeRabbit inference engine (.agents/skills/rename-surfaces/SKILL.md)
Files:
**/*📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)
Files:
docs/**/*📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)
Files:
**/*.{md,mdx}📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)
Files:
**/*.{md,mdx,py,go,js,ts}📄 CodeRabbit inference engine (.agents/skills/maintain-observability/SKILL.md)
Files:
docs/**/*.{md,mdx}📄 CodeRabbit inference engine (CONTRIBUTING.md)
Files:
**/*.{rs,py,go,js,jsx,ts,tsx,c,h,html,md,mdx,toml}📄 CodeRabbit inference engine (CONTRIBUTING.md)
Files:
**/*.{md,mdx,rst}📄 CodeRabbit inference engine (.agents/skills/review-doc-style/assets/nvidia-style-technical-docs.md)
Files:
{docs/**,README.md,CONTRIBUTING.md,RELEASING.md,SECURITY.md}⚙️ CodeRabbit configuration file
Files:
**/*.rs📄 CodeRabbit inference engine (.agents/skills/prepare-pr/SKILL.md)
Files:
{crates/**/src/**/*.rs,python/**/*.py}📄 CodeRabbit inference engine (.agents/skills/maintain-dynamic-plugins/SKILL.md)
Files:
**/*.{rs,py,go,js,ts}📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)
Files:
**/*.{rs,py,js,ts,tsx,go,java,kt,swift}📄 CodeRabbit inference engine (.agents/skills/add-middleware/SKILL.md)
Files:
**/*.{rs,py,js,jsx,ts,tsx,go,c,h,cc,cpp,md,toml,yml,yaml,sh}📄 CodeRabbit inference engine (AGENTS.md)
Files:
**/*.{rs,py}📄 CodeRabbit inference engine (AGENTS.md)
Files:
crates/**/*.rs📄 CodeRabbit inference engine (AGENTS.md)
Files:
**/*.{rs,py,js,mjs,ts,tsx}📄 CodeRabbit inference engine (AGENTS.md)
Files:
**/*.{rs,py,go,js,jsx,ts,tsx,c,h}📄 CodeRabbit inference engine (CONTRIBUTING.md)
Files:
**/{test,tests}/**/*📄 CodeRabbit inference engine (CONTRIBUTING.md)
Files:
{crates/**/tests/**,python/tests/**,go/nemo_relay/**/*_test.go}⚙️ CodeRabbit configuration file
Files:
🧠 Learnings (1)📚 Learning: 2026-08-03T19:55:03.931ZApplied to files:
🔇 Additional comments (4)
WalkthroughGenerated hook commands now use event-specific fail-open or fail-closed policies. Claude, Codex, and Hermes integrations propagate command collections through installation, trust, verification, and removal flows. Tests and documentation cover policy selection, migration, and packaged hook configurations. ChangesHook policy rollout
Estimated code review effort: 4 (Complex) | ~60 minutes Sequence Diagram(s)sequenceDiagram
participant AgentIntegration
participant GeneratedHookCommands
participant AgentConfig
participant TrustAllowlist
AgentIntegration->>GeneratedHookCommands: generate commands by event
GeneratedHookCommands->>AgentConfig: serialize policy-aware hooks
AgentIntegration->>TrustAllowlist: approve generated commands
AgentConfig->>AgentIntegration: load configured hooks
AgentIntegration->>GeneratedHookCommands: match each event command
AgentIntegration->>TrustAllowlist: verify matching approvals
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 warning)
✅ Passed checks (4 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 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/cli/src/agents/hermes/integration.rs`:
- Around line 483-487: Update the approvals.retain predicate in the uninstall
flow to use the same generated-policy ownership classification as the logic
around line 625 when owned is None, removing orphaned managed approvals instead
of retaining all approvals. Preserve the existing commands.contains(command)
behavior when owned is present, and add a regression test covering uninstall
with only a generated policy approval and no paths.config.
🪄 Autofix
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: 79447b1b-8325-4b94-92cc-abaab6f7beb4
📒 Files selected for processing (22)
crates/cli/src/agents/claude/launch.rscrates/cli/src/agents/codex/host.rscrates/cli/src/agents/codex/launch.rscrates/cli/src/agents/hermes/config.rscrates/cli/src/agents/hermes/integration.rscrates/cli/src/agents/hermes/trust.rscrates/cli/src/agents/mod.rscrates/cli/src/commands/hook_forward.rscrates/cli/src/hooks/delivery.rscrates/cli/src/hooks/encoding.rscrates/cli/src/hooks/mod.rscrates/cli/src/hooks/types.rscrates/cli/tests/cli_tests.rscrates/cli/tests/coverage/agents/hermes_tests.rscrates/cli/tests/coverage/agents/plugin_host_tests.rscrates/cli/tests/coverage/agents/plugin_install_tests.rscrates/cli/tests/coverage/shared/installer_tests.rsdocs/about-nemo-relay/release-notes/index.mdxdocs/nemo-relay-cli/basic-usage.mdxintegrations/coding-agents/README.mdintegrations/coding-agents/claude-code/hooks/hooks.jsonintegrations/coding-agents/codex/hooks/hooks.json
📜 Review details
⏰ Context from checks skipped due to timeout. (2)
- GitHub Check: Check / Run
- GitHub Check: Preview docs
🧰 Additional context used
📓 Path-based instructions (29)
**/*.mdx
📄 CodeRabbit inference engine (.agents/skills/review-doc-style/SKILL.md)
MDX top-of-file SPDX comments must use {/* ... */} delimiters instead of HTML comment delimiters (Must-Fix)
**/*.mdx: In MDX files, top-of-file comments must use JSX comment delimiters ({/*and*/}); do not use HTML comments for MDX SPDX headers.
New or regenerated MDX files must use{/* ... */}for top-of-file SPDX comments.
Files:
docs/about-nemo-relay/release-notes/index.mdxdocs/nemo-relay-cli/basic-usage.mdx
docs/about-nemo-relay/release-notes/{index,highlights,known-issues}.mdx
📄 CodeRabbit inference engine (.agents/skills/draft-release-notes/SKILL.md)
docs/about-nemo-relay/release-notes/{index,highlights,known-issues}.mdx: Update onlydocs/about-nemo-relay/release-notes/index.mdx,docs/about-nemo-relay/release-notes/highlights.mdx, anddocs/about-nemo-relay/release-notes/known-issues.mdxunless the release changes their route or entry points.
Preserve the existing MDX front matter and the JSX SPDX comment in the release-notes pages.
Files:
docs/about-nemo-relay/release-notes/index.mdx
{docs,examples}/**/*
📄 CodeRabbit inference engine (.agents/skills/rename-surfaces/SKILL.md)
Update docs and examples.
Files:
docs/about-nemo-relay/release-notes/index.mdxdocs/nemo-relay-cli/basic-usage.mdx
**/*
📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)
**/*: Format changed files with the language-native formatter before the final lint/test pass.
If dynamic plugin behavior changed, usemaintain-dynamic-pluginsand include the native SDK, worker protocol, Python SDK, docs, packaging, and Codecov surfaces in the validation plan.
If code changes alter APIs, bindings, commands, paths, packaging behavior, observability/adaptive semantics, or documented best practices, update any dependent maintainer or consumer skills in the same branch.
During iteration, preferuv run pre-commit run --files <changed files...>.
Before review or handoff, runuv run pre-commit run --all-files.
**/*: Use release tags in raw Rust-compatible SemVer without a leadingv; tags such asv0.1.0are prohibited.
Use branch prefixesfeat/,fix/,docs/,test/, orrefactor/according to the change purpose.
Every commit in a pull request must include a DCOSigned-off-by:sign-off.
Before submitting a pull request, ensure pre-commit hooks, relevant tests, target-specific builds, documentation updates, and a rebase on the latestmainare complete.
Use commit messages in the formtype: short description, with a valid type and a first line under 72 characters.
Files:
docs/about-nemo-relay/release-notes/index.mdxcrates/cli/src/agents/claude/launch.rscrates/cli/src/agents/codex/launch.rscrates/cli/src/hooks/delivery.rsintegrations/coding-agents/codex/hooks/hooks.jsonintegrations/coding-agents/README.mdcrates/cli/src/agents/mod.rscrates/cli/src/hooks/mod.rscrates/cli/src/hooks/types.rsintegrations/coding-agents/claude-code/hooks/hooks.jsoncrates/cli/tests/cli_tests.rsdocs/nemo-relay-cli/basic-usage.mdxcrates/cli/src/agents/hermes/trust.rscrates/cli/tests/coverage/agents/plugin_install_tests.rscrates/cli/src/commands/hook_forward.rscrates/cli/tests/coverage/agents/hermes_tests.rscrates/cli/tests/coverage/shared/installer_tests.rscrates/cli/src/hooks/encoding.rscrates/cli/src/agents/hermes/config.rscrates/cli/src/agents/hermes/integration.rscrates/cli/tests/coverage/agents/plugin_host_tests.rscrates/cli/src/agents/codex/host.rs
docs/**/*
📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)
If documentation examples or commands under
docs/change, run the targeted docs checks appropriate to the change.
Files:
docs/about-nemo-relay/release-notes/index.mdxdocs/nemo-relay-cli/basic-usage.mdx
**/*.{md,mdx}
📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)
If links in documentation change, run
just docs-linkcheck.Use documented public APIs and stable wrapper commands in examples and user-facing documentation; do not rely on internal helpers.
**/*.{md,mdx}: Prefer the documented public API over internal shortcuts in documentation and examples.
Keep package names, repository references, and build commands current.
Contribution workflow documentation must require an issue before external contribution pull requests and note that NVIDIA contributors may use a GitHub or Linear issue.
Update entry-point documentation when examples or reading paths change.
Keep release-process and release-notes guidance in maintainer documentation such asRELEASING.md, rather than user-facing documentation pages orCHANGELOG.md.
Use stable user-facing wrappers at thescripts/root in documentation and examples; reference namespaced helper paths only for internal maintenance documentation.
When detailed dynamic plugin guides exist, keep Rust native plugin examples, Python worker plugin examples, andgrpc-v1protocol details on separate pages.
Dynamic plugin manifests in documentation and examples should usecompat.relay = ">=0.5,<1.0"unless deliberately narrower.
Render images, diagrams, tables, and other visual content at representative page widths, ensuring legibility and complete access without clipping; use responsive scaling, reflow, or overflow as appropriate and scope visual styling narrowly.
Dynamic plugin entry pages should link to native, worker, Rust example, Python example, and protocol pages when those pages exist.
Images, diagrams, tables, and custom visual content must remain legible and fully accessible at representative desktop and narrow page widths.
Release-policy documentation must point to GitHub Releases as the only release-history source of truth.
Runjust docswhen the documentation site changes; retain./scripts/build-docs.sh htmlas the compatibility wrapper.
Files:
docs/about-nemo-relay/release-notes/index.mdxintegrations/coding-agents/README.mddocs/nemo-relay-cli/basic-usage.mdx
**/*.{md,mdx,py,go,js,ts}
📄 CodeRabbit inference engine (.agents/skills/maintain-observability/SKILL.md)
Examples and documentation must use each exporter's documented flush/deregister order before shutdown.
Files:
docs/about-nemo-relay/release-notes/index.mdxintegrations/coding-agents/README.mddocs/nemo-relay-cli/basic-usage.mdx
docs/**/*.{md,mdx}
📄 CodeRabbit inference engine (CONTRIBUTING.md)
Update relevant reference documentation when public behavior or APIs change.
Files:
docs/about-nemo-relay/release-notes/index.mdxdocs/nemo-relay-cli/basic-usage.mdx
**/*.{rs,py,go,js,jsx,ts,tsx,c,h,html,md,mdx,toml}
📄 CodeRabbit inference engine (CONTRIBUTING.md)
Include the appropriate SPDX copyright and Apache-2.0 license header in every source file.
Files:
docs/about-nemo-relay/release-notes/index.mdxcrates/cli/src/agents/claude/launch.rscrates/cli/src/agents/codex/launch.rscrates/cli/src/hooks/delivery.rsintegrations/coding-agents/README.mdcrates/cli/src/agents/mod.rscrates/cli/src/hooks/mod.rscrates/cli/src/hooks/types.rscrates/cli/tests/cli_tests.rsdocs/nemo-relay-cli/basic-usage.mdxcrates/cli/src/agents/hermes/trust.rscrates/cli/tests/coverage/agents/plugin_install_tests.rscrates/cli/src/commands/hook_forward.rscrates/cli/tests/coverage/agents/hermes_tests.rscrates/cli/tests/coverage/shared/installer_tests.rscrates/cli/src/hooks/encoding.rscrates/cli/src/agents/hermes/config.rscrates/cli/src/agents/hermes/integration.rscrates/cli/tests/coverage/agents/plugin_host_tests.rscrates/cli/src/agents/codex/host.rs
**/*.{md,mdx,rst}
📄 CodeRabbit inference engine (.agents/skills/review-doc-style/assets/nvidia-style-technical-docs.md)
**/*.{md,mdx,rst}: Use title case consistently for technical documentation headings and table headers; avoid quotation marks, ampersands, and exclamation marks in headings, while preserving official product, event, research, and whitepaper title case.
Format code elements, commands, parameters, package names, expressions, directories, file names, and paths in monospace; represent path placeholders with angle brackets inside monospace.
Format UI buttons, menus, fields, and labels in bold, and separate consecutive UI navigation labels with>.
Use quotation marks for error messages and strings when appropriate, italics for newly introduced terms and publication titles, and plain text for keyboard shortcuts.
Represent GitHub repositories with owner/repository link text, such as[NVIDIA/NeMo](link), rather than generic repository wording.
Introduce every code block with a complete sentence; do not let a code block complete or interrupt the grammar of surrounding prose; use syntax highlighting when supported.
Keep inline method, function, and class references consistent with nearby documentation; omit empty parentheses in prose when no call is shown.
Use descriptive link text matching the destination title when possible; avoid raw URLs, generic anchors, long-sentence links, and unnecessary links that distract from procedures.
Ensure lists have a complete lead-in sentence, more than one item, no more than two levels, parallel construction, one idea or action per item, and appropriate punctuation; use bullets for unordered items and numbers for ordered tasks.
Format definition lists with a bold term followed by a complete, parallel, punctuated definition.
Use tables for reference information, decision support, compatibility matrices, and comparable choices; flag one-row tables, missing captions or lead-ins, sentence-case headers where title case is expected, unexplained empty cells, and code or links that would be clearer as prose.
Write procedure steps as imperative ...
Files:
docs/about-nemo-relay/release-notes/index.mdxintegrations/coding-agents/README.mddocs/nemo-relay-cli/basic-usage.mdx
{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/about-nemo-relay/release-notes/index.mdxdocs/nemo-relay-cli/basic-usage.mdx
**/*.rs
📄 CodeRabbit inference engine (.agents/skills/prepare-pr/SKILL.md)
**/*.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 all FFI work since it is Rust work
Runjust test-rustto validate FFI changes
Runcargo clippy --workspace --all-targets -- -D warningsto enforce strict linting on FFI workWhen Rust files changed as part of Go work, also run
cargo fmt --all,just test-rust, andcargo clippy --workspace --all-targets -- -D warnings
**/*.rs: Runcargo fmt --allwhen Rust files are changed as part of Node work
Runcargo clippy --workspace --all-targets -- -D warningswhen Rust files are changed as part of Node work
Runjust test-rustwhen Rust files are changed as part of Node work
**/*.rs: If any Rust code changed, always runjust test-rust.
If any Rust code changed, also runcargo fmt --all.
If any Rust code changed, also runcargo clippy --workspace --all-targets -- -D warnings.
For Rust changes headed for review, runcargo fmt --allandcargo clippy --workspace --all-targets -- -D warningseven if relying on pre-commit.
**/*.rs: Format Rust code with rustfmt defaults usingcargo fmt.
Runcargo clippy -- -D warnings; all Rust warnings must be treated as errors.
Use Rustsnake_casenaming conventions.
Files:
crates/cli/src/agents/claude/launch.rscrates/cli/src/agents/codex/launch.rscrates/cli/src/hooks/delivery.rscrates/cli/src/agents/mod.rscrates/cli/src/hooks/mod.rscrates/cli/src/hooks/types.rscrates/cli/tests/cli_tests.rscrates/cli/src/agents/hermes/trust.rscrates/cli/tests/coverage/agents/plugin_install_tests.rscrates/cli/src/commands/hook_forward.rscrates/cli/tests/coverage/agents/hermes_tests.rscrates/cli/tests/coverage/shared/installer_tests.rscrates/cli/src/hooks/encoding.rscrates/cli/src/agents/hermes/config.rscrates/cli/src/agents/hermes/integration.rscrates/cli/tests/coverage/agents/plugin_host_tests.rscrates/cli/src/agents/codex/host.rs
{crates/**/src/**/*.rs,python/**/*.py}
📄 CodeRabbit inference engine (.agents/skills/maintain-dynamic-plugins/SKILL.md)
Do not add tests under
src; Rust tests belong in cratetests/trees, and Python SDK tests belong underpython/tests.
Files:
crates/cli/src/agents/claude/launch.rscrates/cli/src/agents/codex/launch.rscrates/cli/src/hooks/delivery.rscrates/cli/src/agents/mod.rscrates/cli/src/hooks/mod.rscrates/cli/src/hooks/types.rscrates/cli/src/agents/hermes/trust.rscrates/cli/src/commands/hook_forward.rscrates/cli/src/hooks/encoding.rscrates/cli/src/agents/hermes/config.rscrates/cli/src/agents/hermes/integration.rscrates/cli/src/agents/codex/host.rs
**/*.{rs,py,go,js,ts}
📄 CodeRabbit inference engine (.agents/skills/validate-change/SKILL.md)
If a language surface changed, always run that language's test target even when Rust core did not change.
**/*.{rs,py,go,js,ts}: When observability configuration or lifecycle is exposed, keep FFI and Python, Go, and Node.js binding-native config objects and subscriber/exporter methods aligned in logical knobs and semantics.
Require every OpenTelemetry endpoint to have a type and nonblank destination; resolveheader_envvalues at activation and reject missing, blank, or duplicate headers.
Concatenate layered ATOF sink, ATIF storage, and OpenTelemetry endpoint lists with higher-precedence entries first.
Preserve correct handling of mark events, start/end events, orphan cases, and span or trajectory fields derived from intended event data.
Run affected Rust tests andjust test-rustwhen event fields change; runjust test-python,just test-go, andjust test-nodewhen binding-native configuration or lifecycle changes.
Files:
crates/cli/src/agents/claude/launch.rscrates/cli/src/agents/codex/launch.rscrates/cli/src/hooks/delivery.rscrates/cli/src/agents/mod.rscrates/cli/src/hooks/mod.rscrates/cli/src/hooks/types.rscrates/cli/tests/cli_tests.rscrates/cli/src/agents/hermes/trust.rscrates/cli/tests/coverage/agents/plugin_install_tests.rscrates/cli/src/commands/hook_forward.rscrates/cli/tests/coverage/agents/hermes_tests.rscrates/cli/tests/coverage/shared/installer_tests.rscrates/cli/src/hooks/encoding.rscrates/cli/src/agents/hermes/config.rscrates/cli/src/agents/hermes/integration.rscrates/cli/tests/coverage/agents/plugin_host_tests.rscrates/cli/src/agents/codex/host.rs
**/*.{rs,py,js,ts,tsx,go,java,kt,swift}
📄 CodeRabbit inference engine (.agents/skills/add-middleware/SKILL.md)
Add tests covering registration and duplicate names, deregistration and missing names, priority ordering, callback failure policy, scope-local inheritance and cleanup, event payload semantics, immutable mark and scope fields, and parity across affected bindings.
Files:
crates/cli/src/agents/claude/launch.rscrates/cli/src/agents/codex/launch.rscrates/cli/src/hooks/delivery.rscrates/cli/src/agents/mod.rscrates/cli/src/hooks/mod.rscrates/cli/src/hooks/types.rscrates/cli/tests/cli_tests.rscrates/cli/src/agents/hermes/trust.rscrates/cli/tests/coverage/agents/plugin_install_tests.rscrates/cli/src/commands/hook_forward.rscrates/cli/tests/coverage/agents/hermes_tests.rscrates/cli/tests/coverage/shared/installer_tests.rscrates/cli/src/hooks/encoding.rscrates/cli/src/agents/hermes/config.rscrates/cli/src/agents/hermes/integration.rscrates/cli/tests/coverage/agents/plugin_host_tests.rscrates/cli/src/agents/codex/host.rs
**/*.{rs,py,js,jsx,ts,tsx,go,c,h,cc,cpp,md,toml,yml,yaml,sh}
📄 CodeRabbit inference engine (AGENTS.md)
Keep SPDX headers on source, documentation, scripts, and configuration files; the project is Apache-2.0.
Files:
crates/cli/src/agents/claude/launch.rscrates/cli/src/agents/codex/launch.rscrates/cli/src/hooks/delivery.rsintegrations/coding-agents/README.mdcrates/cli/src/agents/mod.rscrates/cli/src/hooks/mod.rscrates/cli/src/hooks/types.rscrates/cli/tests/cli_tests.rscrates/cli/src/agents/hermes/trust.rscrates/cli/tests/coverage/agents/plugin_install_tests.rscrates/cli/src/commands/hook_forward.rscrates/cli/tests/coverage/agents/hermes_tests.rscrates/cli/tests/coverage/shared/installer_tests.rscrates/cli/src/hooks/encoding.rscrates/cli/src/agents/hermes/config.rscrates/cli/src/agents/hermes/integration.rscrates/cli/tests/coverage/agents/plugin_host_tests.rscrates/cli/src/agents/codex/host.rs
**/*.{rs,py}
📄 CodeRabbit inference engine (AGENTS.md)
Use
snake_casenaming in Rust and Python.
Files:
crates/cli/src/agents/claude/launch.rscrates/cli/src/agents/codex/launch.rscrates/cli/src/hooks/delivery.rscrates/cli/src/agents/mod.rscrates/cli/src/hooks/mod.rscrates/cli/src/hooks/types.rscrates/cli/tests/cli_tests.rscrates/cli/src/agents/hermes/trust.rscrates/cli/tests/coverage/agents/plugin_install_tests.rscrates/cli/src/commands/hook_forward.rscrates/cli/tests/coverage/agents/hermes_tests.rscrates/cli/tests/coverage/shared/installer_tests.rscrates/cli/src/hooks/encoding.rscrates/cli/src/agents/hermes/config.rscrates/cli/src/agents/hermes/integration.rscrates/cli/tests/coverage/agents/plugin_host_tests.rscrates/cli/src/agents/codex/host.rs
crates/**/*.rs
📄 CodeRabbit inference engine (AGENTS.md)
crates/**/*.rs: UseJson = serde_json::Valuein Rust-facing runtime APIs where existing code expects JSON payloads.
Treat Rust as the source of truth for runtime behavior; binding APIs should mirror Rust semantics unless a language-specific wrapper intentionally improves ergonomics.
Files:
crates/cli/src/agents/claude/launch.rscrates/cli/src/agents/codex/launch.rscrates/cli/src/hooks/delivery.rscrates/cli/src/agents/mod.rscrates/cli/src/hooks/mod.rscrates/cli/src/hooks/types.rscrates/cli/tests/cli_tests.rscrates/cli/src/agents/hermes/trust.rscrates/cli/tests/coverage/agents/plugin_install_tests.rscrates/cli/src/commands/hook_forward.rscrates/cli/tests/coverage/agents/hermes_tests.rscrates/cli/tests/coverage/shared/installer_tests.rscrates/cli/src/hooks/encoding.rscrates/cli/src/agents/hermes/config.rscrates/cli/src/agents/hermes/integration.rscrates/cli/tests/coverage/agents/plugin_host_tests.rscrates/cli/src/agents/codex/host.rs
**/*.{rs,py,js,mjs,ts,tsx}
📄 CodeRabbit inference engine (AGENTS.md)
Preserve the existing Tokio-based asynchronous model and callback/future lifetimes; do not unexpectedly block or hide async work in bindings.
Files:
crates/cli/src/agents/claude/launch.rscrates/cli/src/agents/codex/launch.rscrates/cli/src/hooks/delivery.rscrates/cli/src/agents/mod.rscrates/cli/src/hooks/mod.rscrates/cli/src/hooks/types.rscrates/cli/tests/cli_tests.rscrates/cli/src/agents/hermes/trust.rscrates/cli/tests/coverage/agents/plugin_install_tests.rscrates/cli/src/commands/hook_forward.rscrates/cli/tests/coverage/agents/hermes_tests.rscrates/cli/tests/coverage/shared/installer_tests.rscrates/cli/src/hooks/encoding.rscrates/cli/src/agents/hermes/config.rscrates/cli/src/agents/hermes/integration.rscrates/cli/tests/coverage/agents/plugin_host_tests.rscrates/cli/src/agents/codex/host.rs
**/*.{rs,py,go,js,jsx,ts,tsx,c,h}
📄 CodeRabbit inference engine (CONTRIBUTING.md)
**/*.{rs,py,go,js,jsx,ts,tsx,c,h}: Run tests for every language affected by a change; changes to the core Rust crate require tests across all bindings.
UseSONAR_IGNORE_START/SONAR_IGNORE_ENDonly for documented false positives, keep ignored blocks minimal, explain them with a comment, and obtain reviewer sign-off.
Preserve the layered architecture in which Rust provides the core runtime and C FFI, PyO3, and NAPI provide bindings that mirror the full API surface.
Files:
crates/cli/src/agents/claude/launch.rscrates/cli/src/agents/codex/launch.rscrates/cli/src/hooks/delivery.rscrates/cli/src/agents/mod.rscrates/cli/src/hooks/mod.rscrates/cli/src/hooks/types.rscrates/cli/tests/cli_tests.rscrates/cli/src/agents/hermes/trust.rscrates/cli/tests/coverage/agents/plugin_install_tests.rscrates/cli/src/commands/hook_forward.rscrates/cli/tests/coverage/agents/hermes_tests.rscrates/cli/tests/coverage/shared/installer_tests.rscrates/cli/src/hooks/encoding.rscrates/cli/src/agents/hermes/config.rscrates/cli/src/agents/hermes/integration.rscrates/cli/tests/coverage/agents/plugin_host_tests.rscrates/cli/src/agents/codex/host.rs
**/*.{yaml,yml,toml,json}
📄 CodeRabbit inference engine (CONTRIBUTING.md)
Maintain valid YAML, TOML, and JSON files; pre-commit hooks validate these formats.
Files:
integrations/coding-agents/codex/hooks/hooks.jsonintegrations/coding-agents/claude-code/hooks/hooks.json
**/*.{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:
integrations/coding-agents/README.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:
integrations/coding-agents/README.md
**/*.{md,rst,txt}
📄 CodeRabbit inference engine (.agents/skills/review-doc-style/assets/nvidia-style-guide.md)
Spell
NVIDIAin all caps. Do not useNvidia,nvidia, orNV.
Files:
integrations/coding-agents/README.md
**/*.{md,rst}
📄 CodeRabbit inference engine (.agents/skills/review-doc-style/assets/nvidia-style-guide.md)
**/*.{md,rst}: 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 docs.
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 docs unless the source, platform, or legal guidance explicitly requires them.
Files:
integrations/coding-agents/README.md
**/README.md
📄 CodeRabbit inference engine (CONTRIBUTING.md)
Update the relevant crate or package README when that package surface changes.
Update relevant package or crate
README.mdfiles when examples or binding guidance changes.
Files:
integrations/coding-agents/README.md
**/{README.md,docs/index.md}
📄 CodeRabbit inference engine (.agents/skills/contribute-docs/SKILL.md)
Update
README.mdordocs/index.mdwhen documentation entry points change.
Files:
integrations/coding-agents/README.md
**/{test,tests}/**/*
📄 CodeRabbit inference engine (CONTRIBUTING.md)
When adding functionality, include tests in the appropriate test files for each affected language binding.
Files:
crates/cli/tests/cli_tests.rscrates/cli/tests/coverage/agents/plugin_install_tests.rscrates/cli/tests/coverage/agents/hermes_tests.rscrates/cli/tests/coverage/shared/installer_tests.rscrates/cli/tests/coverage/agents/plugin_host_tests.rs
{crates/**/tests/**,python/tests/**,go/nemo_relay/**/*_test.go}
⚙️ CodeRabbit configuration file
{crates/**/tests/**,python/tests/**,go/nemo_relay/**/*_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/cli_tests.rscrates/cli/tests/coverage/agents/plugin_install_tests.rscrates/cli/tests/coverage/agents/hermes_tests.rscrates/cli/tests/coverage/shared/installer_tests.rscrates/cli/tests/coverage/agents/plugin_host_tests.rs
🧠 Learnings (1)
📚 Learning: 2026-08-03T19:55:03.931Z
Learnt from: afourniernv
Repo: NVIDIA/NeMo-Relay PR: 558
File: crates/pii-redaction/src/rampart/mod.rs:265-274
Timestamp: 2026-08-03T19:55:03.931Z
Learning: In NeMo Relay first-party plugin registration helpers, treat the documented duplicate-registration `PluginError::RegistrationFailed` result from `register_plugin` as success when registration is intended to be idempotent. Do not locally reclassify this as `PluginError::Conflict`; changing the classification requires a core-wide review of the public API and FFI behavior.
Applied to files:
crates/cli/src/agents/claude/launch.rscrates/cli/src/agents/codex/launch.rscrates/cli/src/hooks/delivery.rscrates/cli/src/agents/mod.rscrates/cli/src/hooks/mod.rscrates/cli/src/hooks/types.rscrates/cli/tests/cli_tests.rscrates/cli/src/agents/hermes/trust.rscrates/cli/tests/coverage/agents/plugin_install_tests.rscrates/cli/src/commands/hook_forward.rscrates/cli/tests/coverage/agents/hermes_tests.rscrates/cli/tests/coverage/shared/installer_tests.rscrates/cli/src/hooks/encoding.rscrates/cli/src/agents/hermes/config.rscrates/cli/src/agents/hermes/integration.rscrates/cli/tests/coverage/agents/plugin_host_tests.rscrates/cli/src/agents/codex/host.rs
🔇 Additional comments (16)
docs/about-nemo-relay/release-notes/index.mdx (1)
35-38: LGTM!docs/nemo-relay-cli/basic-usage.mdx (2)
524-529: LGTM!Also applies to: 541-544
519-523: 🔒 Security & PrivacyDefine the
--fail-openguardrail policy.
--fail-openreturns success for gateway, identity, transport, response-read, and ordinary HTTP failures.handle_hook_forward_statusreturnsCliError::GuardrailRejectedbefore applying that policy, so guardrail rejection always produces a nonzero exit. Document this exception, or apply--fail-opento guardrail responses if lifecycle hooks must continue.integrations/coding-agents/README.md (1)
265-274: LGTM!Also applies to: 289-290
integrations/coding-agents/claude-code/hooks/hooks.json (1)
8-8: LGTM!Also applies to: 19-19, 30-30, 42-42, 54-54, 66-66, 78-78, 89-89, 100-100, 111-111, 122-122, 133-133, 144-144, 155-155
integrations/coding-agents/codex/hooks/hooks.json (1)
9-9: LGTM!Also applies to: 20-20, 32-32, 44-44, 56-56, 67-67, 78-78, 89-89, 100-100, 111-111
crates/cli/src/commands/hook_forward.rs (1)
48-52: 📐 Maintainability & Code QualityRun the Required Rust Validation Before Merge.
The review context has no result for the required Rust checks. Include these changed sites in the validation run:
crates/cli/src/commands/hook_forward.rs#L48-L52: Validate CLI policy parsing and formatting.crates/cli/src/hooks/types.rs#L19-L36: Validate policy resolution and linting.crates/cli/src/hooks/delivery.rs#L32-L32: Validate delivery error-policy behavior.crates/cli/src/agents/hermes/config.rs#L35-L45: Validate generated Hermes configuration.crates/cli/src/agents/hermes/integration.rs#L391-L421: Validate installation, trust, and rollback behavior.crates/cli/tests/cli_tests.rs#L1323-L1375: Execute CLI policy tests.crates/cli/tests/coverage/agents/hermes_tests.rs#L405-L440: Execute Hermes migration tests.crates/cli/tests/coverage/agents/plugin_host_tests.rs#L2889-L2904: Execute Windows command encoding tests.crates/cli/tests/coverage/agents/plugin_install_tests.rs#L1423-L1430: Execute plugin installation tests.Run
cargo fmt --all,cargo clippy --workspace --all-targets -- -D warnings,just test-rust, anduv run pre-commit run --all-files.As per coding guidelines, “If any Rust code changed, always run
just test-rust,” and runcargo fmt --allandcargo clippy --workspace --all-targets -- -D warnings.Source: Coding guidelines
crates/cli/src/hooks/encoding.rs (2)
151-188: 📐 Maintainability & Code QualityRun the Required Rust Validation.
Before merge, provide successful results for
cargo fmt --all,cargo clippy --workspace --all-targets -- -D warnings,just test-rust, anduv run pre-commit run --all-files.As per coding guidelines, "If any Rust code changed, always run
just test-rust" and runcargo fmt --allpluscargo clippy --workspace --all-targets -- -D warnings.Source: Coding guidelines
15-117: LGTM!Also applies to: 393-400, 412-424, 445-448
crates/cli/src/hooks/mod.rs (1)
27-38: LGTM!crates/cli/src/agents/mod.rs (1)
203-209: LGTM!crates/cli/src/agents/claude/launch.rs (1)
10-10: LGTM!Also applies to: 64-72
crates/cli/src/agents/codex/launch.rs (1)
11-11: LGTM!Also applies to: 29-35
crates/cli/src/agents/codex/host.rs (1)
17-17: LGTM!Also applies to: 113-129, 261-312, 324-341, 545-555, 576-585, 623-628, 686-704, 1659-1659, 1684-1685, 1699-1700
crates/cli/tests/coverage/shared/installer_tests.rs (1)
95-95: LGTM!Also applies to: 332-422, 449-480, 556-595
crates/cli/src/agents/hermes/trust.rs (1)
89-103: 🔒 Security & PrivacyReachability path
● Entry crates/cli/src/agents/hermes/integration.rs:401 trusted_hooks │ ▼ ● Sink crates/cli/src/agents/hermes/trust.rsConfirm Hermes approval matching for mismatched policies.
verify_trustrequires one correct(event, command)pair but permits additional recognized commands without binding them to the event. Confirm whether Hermes resolves approvals by both fields. If it does, rejectcommand != commands.for_event(event)and add a regression test for an extra--fail-openapproval onpre_tool_call.
Signed-off-by: Will Killian <wkillian@nvidia.com>
mnajafian-nv
left a comment
There was a problem hiding this comment.
conditional approval after reviewing the inline comments
Signed-off-by: Will Killian <wkillian@nvidia.com>
|
/merge |
Overview
Make generated coding-agent enforcement hooks fail closed while keeping observational and after-the-fact hooks explicitly fail open.
Details
hook-forward --fail-openand--fail-closedmodes while preserving the existing unqualified command andNEMO_RELAY_FAIL_CLOSED=1behavior.PreToolUseandPermissionRequestplus Hermespre_tool_call; explicitly fail open for all other generated events.Validation:
uv run pre-commit run --all-filesjust docscargo fmt --all -- --checkcargo clippy --workspace --all-targets -- -D warningsjust test-rust, including all 100 CLI integration tests/Users/wkillian/.nemo-relay/plugins.tomland violated an existing empty-diagnostics test assumption.This change does not introduce a breaking API change. Existing unqualified manual
hook-forwardcommands retain their current compatibility behavior.Where should the reviewer start?
Start with
crates/cli/src/hooks/encoding.rs, which defines the per-event policy mapping and generates the paired commands. Then reviewcrates/cli/src/agents/codex/host.rsandcrates/cli/src/agents/hermes/integration.rsfor trust and legacy migration behavior.Related Issues: (use one of the action keywords Closes / Fixes / Resolves / Relates to)
Summary by CodeRabbit
New Features
Bug Fixes
Documentation