From 47e9c92e70c18f05adcf04105e70f62d8f82d4e5 Mon Sep 17 00:00:00 2001 From: Ross Golder Date: Thu, 2 Oct 2025 20:38:51 +0700 Subject: [PATCH 1/4] docs: add CLI telemetry opt-out instructions Add documentation for disabling telemetry in the Continue CLI using the CONTINUE_CLI_ENABLE_TELEMETRY=0 environment variable. Generated with [Continue](https://continue.dev) Co-Authored-By: Continue --- docs/telemetry.mdx | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/docs/telemetry.mdx b/docs/telemetry.mdx index dba2dc6d5cd..c55d64896eb 100644 --- a/docs/telemetry.mdx +++ b/docs/telemetry.mdx @@ -26,6 +26,23 @@ The following usage information is collected and reported: ## How to Opt Out +### VS Code Extension + You can disable anonymous telemetry by toggling "Allow Anonymous Telemetry" off in the user settings. Alternatively in VS Code, you can disable telemetry through your VS Code settings by unchecking the "Continue: Telemetry Enabled" box (this will override the Settings Page settings). VS Code settings can be accessed with `File` > `Preferences` > `Settings` (or use the keyboard shortcut `ctrl` + `,` on Windows/Linux or `cmd` + `,` on macOS). + +### CLI + +For the Continue CLI, set the environment variable `CONTINUE_CLI_ENABLE_TELEMETRY=0` before running commands: + +```bash +export CONTINUE_CLI_ENABLE_TELEMETRY=0 +cn +``` + +Or run it inline: + +```bash +CONTINUE_CLI_ENABLE_TELEMETRY=0 cn +``` From d17c521b89e3f7f2d73ae0a8021ba8e5842eeb67 Mon Sep 17 00:00:00 2001 From: Ross Golder Date: Wed, 8 Oct 2025 12:54:30 +0700 Subject: [PATCH 2/4] Update docs/telemetry.mdx Co-authored-by: Ty Dunn --- docs/telemetry.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/telemetry.mdx b/docs/telemetry.mdx index c55d64896eb..528dbbc5d40 100644 --- a/docs/telemetry.mdx +++ b/docs/telemetry.mdx @@ -26,7 +26,7 @@ The following usage information is collected and reported: ## How to Opt Out -### VS Code Extension +### IDE extensions You can disable anonymous telemetry by toggling "Allow Anonymous Telemetry" off in the user settings. From 28da70f1a06872992ae1a44d8a5d9f9b36625317 Mon Sep 17 00:00:00 2001 From: Ross Golder Date: Wed, 8 Oct 2025 12:54:59 +0700 Subject: [PATCH 3/4] Update docs/telemetry.mdx Co-authored-by: Ty Dunn --- docs/telemetry.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/telemetry.mdx b/docs/telemetry.mdx index 528dbbc5d40..1e8533cd499 100644 --- a/docs/telemetry.mdx +++ b/docs/telemetry.mdx @@ -30,6 +30,8 @@ The following usage information is collected and reported: You can disable anonymous telemetry by toggling "Allow Anonymous Telemetry" off in the user settings. +#### VS Code + Alternatively in VS Code, you can disable telemetry through your VS Code settings by unchecking the "Continue: Telemetry Enabled" box (this will override the Settings Page settings). VS Code settings can be accessed with `File` > `Preferences` > `Settings` (or use the keyboard shortcut `ctrl` + `,` on Windows/Linux or `cmd` + `,` on macOS). ### CLI From 9e929ce19668309be10c8781bfd324351924787d Mon Sep 17 00:00:00 2001 From: Ross Golder Date: Wed, 8 Oct 2025 12:55:11 +0700 Subject: [PATCH 4/4] Update docs/telemetry.mdx Co-authored-by: Ty Dunn --- docs/telemetry.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/telemetry.mdx b/docs/telemetry.mdx index 1e8533cd499..f71255f0ddd 100644 --- a/docs/telemetry.mdx +++ b/docs/telemetry.mdx @@ -36,7 +36,7 @@ Alternatively in VS Code, you can disable telemetry through your VS Code setting ### CLI -For the Continue CLI, set the environment variable `CONTINUE_CLI_ENABLE_TELEMETRY=0` before running commands: +For `cn`, the Continue CLI, set the environment variable `CONTINUE_CLI_ENABLE_TELEMETRY=0` before running commands: ```bash export CONTINUE_CLI_ENABLE_TELEMETRY=0