Try Studio
In Browserno installDesktop Mac AppDesktop Windows App
GitHub & Skills
Download Skill for ClaudeDownload Skill for OpenAI Codex
For
Myself — personal twinMy company — team memory

The privacy model

Privacy isn't a promise here. It's the code.

Second Brain Link runs entirely on your machine. The core makes zero network calls — your exports are never uploaded, and the output is plain Markdown you own. Here's exactly what it does and doesn't do, so you can verify it against the source.

What never leaves your machine

Scope: "no telemetry, no analytics" describes the downloadable tool (the core pipeline that processes your exports). This marketing website, secondbrainlink.com, uses privacy-respecting, consent-gated Google Analytics — no analytics cookies are set until you accept. See the Privacy Policy.

What gets stripped before anything is written

The rules aren't a policy page — they're the Collector class. If a rule isn't in the code, it isn't a rule. Read it on GitHub →

sources/common.py
# The privacy policy IS this class. class Collector: def add_person(self, name, **f): if EMAIL_RE.match(name) or f.get("phone"): return # PII never written self._merge(nk(name), f) # there is no add_message_body(). by design. def add_message_signal(self, name, date): self.sig[nk(name)].bump(date) QUARANTINE = {"Logins", "Receipts", "messages", "HR", "Payroll"}

What you own at the end

Not affiliated with or endorsed by LinkedIn, Meta, Google, Slack, Obsidian, Anthropic, OpenAI, or the GBrain project. Works with the data exports those services provide to you, and emits to the open-source GBrain format.