Skip to content

test(e2e): clarify Brev bootstrap boundaries - #7110

Merged
jyaunches merged 11 commits into
mainfrom
codex/clarify-brev-e2e-naming
Jul 20, 2026
Merged

test(e2e): clarify Brev bootstrap boundaries#7110
jyaunches merged 11 commits into
mainfrom
codex/clarify-brev-e2e-naming

Conversation

@jyaunches

@jyaunches jyaunches commented Jul 17, 2026

Copy link
Copy Markdown
Contributor

Summary

Clarifies which E2E paths exercise a published Brev Launchable and which paths provision a generic Brev instance, bootstrap NemoClaw from source, and test that source overlay. This removes misleading Launchable terminology without changing image selection, deployment, authentication, or test behavior.

Related Issue

Related to #6943

Changes

  • Rename the local install simulation and its workflow target/artifacts from launchable-smoke to bootstrap-install-smoke.
  • Remove the unused use_launchable input from the reusable branch-validation workflow and its nightly/regression callers.
  • Update E2E comments, logs, internal identifiers, and source-shape guards to describe the actual generic-Brev-VM plus source-overlay flow.
  • Keep scripts/brev-launchable-ci-cpu.sh unchanged because its exact path and content are part of the installer trust boundary.

Type of Change

  • Code change (feature, bug fix, or refactor)
  • Code change with doc updates
  • Doc only (prose changes, no code sample modifications)
  • Doc only (includes code sample changes)

Quality Gates

  • Tests added or updated for changed behavior
  • Existing tests cover changed behavior — justification:
  • Tests not applicable — justification:
  • Docs updated for user-facing behavior changes
  • Docs not applicable — justification: required docs review confirmed the change only affects internal CI/test terminology and a dead workflow input; supported Brev Launchable documentation remains accurate.
  • Sensitive paths changed (security, policy, credentials, preflight, onboarding, inference, runner, sandbox, or messaging)
  • Sensitive-path review completed or maintainer-approved waiver recorded — reviewer/approval link/justification: reviewed the runner/workflow diff against the installer trust boundary; the trusted bootstrap script remains unchanged, no credential or image-selection behavior changes, and focused contract tests pass.
  • Non-success, skipped, or missing CI check accepted by maintainer — check name, approval link, and follow-up issue:

Verification

  • PR description includes a Signed-off-by: line and every commit appears as Verified in GitHub
  • Normal pre-commit, commit-msg, and pre-push hooks passed, or npm run check:diff passed when hooks were skipped or unavailable
  • Targeted behavior tests pass for the current change set, or tests are marked not applicable above — npx vitest run --project integration test/brev-launchable-ci-cpu-checksum.test.ts test/brev-nightly-workflow.test.ts test/dependency-pins-check.test.ts test/installer-hash-check.test.ts test/openshell-channel-workflow.test.ts test/pr-workflow-contract.test.ts test/runner.test.ts (184 passed after merging current main); npx vitest run --project e2e-support test/e2e/support/prepare-e2e-workflow-boundary.test.ts (4 passed); npx vitest run --project e2e-support test/e2e/support/e2e-live-target-gating.test.ts (5 passed); npx vitest run --project integration test/e2e-mock-parity.test.ts test/pr-e2e-gate.test.ts (36 passed); npm run test:projects:check passed (1698 candidate files across 8 projects). Current selector-bridge regression: npx vitest run --project e2e-support test/e2e/support/workflow-plan.test.ts (20 passed); adjacent workflow/planner consumers (70 passed).
  • Applicable broad gate passed — npm test for broad runtime/test-harness changes; npm run check for repo-wide validation/coverage changes — attempted; the local run encountered unrelated widespread timeouts and missing oclif development plugins, so this remains unchecked pending GitHub CI.
  • Quality Gates section completed with required justifications or waivers
  • No secrets, API keys, or credentials committed
  • npm run docs builds without warnings (doc changes only)
  • Doc pages follow the style guide (doc changes only)
  • New doc pages include SPDX header and frontmatter (new pages only)

Signed-off-by: Julie Yaunches jyaunches@nvidia.com

