fix(policy): accept acknowledgement flags on policy restore - #8124
Conversation
Restore now previews the egress it re-allows and then requires the same explicit acknowledgement as exclude, so both halves of the pair share one flag set and one non-interactive contract. Signed-off-by: Tinson Lai <tinsonl@nvidia.com>
|
Note Reviews pausedIt 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 Use the following commands to manage reviews:
Use the checkboxes below for quick actions:
📝 WalkthroughWalkthrough
ChangesPolicy restore acknowledgement and validation
Estimated code review effort: 3 (Moderate) | ~25 minutes Sequence Diagram(s)sequenceDiagram
participant PolicyRestoreCommand
participant restoreSandboxBaselineUnlocked
participant restoreBaselineEntry
participant LivePolicy
PolicyRestoreCommand->>restoreSandboxBaselineUnlocked: pass force, yes, and dry-run options
restoreSandboxBaselineUnlocked->>restoreSandboxBaselineUnlocked: require acknowledgement or prompt
restoreSandboxBaselineUnlocked->>restoreBaselineEntry: pass expected target digest
restoreBaselineEntry->>LivePolicy: validate current baseline and read live policy
restoreBaselineEntry->>restoreBaselineEntry: restore or clear stale exclusion
Suggested labels: 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✨ Finishing Touches📝 Generate docstrings
🧪 Generate unit tests (beta)
Comment |
|
🌿 Preview your docs: https://nvidia-preview-pr-8124.docs.buildwithfern.com/nemoclaw |
Code Coverage OverviewLanguages: TypeScript TypeScript / code-coverage/pluginThe overall coverage in commit f6b766f in the TypeScript / code-coverage/cliThe overall coverage in commit f6b766f in the Show a code coverage summary of the most impacted files.
Updated |
PR Review Advisor — No blocking findings reportedAdvisor assessment: No blocking advisor findings reported Model lanes
3 terminology differences from the second opinionAdvisory only. These are normalized differences from the primary terminology receipt.
Second-opinion terminology and E2E selections are advisory. They do not change the primary assessment or E2E / PR Gate. 3 semantic terminology decisionsTerminology decisions are advisory. They affect the assessment only when a separate finding identifies concrete semantic impact.
E2E guidanceAdvisory only. E2E / PR Gate selects and runs jobs independently. Recommended E2E: 1 optional E2E recommendation
This automated review informs maintainers. Warnings and suggestions do not require a response. A maintainer decides whether to merge. |
There was a problem hiding this comment.
Actionable comments posted: 4
🧹 Nitpick comments (1)
src/commands/sandbox/policy/mutate.test.ts (1)
95-113: 🎯 Functional Correctness | 🔵 Trivial | ⚡ Quick winCover the long
--yesspelling.This test covers
-yand--force, but the restore contract includes--yes,-y, and--force. Add a public command invocation with--yesand assertyes: true. Otherwise, a parser regression in the long spelling can pass.Proposed test addition
+ await PolicyRestoreCommand.run(["alpha", "nous_research", "--yes"], rootDir); + expect(mocks.restoreSandboxBaseline).toHaveBeenLastCalledWith("alpha", { + key: "nous_research", + yes: true, + force: false, + dryRun: false, + });As per path instructions, review tests for behavioral confidence rather than implementation lock-in.
🤖 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 `@src/commands/sandbox/policy/mutate.test.ts` around lines 95 - 113, Add coverage in the existing “accepts the same acknowledgement flags on restore as on exclude (`#8114`)” test for invoking PolicyRestoreCommand with the long “--yes” flag, and assert restoreSandboxBaseline receives yes: true. Keep the existing short “-y” and “--force” assertions intact.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 `@docs/reference/commands.mdx`:
- Around line 1962-1963: Update the recovery guidance around the changed-entry
instructions to show complete host CLI invocations, including $$nemoclaw and the
relevant sandbox name before policy restore and policy exclude. Preserve the
existing command options, sequencing, and distinction between changed and
removed entries.
In `@src/lib/actions/sandbox/policy-channel-baseline.test.ts`:
- Around line 201-207: Strengthen the test case in “requires explicit
acknowledgement in non-interactive mode (`#8114`)” by asserting the captured error
includes “Non-interactive restore requires explicit acknowledgement” and
verifying promptMock was not called. Keep the existing exit-code and
restoreBaselineEntryMock assertions.
In `@src/lib/actions/sandbox/policy-channel.ts`:
- Around line 2017-2021: Update the missing-key usage message in
restoreSandboxBaselineUnlocked to list every supported acknowledgement flag,
including --yes|-y alongside --force, while preserving the existing key and
dry-run usage details.
- Around line 2057-2066: Update restoreSandboxBaseline’s acknowledgement flow to
catch askPrompt rejection with code "EOF" when stdin closes, handling it through
the closed-stdin error path without mutating the sandbox. Add a regression test
covering closed stdin with NEMOCLAW_NON_INTERACTIVE unset and assert that no
restore mutation occurs.
---
Nitpick comments:
In `@src/commands/sandbox/policy/mutate.test.ts`:
- Around line 95-113: Add coverage in the existing “accepts the same
acknowledgement flags on restore as on exclude (`#8114`)” test for invoking
PolicyRestoreCommand with the long “--yes” flag, and assert
restoreSandboxBaseline receives yes: true. Keep the existing short “-y” and
“--force” assertions intact.
🪄 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: 827299e0-3ab8-44bd-864a-6a7d4979fea0
📒 Files selected for processing (8)
docs/reference/commands.mdxdocs/reference/network-policies.mdxsrc/commands/sandbox/policy/exclude.tssrc/commands/sandbox/policy/mutate.test.tssrc/commands/sandbox/policy/restore.tssrc/lib/actions/sandbox/policy-channel-baseline.test.tssrc/lib/actions/sandbox/policy-channel.tssrc/lib/sandbox/policy-command-support.ts
💤 Files with no reviewable changes (1)
- src/lib/sandbox/policy-command-support.ts
apurvvkumaria
left a comment
There was a problem hiding this comment.
Reviewed current head 1e4243e. The restore confirmation now fails closed in non-interactive mode without acknowledgement, previews scope before mutation, preserves dry-run behavior, and correctly wires --yes/-y/--force. Required CI and E2E pass. I found no blocking correctness, security, compatibility, or regression issue.
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
apurvvkumaria
left a comment
There was a problem hiding this comment.
Approve — reviewed exact head 652ed64. Restore now discloses the exact live or stale-record action before acknowledgement, returns without mutation for dry-run, refusal, non-interactive missing acknowledgement, and closed stdin, and retains the existing locked restore transaction. Flag parsing coverage passes 8 of 8; the exact CI CLI failure is the same unrelated managed-image registry fetch timeout seen across current branches. No blocking correctness, security, compatibility, or regression defect found.
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
Show the supported acknowledgement flags for policy exclude and restore. Cover the root-help entries so unsupported aliases cannot return. Signed-off-by: Carlos Villela <cvillela@nvidia.com>
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
There was a problem hiding this comment.
🧹 Nitpick comments (1)
test/root-help.test.ts (1)
66-66: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick winAdd the linked issue suffix to the test title.
This test covers issue
#8114. Add(#8114)as the final title suffix.Proposed change
- it("shows the supported policy acknowledgement flags", () => { + it("shows the supported policy acknowledgement flags (`#8114`)", () => {🤖 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/root-help.test.ts` at line 66, Update the test title in the shows the supported policy acknowledgement flags test to append the linked issue suffix "(`#8114`)" as the final text.Source: Coding guidelines
🤖 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.
Nitpick comments:
In `@test/root-help.test.ts`:
- Line 66: Update the test title in the shows the supported policy
acknowledgement flags test to append the linked issue suffix "(`#8114`)" as the
final text.
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: CHILL
Plan: Enterprise
Run ID: e377c69e-2a21-4d75-8de6-f1f3cc142816
📒 Files selected for processing (2)
src/lib/cli/public-display-defaults.tstest/root-help.test.ts
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
Include the required key argument in the exclude and restore reference headings. Signed-off-by: Carlos Villela <cvillela@nvidia.com>
apurvvkumaria
left a comment
There was a problem hiding this comment.
Comment — reviewed exact head 889fca5. The new root-help metadata now matches the actual policy exclude and restore contract: key is required, --force has no -f alias, and --yes/-y plus --dry-run are supported. The targeted root-help assertion, all eight CLI shards, CLI tests, static checks, installer integration, platform E2E, and security scans pass. No blocking correctness, security, compatibility, or regression defect found; the code is safe. Non-blocking fast follow: update the two docs/reference/commands.mdx headings to include in a narrowly scoped docs-only PR. That restores the currently failing help/docs parity gate without changing runtime behavior.
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
apurvvkumaria
left a comment
There was a problem hiding this comment.
Approve — re-reviewed exact head cec7efe. The only PR-specific change since the prior current-head comment adds the required key positional argument to the policy exclude and restore documentation headings, aligning them with root help and resolving the attributable CLI-parity mismatch. The intervening main merges do not change the acknowledgement implementation. No blocking correctness, security, compatibility, documentation, or regression defect remains.
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
There was a problem hiding this comment.
Actionable comments posted: 3
🤖 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 `@docs/reference/network-policies.mdx`:
- Line 348: Update the restore acknowledgement documentation near the existing
`--dry-run` statement to include both `--yes` and its short form `-y`, while
retaining `--force` as supported. Clearly distinguish interactive callers, which
are prompted for confirmation, from non-interactive callers, which must provide
an acknowledgement flag unless using `--dry-run`, based on the contract in the
restore command implementation.
- Line 317: Update the sentence near the documented egress behavior to remove
the first repeated occurrence of “again,” leaving the remaining wording and
meaning unchanged.
- Line 327: Update the network policy documentation’s release-removal scenario
to show the exact error emitted by policy exclude <key>: Unknown baseline entry
'<key>'. Preserve the explanation that the failure occurs because no baseline
entry remains to exclude.
🪄 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: d8ba0c95-5ca8-4e9f-92ff-5bf48774d55d
📒 Files selected for processing (6)
docs/reference/commands.mdxdocs/reference/network-policies.mdxsrc/lib/actions/sandbox/policy-channel-baseline.test.tssrc/lib/actions/sandbox/policy-channel.tssrc/lib/policy/baseline-exclusion-persistence.test.tssrc/lib/policy/index.ts
🚧 Files skipped from review as they are similar to previous changes (1)
- docs/reference/commands.mdx
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
Signed-off-by: Carlos Villela <cvillela@nvidia.com>
<!-- markdownlint-disable MD041 --> ## Summary Prepares the canonical v0.0.102 release documentation from the current release-labeled scope. The change adds a dated changelog for all 38 user-facing shipping PRs and corrects the OpenClaw agent command reference for the behavior delivered by #8191. ## Changes - Add `docs/changelog/2026-08-04.mdx` with the v0.0.102 release summary, detailed behavior changes, support boundaries, security evidence links, and links to durable documentation. - Update `docs/reference/commands.mdx` to describe non-JSON OpenClaw output capture, its combined limit, marker handling, stream suppression, recovery guidance, and exit behavior. - [#8167](#8167) -> `docs/changelog/2026-08-04.mdx`: Records authenticated attachment of operator-managed llama.cpp servers. - [#8129](#8129) -> `docs/changelog/2026-08-04.mdx`: Records the Experimental managed vLLM profile for two DGX Spark systems. - [#7983](#7983) -> `docs/changelog/2026-08-04.mdx`: Records qualification of the May 2026 GB300WS factory image. - [#8207](#8207) -> `docs/changelog/2026-08-04.mdx`: Records the qualified DGX Station driver transaction. - [#8208](#8208) -> `docs/changelog/2026-08-04.mdx`: Records mode-bound Express resume state. - [#8158](#8158) -> `docs/changelog/2026-08-04.mdx`: Records recovery of host-global dual-Station runtime ownership. - [#8145](#8145) -> `docs/changelog/2026-08-04.mdx`: Records Windows-host Ollama validation from Docker Desktop's network context. - [#8190](#8190) -> `docs/changelog/2026-08-04.mdx`: Records HTTP model pulls when WSL has no local Ollama executable. - [#8195](#8195) -> `docs/changelog/2026-08-04.mdx`: Records reuse of a healthy installer-managed CLI. - [#8053](#8053) -> `docs/changelog/2026-08-04.mdx`: Records early rejection of incompatible OpenShell gateway versions. - [#8098](#8098) -> `docs/changelog/2026-08-04.mdx`: Records the bounded package-service-to-standalone gateway recovery transition. - [#8216](#8216) -> `docs/changelog/2026-08-04.mdx`: Records the final dashboard port selected during multi-sandbox onboarding. - [#8146](#8146) -> `docs/changelog/2026-08-04.mdx`: Records managed startup-state restoration for stopped sandboxes. - [#8092](#8092) -> `docs/changelog/2026-08-04.mdx`: Records gateway watchdog recovery for classified not-serving states. - [#8182](#8182) -> `docs/changelog/2026-08-04.mdx`: Records consistent managed-recovery wait configuration. - [#8040](#8040) -> `docs/changelog/2026-08-04.mdx`: Records Docker sandbox rollback authority through late validation. - [#8130](#8130) -> `docs/changelog/2026-08-04.mdx`: Records bounded Shields deadline recovery and durable containment. - [#8086](#8086) -> `docs/changelog/2026-08-04.mdx`: Records repair of narrowly validated permission-only configuration drift. - [#8122](#8122) -> `docs/changelog/2026-08-04.mdx`: Records prompt failure and guidance for corrupt transition locks. - [#8124](#8124) -> `docs/changelog/2026-08-04.mdx`: Records policy restoration flags, previews, and target revalidation. - [#7886](#7886) -> `docs/changelog/2026-08-04.mdx`: Records explicit destruction after pre-delete Shields hardening failures while preserving recovery authority. - [#7901](#7901) -> `docs/changelog/2026-08-04.mdx`: Records multi-port uninstall behavior and shared-resource preservation. - [#7984](#7984) -> `docs/changelog/2026-08-04.mdx`: Records one classified transient remote MCP startup retry. - [#7954](#7954) -> `docs/changelog/2026-08-04.mdx`: Records bounded hosted-inference probe replies. - [#7574](#7574) -> `docs/changelog/2026-08-04.mdx`: Records preservation of validated reasoning capabilities through onboarding. - [#8089](#8089) -> `docs/changelog/2026-08-04.mdx`: Records proxy routing for Hermes WhatsApp pairing and media traffic. - [#7682](#7682) -> `docs/changelog/2026-08-04.mdx`: Records native Hermes session deletion and identifier validation. - [#8150](#8150) -> `docs/changelog/2026-08-04.mdx`: Records corporate CA trust for LangChain Deep Agents Code image builds. - [#8156](#8156) -> `docs/changelog/2026-08-04.mdx`: Records reviewed managed runtime dependency remediation. - [#8180](#8180) -> `docs/changelog/2026-08-04.mdx`: Records reviewed MCP discovery runtime dependency updates. - [#8196](#8196) -> `docs/changelog/2026-08-04.mdx`: Records private npm dependency remediation across managed images. - [#8203](#8203) -> `docs/changelog/2026-08-04.mdx`: Records reviewed Hermes and LangChain Deep Agents Code Python dependency updates. - [#8125](#8125) -> `docs/changelog/2026-08-04.mdx`: Records bounded diagnostics for invalid enumerated CLI values. - [#8193](#8193) -> `docs/changelog/2026-08-04.mdx`: Records bounded diagnostics for unresolved sandbox base images. - [#8118](#8118) -> `docs/changelog/2026-08-04.mdx`: Records bounded diagnostics for changed gateway authority. - [#8191](#8191) -> `docs/changelog/2026-08-04.mdx`, `docs/reference/commands.mdx`: Records output capture, marker handling, recovery guidance, and exit behavior for non-JSON OpenClaw agent commands. - [#8187](#8187) -> `docs/changelog/2026-08-04.mdx`: Records the aligned interactive-installation start across supported agents. - [#8153](#8153) -> `docs/changelog/2026-08-04.mdx`: Records current product capabilities and support boundaries. ## 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 - [ ] Existing tests cover changed behavior — justification: - [x] Tests not applicable — justification: This documentation-only release preparation does not change executable behavior. Existing changelog and published-route tests pass. - [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: ## Documentation Writer Review - [x] Documentation writer subagent reviewed the completed changes - Result: `docs-updated` - Evidence: Independently reviewed `docs/changelog/2026-08-04.mdx` and `docs/reference/commands.mdx` at commit `b89913780`. All 38 user-facing v0.0.102 PRs are represented, #8191 behavior matches the implementation, and the writing rules, documentation style, controlled terminology, route structure, and skip policy pass review. Targeted tests pass 36/36 and the documentation build completes with 0 errors. - Agent: Codex Desktop independent documentation writer <!-- docs-review-head-sha: b899137 --> <!-- docs-review-agents-blob-sha: 3dd7c24 --> ## DGX Station Hardware Evidence - [ ] Tested on DGX Station - Tested commit: Not applicable - 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 validate:pr` passed after refreshing `origin/main` 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 --project integration test/changelog-docs.test.ts test/check-docs-published-routes.test.ts` passed 36/36. - [x] Applicable broad gate passed — not applicable to documentation-only changes; `npm run docs` completed successfully with 0 errors. - [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) — completed with 0 errors and 2 existing Fern warnings. - [x] Doc pages follow the [style guide](https://github.com/NVIDIA/NemoClaw/blob/main/docs/CONTRIBUTING.md) (doc changes only) - [x] New doc pages include SPDX header and frontmatter (new pages only) — the native dated changelog uses the required parser-safe MDX SPDX comment and intentionally has no frontmatter. --- Signed-off-by: Apurv Kumaria <akumaria@nvidia.com> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **Documentation** - Added release notes for v0.0.102, covering authentication, hardware setup, WSL, installer recovery, sandbox resilience, policy management, inference reliability, CLI improvements, and unified quickstarts. - Updated command documentation to explain how non-JSON agent output is collected, replayed, and reported. - **Bug Fixes** - Improved command-output recovery guidance when output exceeds limits or contains unsupported fallback markers. - Preserved accurate command exit-status reporting after output processing. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Signed-off-by: Apurv Kumaria <akumaria@nvidia.com>
Summary
policy restorerejected--yes,-y, and--force, so a script that excluded a baseline entry non-interactively could not restore it the same way. Restore now reports whether it will re-allow current egress or clear only a stale exclusion record, then requires the same explicit acknowledgement aspolicy exclude. Both commands now show one supported flag set in root help. Restore also binds the mutation to the baseline entry or confirmed absence shown before acknowledgement and stops if that target changes.Related Issue
Fixes #8114
Changes
policy restoretopolicyMutationFlagsand remove the restore-only flag definition.--forceor--yesin non-interactive mode and exit without mutation when standard input closes before acknowledgement.--dry-runnon-mutating.-falias from exclude help and display the complete exclude and restore command signatures.Type of Change
Quality Gates
f6b766fd69adaf7c7ed2adb6c054272b739e5f24with no findings. Restore is bound to the disclosed digest or explicit absence before reconciliation or mutation, and unreadable recorded-agent baselines stop without effects.Documentation Writer Review
docs-updatedf6b766fd69adaf7c7ed2adb6c054272b739e5f24against current main04ff661211837b78c649ffcdbb89d81588e62ae6. The complete PR diff and the final unreadable-baseline no-effects fix were reviewed.docs/reference/commands.mdxanddocs/reference/network-policies.mdxpreview restored egress or stale-record cleanup before acknowledgement and document--force,--yes,-y, and nonmutating--dry-run. Both changed preview errors use the controlled termRerun. GitHub CI provides documentation validation.Security Review
PASSf6b766fd69adaf7c7ed2adb6c054272b739e5f2404ff661211837b78c649ffcdbb89d81588e62ae6PASSPASSPASSPASSPASSPASSPASSPASSPASSDGX Station Hardware Evidence
scripts/prepare-dgx-station-host.sh.Verification
Signed-off-by:line and every commit appears asVerifiedin GitHub — the final commit is signed and GitHub reports it as verified.pre-commit,commit-msg, andpre-pushhooks passed, ornpm run validate:prpassed after refreshingorigin/mainwhen hooks were skipped or unavailable — normal commit hooks and the final pre-push hook passed.npm run docsbuilds without warnings (doc changes only) — GitHub documentation checks are running for the final commit.GitHub CI is authoritative.
No duplicate local test, documentation, build, or typecheck suite ran after the merge refresh.
Behavior note for reviewers: this makes
policy restorestop on a confirmation prompt where it previously applied immediately. Unattended callers that ran barepolicy restore <key>need--forceor--yes.Signed-off-by: Tinson Lai tinsonl@nvidia.com
Summary by CodeRabbit
New Features
--forceor--yes.--dry-runpreviews restoration changes without applying them.-falias is no longer advertised.Documentation