The whole hunk
from line 21, old and new numbered
/
lines
from line 21
2121
2222| Key | Effect |
2323| ---------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
24| disable\_telemetry = true | Stops the app from sending product-usage telemetry to Anthropic. |
24| disable\_telemetry = true | Stops the app from sending product-usage telemetry and error reports to Anthropic. |
2525| data\_dir = "`<path>`" | Moves conversations, artifacts, and workspaces to a managed location (for example, a volume your backup tooling covers). |
2626| \[update] auto\_update = false | Prevents the app from updating itself; pair with your own distribution channel. |
2727| \[sandbox.network] enabled = false | Blocks network access from the app's local code-execution sandbox. The similarly named \[sandbox] network\_isolated key does not control this. |
from line 30
3030
3131## Telemetry
3232
33The app sends product-usage telemetry (event counts and timings, not conversation content) to Anthropic. There's no in-app setting for this; consent is covered by your organization's acceptance of Anthropic's commercial terms. To turn telemetry off on managed devices, use either of:
33The app sends product-usage telemetry (event counts and timings, not conversation content) to Anthropic. There's no in-app setting for this; consent is covered by your organization's acceptance of Anthropic's commercial terms.
3434
35When the app runs into an error, it also sends an error report to the error-reporting service Anthropic uses that identifies the error type and where it occurred in Claude Science's own code. The report includes the app version, its runtime version, the operating system version, and the app's most recent telemetry events. The app redacts each report on the member's computer before sending it: error messages are removed, and code locations outside Claude Science's own code are blanked. Reports contain no conversation content, research data, file contents, or file paths, and no usernames, account identifiers, or organization identifiers.
36
37To turn telemetry and error reports off on managed devices, use either of:
38
3539Set disable\_telemetry = true in \~/.claude-science/config.toml (deployable through MDM).\
36Set the DO\_NOT\_TRACK environment variable on the device.
40Set the DO\_NOT\_TRACK environment variable (for example to 1) on the device.
3741
3842Both are device-level settings. There's no per-member or per-organization telemetry toggle in Organization settings.
3943