Where the app stores data
The app writes to two locations on each member’s computer: Configuration: ~/.claude-science/config.toml holds all app settings. Every key is optional; the app starts with no file present. This is the file to deploy through device management.Data: the app’s data directory holds conversations, generated artifacts, delegation configurations, and workspace files in a per-organization subfolder (orgs/
<organization-id>/), stored as a local database plus files.
Authentication tokens and the shared package environment live under ~/.claude-science/ regardless of the data directory, so endpoint backup or wipe policies that target the data directory don’t affect sign-in state.
Your endpoint tooling governs these folders the same way it governs any other local application data. There’s no Anthropic-hosted copy, so Custom Data Retention, Org Data Export, and the Compliance API don’t reach them.
Deploy configuration with device management
To set configuration keys organization-wide, deploy ~/.claude-science/config.toml through your MDM or endpoint tool. Claude Science doesn’t read a system-level managed-preferences file, so there’s no native MDM configuration channel. Deploying the per-member config.toml is the supported approach. Every key is documented in the configuration reference; the keys most relevant to admins are:| Key | Effect |
|---|---|
| disable_telemetry = true | Stops the app from sending product-usage telemetry to Anthropic. |
data_dir = “<path>” | Moves conversations, artifacts, and workspaces to a managed location (for example, a volume your backup tooling covers). |
| [update] auto_update = false | Prevents the app from updating itself; pair with your own distribution channel. |
| [sandbox] network_isolated = true | Blocks network access from the app’s local code-execution sandbox. |
Telemetry
The 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: Set disable_telemetry = true in ~/.claude-science/config.toml (deployable through MDM).Set the DO_NOT_TRACK environment variable on the device. Both are device-level settings. There’s no per-member or per-organization telemetry toggle in Organization settings.