Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions website/docs/how-remediation-works.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import TabItem from '@theme/TabItem';

CVE Lite CLI does more than list vulnerable packages — it figures out the most specific fix command it can confidently generate. This page explains the logic behind each type of suggestion with diagrams and real examples.

For deeper technical detail on parser behavior and package-manager-specific notes, see [Remediation Strategy](remediation-strategy.mdx).
For deeper technical detail on parser behavior and package-manager-specific notes, see [Remediation Strategy](remediation-strategy).

---

Expand Down Expand Up @@ -594,6 +594,6 @@ cve-lite . # confirm the finding is resolved

## See also

- [Remediation Strategy](remediation-strategy.mdx) — deeper technical detail on parser behaviour, confidence levels, and edge cases
- [Remediation Strategy](remediation-strategy) — deeper technical detail on parser behaviour, confidence levels, and edge cases
- [Offline Advisory DB](offline-advisory-db.md) — how to sync and use the local database
- [CLI Reference](cli-reference.md) — full flag documentation including `--verbose`, `--fix`, and `--fail-on`
2 changes: 1 addition & 1 deletion website/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ CVE Lite CLI is designed around short local feedback loops: scan a lockfile, und

- [Getting Started](./getting-started.md) explains how to get started
- [Workflow Integration](./workflow-integration.md) explains how to integrate with CI, GitHub Actions, GitHub Code Scanning (SARIF upload), git hooks, and offline mode.
- [Remediation Strategy](./remediation-strategy) explains how the CLI chooses direct upgrades, parent updates, and parent upgrades.
- [Remediation Strategy](/docs/remediation-strategy) explains how the CLI chooses direct upgrades, parent updates, and parent upgrades.
- [Fix Mode Guide](./fix-mode.md) explains the conservative `--fix` workflow.
- [HTML Vulnerability Report](./html-report.md) explains the local dashboard generated by `--report`.
- [How CVE Lite CLI Works](./how-it-works.md) covers the scanner model and lockfile-first behavior.
Expand Down
4 changes: 2 additions & 2 deletions website/docs/remediation-strategy.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import TabItem from '@theme/TabItem';
# Remediation Strategy

:::tip[New to CVE Lite CLI remediation?]
For a visual overview with diagrams and plain-English explanations, start with [How Remediation Works](how-remediation-works.mdx). This page covers the deeper technical detail.
For a visual overview with diagrams and plain-English explanations, start with [How Remediation Works](how-remediation-works). This page covers the deeper technical detail.
:::

CVE Lite CLI is designed to turn vulnerability findings into concrete next actions. This page explains how the CLI decides which package to update, why direct and transitive findings are handled differently, and what it means when no confident automatic path is available.
Expand Down Expand Up @@ -431,6 +431,6 @@ cve-lite /path/to/project

## See also

- [How Remediation Works](how-remediation-works.mdx) — visual overview with diagrams and plain-English explanations
- [How Remediation Works](how-remediation-works) — visual overview with diagrams and plain-English explanations
- [Offline Advisory DB](offline-advisory-db.md) — how to sync and use the local database
- [CLI Reference](cli-reference.md) — full flag documentation including `--verbose`, `--fix`, and `--fail-on`