Summary by CodeRabbit

  • New Features

    • Added/expanded E2E live smoke coverage for installing from source using the bootstrap process (bootstrap-install-smoke), including updated PR reporting readiness.
  • Bug Fixes

    • Nightly, regression, and branch-validation workflows now validate builds from source on a generic VM.
    • Removed use_launchable from E2E workflow inputs and updated readiness/sentinel handling to match the bootstrap path.
  • Tests

    • Updated E2E suite orchestration, fixtures, and mock parity mappings for bootstrap-install-smoke.
    • Added live E2E target gating coverage for the legacy bootstrap install path.

@jyaunches jyaunches self-assigned this Jul 17, 2026
@copy-pr-bot

copy-pr-bot Bot commented Jul 17, 2026

Copy link
Copy Markdown

Auto-sync is disabled for draft pull requests in this repository. Workflows must be run manually.

Contributors can view more details about this message here.

@coderabbitai

coderabbitai Bot commented Jul 17, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

Note

Reviews paused

It looks like this branch is under active development. To avoid overwhelming you with review comments due to an influx of new commits, CodeRabbit has automatically paused this review. You can configure this behavior by changing the reviews.auto_review.auto_pause_after_reviewed_commits setting.

Use the following commands to manage reviews:

  • @coderabbitai resume to resume automatic reviews.
  • @coderabbitai review to trigger a single review.

Use the checkboxes below for quick actions:

  • ▶️ Resume reviews
  • 🔍 Trigger review
📝 Walkthrough

Walkthrough

The E2E workflows and tests now use Brev bootstrap installation and source validation instead of published Launchable paths. Launchable inputs, environment wiring, job names, artifacts, readiness checks, and related validation references were replaced with bootstrap-specific equivalents.

Changes

Brev bootstrap E2E validation

