-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Marty McEnroe edited this page May 22, 2026
·
3 revisions
Clio is a Chrome extension that extracts your Gemini, Claude, and ChatGPT conversations to local JSON. This wiki frames the design choices behind it: why a small extension is also a governance and safety artifact, and what each architectural constraint encodes.
Clio's security and governance commitments map cleanly onto the classic CIA triad:
| Pillar | Wiki page |
|---|---|
| C — Confidentiality | Privacy Architecture — no transmission, structural enforcement, not policy promise |
| I — Integrity | Provenance and Auditability — full-DOM capture, fail-closed-for-text |
| A — Availability | Availability and Denial of Access — local archive immune to provider-side denial |
This is intentional. Most discussion of extensions focuses on C and I (privacy and tampering); for a tool whose purpose is retaining a copy of cloud-held data, A is the central commitment.
- User Data Sovereignty — the framing: returning conversations to the user as a data-portability act
- Privacy Architecture — the technical commitments that make "strict-local" load-bearing (the C pillar)
- Availability and Denial of Access — denial-of-access threats from the legitimate custodian, and how a local archive mitigates them (the A pillar)
- Provenance and Auditability — why full DOM extraction is a governance feature (the I pillar)
- Threat Model — what Clio defends against, and what it does not
- Defense in Depth — how the manifest enforces the threat model
- Connection to sentinel-rfc — agent-context permission bits as the broader research program
- Known Limitations — honest boundaries
The wiki is interpretive — for the binding, version-controlled statements, see:
README.mdPRIVACY.mdSECURITY.mdCONTRIBUTING.md-
extensions/manifest.json— the ground-truth permission declaration
If any wiki page conflicts with one of those, the document wins.
Three Pillars (CIA)
- Privacy Architecture — Confidentiality
- Provenance and Auditability — Integrity
- Availability and Denial of Access — Availability
Topics
Source docs