From c1e5042d3c6c924e0ce6438222b3d99e007a1be7 Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 26 Mar 2026 03:27:35 +0000 Subject: [PATCH] docs: add MIT license, explain reveal mode in README MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add LICENSE file (MIT). Explain in README that reveal mode is a local display change only — the AI never received the real data. Reveal exists so users can copy paths/commands from AI responses and paste them directly into their terminal without manually translating fake values back to real ones. https://claude.ai/code/session_01Dvgwe7XMoSxnWXkih8p1Cw --- LICENSE | 21 +++++++++++++++++++++ README.md | 17 +++++++++++++++++ package.json | 1 + 3 files changed, 39 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..ef467d2 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2025 Silent Send Contributors + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md index a2b58fc..ddde232 100644 --- a/README.md +++ b/README.md @@ -86,6 +86,19 @@ You can create multiple profiles (Personal, Work, Spouse) using the dropdown at | **Blue** | Reveal mode on — showing your real data in AI responses | | **Red** | Manually disabled | +### Reveal mode + +When reveal mode is on (eye icon or `Alt+Shift+R`), the AI's responses are displayed with your **real data** instead of the fake substitutes. This is purely a local display change — **the AI never received your real data**. It only ever saw the fake names, emails, paths, etc. + +This exists so you can easily copy paths, commands, and code from the AI's response and paste them directly into your terminal or editor without manually translating fake values back to real ones. + +For example: +- AI responds: `Edit the file at /home/ademo/project/config.yaml` +- With reveal mode ON, you see: `Edit the file at /home/jsmith/project/config.yaml` +- Copy that path, paste into terminal — it works + +Toggle it off and the display reverts to the fake data the AI actually received. + ### Keyboard shortcuts | Shortcut | Action | @@ -256,3 +269,7 @@ src/ - No external servers, no telemetry, no analytics - The extension only activates on supported AI sites (and any custom domains you add) - Your real identity data never leaves your machine + +## License + +[MIT](LICENSE) — use it for anything, commercial or personal, modify it, redistribute it, relicense it. Just keep the copyright notice in copies of the code. diff --git a/package.json b/package.json index 50da784..b02c7ec 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,7 @@ "name": "silent-send", "version": "0.3.0", "private": true, + "license": "MIT", "description": "Browser extension that substitutes personal data before sending to AI services", "scripts": { "build:chrome": "./build.sh chrome",