Layer / File(s) Summary
Workflow bootstrap contract
.github/workflows/brev-nightly-e2e.yaml, .github/workflows/e2e-branch-validation.yaml, .github/workflows/regression-e2e.yaml, test/brev-nightly-workflow.test.ts
Source-validation workflows remove use_launchable controls and assert that stale launchable inputs and paths remain absent.
Bootstrap host orchestration
test/e2e/brev-e2e.test.ts, vitest.config.ts
Brev host provisioning, readiness polling, source staging, and non-deploy orchestration use bootstrap scripts and sentinels.
Bootstrap install smoke coverage
.github/workflows/e2e.yaml, test/e2e/live/*.test.ts, test/e2e/fixtures/inference-adapter.ts
The smoke job and live tests use bootstrap-specific sandbox, clone, artifact, cleanup, sentinel, and session identifiers.
Bootstrap validation wiring
test/e2e/mock-parity.json, test/e2e/support/*, tools/e2e/prepare-e2e-workflow-boundary.mts
Mock parity, workflow-boundary validation, prepare-e2e rules, and target gating recognize bootstrap-install-smoke.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Sequence Diagram(s)

sequenceDiagram
  participant Workflow as e2e-branch-validation
  participant Brev as Generic Brev VM
  participant Bootstrap as Brev bootstrap script
  participant Smoke as bootstrap-install-smoke
  Workflow->>Brev: provision generic instance
  Brev->>Bootstrap: execute bootstrap installation
  Bootstrap-->>Smoke: create BOOTSTRAP_SENTINEL
  Smoke->>Brev: validate installation and source state
Loading

Suggested reviewers: ericksoa, cv

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Docstring Coverage ⚠️ Warning Docstring coverage is 0.00% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (4 passed)
Check name Status Explanation
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly reflects the PR’s main focus on clarifying Brev bootstrap/E2E boundaries.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch codex/clarify-brev-e2e-naming

Comment @coderabbitai help to get the list of available commands.

@github-code-quality

github-code-quality Bot commented Jul 17, 2026

Copy link
Copy Markdown
Contributor

Code Coverage Overview

Languages: TypeScript

TypeScript / code-coverage/plugin

The overall coverage in commit c0aed78 in the codex/clarify-brev-e... branch remains at 96%, unchanged from commit 70d7d28 in the main branch.

TypeScript / code-coverage/cli

The overall coverage in commit c0aed78 in the codex/clarify-brev-e... branch remains at 80%, unchanged from commit 70d7d28 in the main branch.

Show a code coverage summary of the most impacted files.
File main 70d7d28 codex/clarify-brev-e... c0aed78 +/-
src/lib/platform.ts 89% 84% -5%
src/lib/actions...all/run-plan.ts 84% 84% 0%
src/lib/messagi...nnels/policy.ts 100% 100% 0%
src/lib/sandbox...rce-identity.ts 91% 91% 0%
src/lib/securit...ntial-filter.ts 93% 93% 0%
src/lib/trace.ts 94% 94% 0%

Updated July 20, 2026 18:54 UTC

@github-actions

github-actions Bot commented Jul 17, 2026

Copy link
Copy Markdown
Contributor

PR Review Advisor — Blocking findings reported

Advisor assessment: Blockers require maintainer review
Next action: Review the blockers below.
Findings: 1 blocker · 0 warnings · 0 suggestions

Model lanes

  • GPT-5.6 Terra (primary): Completed · high confidence · 1 blocker · 0 warnings · 0 suggestions
  • Nemotron 3 Ultra (second opinion): Failed after a partial review · low confidence · 1 blocker · 2 warnings · 0 suggestions

Nemotron output stays in workflow artifacts and does not change the assessment above.

E2E guidance

Advisory only. E2E / PR Gate selects and runs jobs independently.

Recommended E2E: cloud-onboard, credential-sanitization, security-posture, inference-routing, launchable-smoke, network-policy

Blockers

PRA-1 Blocker — Run the renamed job for the legacy trusted-controller selector

  • Location: .github/workflows/e2e.yaml:3587
  • Category: correctness
  • Problem: The planner maps a trusted-controller `launchable-smoke` selector to `bootstrap-install-smoke` when an expected SHA is present, but this job's `if` condition still examines raw `inputs.jobs` and `inputs.targets` only for `bootstrap-install-smoke`. Consequently, the compatibility invocation produces a plan for the renamed target while GitHub skips the job that executes it.
  • Impact: A PR-controller dispatch still using the trusted-main legacy job ID silently omits the bootstrap-install smoke validation during the rename transition.
  • Fix: Normalize the legacy selector at the workflow dispatch/job-gating boundary as well, or make this job's selector condition recognize the legacy ID only within the same trusted expected-SHA transition boundary; retain rejection outside that boundary.
  • Verification: Inspect the workflow with `inputs.jobs=launchable-smoke` and a valid `inputs.checkout_sha`: the planner selects `bootstrap-install-smoke`, while the current job `if` evaluates false because the raw selector lacks that string.
  • Test coverage: Add a checked-in workflow-boundary test that supplies legacy `launchable-smoke` plus a valid expected SHA and proves both the normalized plan and the bootstrap-install-smoke job-selection condition select the same execution job; also prove the legacy selector is rejected without the trusted-controller condition.
  • Evidence: tools/e2e/workflow-plan.mts maps `launchable-smoke` to `bootstrap-install-smoke` only when `NEMOCLAW_E2E_EXPECTED_SHA` is a 40-character SHA. `.github/workflows/e2e.yaml` line 3587 gates `bootstrap-install-smoke` solely on raw inputs containing `bootstrap-install-smoke`. test/e2e/support/workflow-plan.test.ts covers planner translation but no checked-in workflow contract test covers raw legacy selector dispatch to the renamed job.

Workflow run details

This automated review informs maintainers. Warnings and suggestions do not require a response. A maintainer decides whether to merge.

@wscurran wscurran added area: ci CI workflows, checks, release automation, or GitHub Actions area: e2e End-to-end tests, nightly failures, or validation infrastructure platform: brev Affects Brev hosted development environments refactor PR restructures code without intended behavior change labels Jul 17, 2026
@cv

cv commented Jul 18, 2026

Copy link
Copy Markdown
Collaborator

Deferred from v0.0.88 while this remains author-marked draft. The missing live-E2E parity registry entry has now been added directly, the branch is refreshed, 187 focused tests plus project-membership and the full diff gate pass, and fresh CI is running. No substantive code blocker remains from this pass; return it to review after the author marks it ready and required checks are green.

@jyaunches
jyaunches marked this pull request as ready for review July 20, 2026 16:16

@cjagwani cjagwani left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

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

Reviewed exact head d29875ad against current main (5b547cdf). One correctness blocker remains.

The trusted E2E controller on main intentionally includes a renamed file's previous_filename, so the current coordination plan selects launchable-smoke. The dispatched trusted-main workflow then checks out this PR head and invokes test/e2e/live/launchable-smoke.test.ts, but this head deletes that path and contains only test/e2e/live/bootstrap-install-smoke.test.ts. Authorizing the selected exact-head job would therefore fail predictably with a missing test path.

Please stage the rename compatibly so the trusted-main job inventory remains executable (or add equivalent controller-safe handling with regression coverage), and merge current main into the branch without rewriting its verified history. The refresh appears mechanically feasible, but it does not by itself resolve the old-job/new-path incompatibility. Fresh CI, CodeRabbit, and exact E2E should then run before approval.

The rest of the code/security review is clean, and this internal terminology correction does not create a new supported product surface.

@cjagwani

cjagwani commented Jul 20, 2026

Copy link
Copy Markdown
Collaborator

Update: the requested compatibility structure is now correct at exact head c18afa667b386b54d074efdca53865eeaa0a4348. The legacy path retains the implementation, the new path is a thin target-gated alias, the focused selector coverage is present, and the growth guard plus the CI retry pass.

The required repository E2E authorization was generated for base 36e646dedbbf719c6fc43547ad3fd4cfb1e8bb65, but main advanced to 70d7d287f03f82355eafccfc8084de3741069281 before that run was authorized. Please merge current main into this branch without rewriting its verified history. I will authorize the fresh exact-base plan and dismiss the old changes-requested review once that required gate passes.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Actionable comments posted: 1

🧹 Nitpick comments (1)
test/e2e/live/bootstrap-install-smoke.test.ts (1)

4-8: 📐 Maintainability & Code Quality | 🔵 Trivial

Track retirement of the legacy launchable-smoke.test.ts path.

This alias plus the still-fully-functional launchable-smoke.test.ts is an intentional staging step per the PR description, but per path instructions for test/e2e/**, a migration should eventually prove the superseded path is unreachable/removed rather than leaving both live indefinitely. Worth tracking a follow-up to delete launchable-smoke.test.ts's implementation once the trusted main-branch workflow no longer dispatches by the old filename.

As per path instructions, "Migration tests must prove the superseded path is unreachable or removed, not merely prove that the new path also works."

🤖 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 `@test/e2e/live/bootstrap-install-smoke.test.ts` around lines 4 - 8, Track the
migration in the target-specific bootstrap-install-smoke path: once the trusted
main-branch workflow stops dispatching the legacy filename, remove the
launchable-smoke.test.ts implementation and this compatibility alias, ensuring
the superseded path is unreachable rather than retaining both test entry points.

Source: Path instructions

🤖 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 `@test/e2e/live/launchable-smoke.test.ts`:
- Around line 24-28: Fix the design-rationale comment above the live test by
joining the trailing “through Vitest” fragment to the preceding sentence, so it
reads as one grammatically complete statement describing the OpenClaw agent turn
being run through Vitest.

---

Nitpick comments:
In `@test/e2e/live/bootstrap-install-smoke.test.ts`:
- Around line 4-8: Track the migration in the target-specific
bootstrap-install-smoke path: once the trusted main-branch workflow stops
dispatching the legacy filename, remove the launchable-smoke.test.ts
implementation and this compatibility alias, ensuring the superseded path is
unreachable rather than retaining both test entry points.
🪄 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: CHILL

Plan: Enterprise

Run ID: 9bbc9c56-4d12-4eba-89b9-a5ea560e9dc9

📥 Commits

Reviewing files that changed from the base of the PR and between cf409ee and f9620c7.

📒 Files selected for processing (3)
  • test/e2e/live/bootstrap-install-smoke.test.ts
  • test/e2e/live/launchable-smoke.test.ts
  • test/e2e/support/e2e-live-target-gating.test.ts
🚧 Files skipped from review as they are similar to previous changes (1)
  • test/e2e/support/e2e-live-target-gating.test.ts

Comment thread test/e2e/live/launchable-smoke.test.ts
@jyaunches

Copy link
Copy Markdown
Contributor Author

PR Review Advisor PRA-1 is addressed by the staged trusted-workflow compatibility requested in the human review:

  • Before merge, the PR gate controller and .github/workflows/e2e.yaml both execute from trusted main. That inventory selects launchable-smoke; after checkout of this PR head, the trusted job invokes test/e2e/live/launchable-smoke.test.ts, which intentionally retains the full implementation.
  • After merge, the controller and workflow both derive their inventory from the new main. The checked-in inventory now maps the changed workflow path to bootstrap-install-smoke (verified locally with focusedE2eJobsForChangedFiles), and that job invokes test/e2e/live/bootstrap-install-smoke.test.ts, whose target-gated wrapper imports the same implementation.
  • test/e2e/support/e2e-live-target-gating.test.ts proves the old trusted selector/path, the new selector/path, and the inactive-wrapper case. All 5 cases pass. The exact mock-parity gate and its 10 unit tests also pass.

There is no runtime state where the old trusted inventory dispatches the renamed head workflow. Keeping a permanent launchable-smoke selector alias in the renamed workflow would instead conflict with the exact free-standing inventory/selector contract. Please treat PRA-1 as satisfied by the compatibility staging and review that boundary explicitly.

@jyaunches
jyaunches requested a review from cjagwani July 20, 2026 17:09
@jyaunches jyaunches removed the v0.0.89 label Jul 20, 2026
@jyaunches jyaunches assigned senthilr-nv and unassigned jyaunches Jul 20, 2026
@jyaunches

Copy link
Copy Markdown
Contributor Author

PRA-1 is not actionable because it evaluates the PR-head workflow condition as though GitHub used that condition for the current PR dispatch. The PR gate dispatches .github/workflows/e2e.yaml from trusted main; GitHub parses that trusted workflow graph first, including its launchable-smoke job and legacy selector condition. actions/checkout then replaces the working tree with the PR head inside generate-matrix, so only the planner code and test sources come from this PR.

That is why the bridge belongs in the checked-out planner: before merge, the trusted graph selects launchable-smoke and the head planner maps that ID to the renamed inventory for validation. After merge, the graph and controller both select bootstrap-install-smoke, and ordinary/manual dispatch still rejects the retired ID. The focused CI-output tests prove both planner states (20 passed), while the live-target gating tests prove the trusted-main legacy path and renamed path reach the same implementation (5 passed).

The prior downstream run 29764931487 independently confirms the workflow-revision boundary: its parsed job graph contains launchable-smoke; it stopped in generate-matrix only because the old ID was rejected before this bridge. The current exact-head gate has now produced the same six-job plan and is awaiting the separate maintainer authorization to execute it. Changing the PR-head job condition cannot change the trusted workflow graph already parsed for that dispatch.

@jyaunches
jyaunches dismissed cjagwani’s stale review July 20, 2026 19:07

later comment acknowledge requested changes came in

@jyaunches
jyaunches merged commit ad26c30 into main Jul 20, 2026
73 of 76 checks passed
@jyaunches
jyaunches deleted the codex/clarify-brev-e2e-naming branch July 20, 2026 19:08
jyaunches added a commit that referenced this pull request Jul 20, 2026
<!-- markdownlint-disable MD041 -->
## Summary

Add the canonical `## v0.0.90` entry to `docs/changelog/2026-07-20.mdx`
before the release tag is planned.
The update also corrects the documented custom-image migration window so
the compatibility fallback that first ships in v0.0.90 remains available
until v0.0.91.

## Changes

- Add the v0.0.90 summary and detailed release bullets for managed-image
routing, provider-reset recovery, WhatsApp health reporting, and DGX
Station guidance.
- Keep the newest release first in the shared dated changelog and use
root-absolute links to the canonical OpenClaw routes.
- Correct `docs/reference/commands.mdx` to state that the legacy image
route selector remains supported through v0.0.90 and is removed in
v0.0.91.
- Release source summary:
- [#7264](#7264) ->
`docs/resources/prompt-assets/dgx-station.md`,
`docs/changelog/2026-07-20.mdx`: Record the versioned Station installer
path, Nemotron 3 Ultra 550B default, and explicit DeepSeek override.
- [#7261](#7261) ->
`docs/get-started/dgx-station-preparation.mdx`,
`docs/manage-sandboxes/recover-rebuild-sandboxes.mdx`,
`docs/changelog/2026-07-20.mdx`: Include the OpenIB, legacy recovery,
and Additional Setup documentation follow-ups.
- [#7232](#7232) ->
`docs/changelog/2026-07-20.mdx`: Document provider-reset recovery for
wrapped OpenShell attachment diagnostics.
- [#7189](#7189) ->
`docs/reference/commands.mdx`, `docs/changelog/2026-07-20.mdx`: Document
the managed-image route-selector rename and correct its one-release
migration window.
- [#7015](#7015) ->
`docs/changelog/2026-07-20.mdx`: Document corrected OpenClaw WhatsApp
health reporting.
- No additional user-facing page update is needed for
[#7193](#7193),
[#7110](#7110),
[#6783](#6783), or
[#7263](#7263) because they
change contributor governance, internal CI or release automation, or
editorial style without changing supported user behavior.
- [#7242](#7242) and
[#7225](#7225) are already
ancestors of and documented in v0.0.89, so this entry does not duplicate
them despite their stale v0.0.90 labels.

## Type of Change

- [ ] Code change (feature, bug fix, or refactor)
- [ ] Code change with doc updates
- [x] Doc only (prose changes, no code sample modifications)
- [ ] Doc only (includes code sample changes)

## Quality Gates

- [ ] Tests added or updated for changed behavior
- [x] Existing tests cover changed behavior — justification:
`test/changelog-docs.test.ts` validates the dated changelog heading,
SPDX form, version order, and published links.
- [ ] Tests not applicable — justification:
- [x] Docs updated for user-facing behavior changes
- [ ] Docs not applicable — justification:
- [ ] Sensitive paths changed (security, policy, credentials, preflight,
onboarding, inference, runner, sandbox, or messaging)
- [ ] Sensitive-path review completed or maintainer-approved waiver
recorded — reviewer/approval link/justification:
- [ ] Non-success, skipped, or missing CI check accepted by maintainer —
check name, approval link, and follow-up issue:

## DGX Station Hardware Evidence

- [ ] Tested on DGX Station
- Tested commit: Not applicable; this PR does not change
`scripts/prepare-dgx-station-host.sh` or runtime behavior.
- Station profile/scenario: Not applicable.
- Result: Not applicable.
- Supporting evidence: Not applicable.

## Verification

- [x] PR description includes a `Signed-off-by:` line and every commit
appears as `Verified` in GitHub
- [x] Normal `pre-commit`, `commit-msg`, and `pre-push` hooks passed, or
`npm run check:diff` passed when hooks were skipped or unavailable
- [x] Targeted behavior tests pass for the current change set, or tests
are marked not applicable above — `npx vitest run
test/changelog-docs.test.ts` (6 passed).
- [ ] Applicable broad gate passed — `npm test` for broad
runtime/test-harness changes; `npm run check` for repo-wide
validation/coverage changes — command/result: Not run; this is a focused
documentation-only change.
- [x] Quality Gates section completed with required justifications or
waivers
- [x] No secrets, API keys, or credentials committed
- [ ] `npm run docs` builds without warnings (doc changes only) — passed
with 0 errors and two unrelated baseline warnings for unauthenticated
redirect checks and the existing light-mode contrast ratio.
- [x] Doc pages follow the [style
guide](https://github.com/NVIDIA/NemoClaw/blob/main/docs/CONTRIBUTING.md)
(doc changes only)
- [ ] New doc pages include SPDX header and frontmatter (new pages only)

---
Signed-off-by: Julie Yaunches <jyaunches@nvidia.com>


<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

- **Documentation**
- Added release notes for v0.0.90 covering inference routing, credential
reset behavior, WhatsApp status detection, and DGX Station coding-agent
guidance.
- Updated custom Dockerfile guidance to document continued support for
the legacy provider argument through v0.0.90.
- Clarified that legacy declarations must be renamed to
`NEMOCLAW_INFERENCE_PROVIDER_ID` before v0.0.91.
  - Added and refreshed related documentation links.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->

Signed-off-by: Julie Yaunches <jyaunches@nvidia.com>
@coderabbitai coderabbitai Bot mentioned this pull request Jul 20, 2026
23 tasks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

area: ci CI workflows, checks, release automation, or GitHub Actions area: e2e End-to-end tests, nightly failures, or validation infrastructure platform: brev Affects Brev hosted development environments refactor PR restructures code without intended behavior change

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants