From 1fb09d2410c5b47f02adf681aacab9be55992391 Mon Sep 17 00:00:00 2001 From: Sonu Kapoor Date: Thu, 4 Jun 2026 07:49:55 -0400 Subject: [PATCH 1/3] fix: remove ./ prefix from remediation-strategy link in docs index --- website/docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/index.md b/website/docs/index.md index 2c2a51b..31ccaa2 100644 --- a/website/docs/index.md +++ b/website/docs/index.md @@ -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](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. From 9c3ae36fac2d232d44013595a08ae7b01339a443 Mon Sep 17 00:00:00 2001 From: Sonu Kapoor Date: Thu, 4 Jun 2026 07:54:31 -0400 Subject: [PATCH 2/3] fix: strip .mdx extensions from internal doc cross-links --- website/docs/how-remediation-works.mdx | 4 ++-- website/docs/remediation-strategy.mdx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/website/docs/how-remediation-works.mdx b/website/docs/how-remediation-works.mdx index de85cb7..677515f 100644 --- a/website/docs/how-remediation-works.mdx +++ b/website/docs/how-remediation-works.mdx @@ -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). --- @@ -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` diff --git a/website/docs/remediation-strategy.mdx b/website/docs/remediation-strategy.mdx index 0fd3f89..a6d0893 100644 --- a/website/docs/remediation-strategy.mdx +++ b/website/docs/remediation-strategy.mdx @@ -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. @@ -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` From 3bcf13898095ab543242951d8c26d8d1294ce177 Mon Sep 17 00:00:00 2001 From: Sonu Kapoor Date: Thu, 4 Jun 2026 08:16:16 -0400 Subject: [PATCH 3/3] fix: use absolute path for remediation-strategy link in docs index --- website/docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/index.md b/website/docs/index.md index 31ccaa2..3143059 100644 --- a/website/docs/index.md +++ b/website/docs/index.md @@ -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.