Skip to content

Privacy & Data Collection

Last updated: March 21, 2026

Your browser data stays on your machine. Console logs, network requests, screenshots, and everything Kaboom captures from your browser never leaves localhost.

We collect anonymous usage metrics — which tools you use and how often — to improve Kaboom. No personal information, no URLs, no code. You can opt out with one environment variable.


Kaboom handles two types of data very differently:

1. Browser Telemetry (YOUR data — stays local)

Section titled “1. Browser Telemetry (YOUR data — stays local)”

Everything Kaboom captures from your browser stays on your machine:

  • Console logs, errors, exceptions
  • Network requests and responses
  • WebSocket events
  • User interactions (clicks, form submissions)
  • Screenshots (when requested)
  • DOM snapshots
  • Performance metrics

Where it goes: http://localhost:7890 only. The Kaboom server runs on YOUR machine. We cannot access this data.

Verification: Check browser DevTools Network tab — you’ll only see localhost:7890 requests.

2. Anonymous Product Metrics (OUR data — sent to us)

Section titled “2. Anonymous Product Metrics (OUR data — sent to us)”

We collect anonymous usage counters to understand how Kaboom is used:

What we collectExampleWhy
Random install IDf7a2c1e9b4d8Correlate usage over time without identifying you
Tool usage countsobserve:errors: 12Know which features matter
OS and versiondarwin-arm64, 0.8.1Know what to support
Install/scaffold outcomesinstall_complete, scaffold_completeMeasure onboarding success
Error categoriesbridge_connection_errorFix common failure patterns

What we DON’T collect:

Never collectedWhy not
IP addressesNot stored, not logged — our endpoint discards them
Your name, email, or identityNo accounts, no sign-up
URLs you’re debuggingNot included in any beacon
Your code or file pathsNot included in any beacon
Error messages from your appCould contain PII — only error categories sent
Screenshots or page contentNever leaves localhost
Project names or descriptionsCould identify you — excluded
Machine fingerprintsInstall ID is pure random, not derived from hardware

When Kaboom first starts, it generates a random 12-character hex string (e.g., f7a2c1e9b4d8) and saves it at ~/.kaboom/install_id. This is:

  • Randomly generatedcrypto/rand, not derived from your machine, username, or IP
  • Not reversible — cannot be traced back to you
  • Used for — “this install uses observe:errors a lot” not “this person does X”

Every 10 minutes (if there was activity), Kaboom sends one aggregated event:

{
"event": "usage_summary",
"v": "0.8.1",
"os": "darwin-arm64",
"iid": "f7a2c1e9b4d8",
"props": {
"window_m": "10",
"observe:errors": "12",
"interact:click": "24",
"analyze:accessibility": "1"
}
}

That’s it. Tool names and counts. No URLs, no selectors, no content. If Kaboom is idle, no beacon is sent.


Set one environment variable:

Terminal window
export KABOOM_TELEMETRY=off

All beacons stop immediately. Kaboom works exactly the same — no features are degraded or locked.

Add it to your shell profile (~/.zshrc, ~/.bashrc) to make it permanent.


What We Automatically Redact (Browser Data)

Section titled “What We Automatically Redact (Browser Data)”

Before browser telemetry reaches the localhost server, Kaboom redacts:

  • Passwords[redacted]
  • API keys, tokens, secrets[redacted]
  • Credit card numbers, SSNs[redacted]
  • Authorization headers, cookies[redacted]

This is defense-in-depth — the data never leaves your machine anyway, but we redact it before it even reaches the local server.


Browser data (local):

  • You choose which tab to track (not automatic)
  • You choose whether to enable AI Web Pilot (default: off)
  • You choose whether to save logs to disk (default: in-memory only)
  • Stop anytime — click “Stop Tracking” or uninstall

Product metrics (remote):

  • Opt out anytime with KABOOM_TELEMETRY=off
  • Delete your install ID: rm ~/.kaboom/install_id
  • We cannot correlate your install ID to your identity

Why: Track a specific browser tab What we DON’T do: Track all tabs, read untracked tabs

Why: Remember your settings across restarts What we store: Tracked tab ID, toggle states, server URL

Why: Send captured telemetry to your local Kaboom server What we DON’T do: Access external websites, send data remotely

Why: Capture telemetry from any web app you’re debugging What we do: Inject into the ONE tab you explicitly track Why <all_urls>? Kaboom is a developer tool — you need to debug apps on any domain.


  • Browser data: Compliant — never leaves your device
  • Product metrics: Compliant — no personal data collected. Random install ID is not PII (not linkable to a natural person). No IP addresses stored.
  • Right to deletion: rm ~/.kaboom/install_id + KABOOM_TELEMETRY=off
  • Right to access: All local data available via localhost API
  • No sale of personal information
  • No personal data collected in product metrics

Everything is auditable:

Don’t take our word for it. Read the source. The telemetry code is ~80 lines of Go. Every beacon call site is searchable with grep -rn 'BeaconEvent\|BeaconError'.


We’ll notify users via:

  • GitHub release notes
  • Extension update notes
  • This page (check “Last updated” date)

Questions about privacy?