backthread 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +13 -4
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -14,7 +14,7 @@ sessions, so you can ask *"how does X work?"* and stay oriented without
14
14
  spelunking through PRs. The decisions become a live **"How it works"** diagram
15
15
  and changelog at [backthread.dev](https://backthread.dev).
16
16
 
17
- ## Your code never leaves your machine
17
+ ## Your source code never leaves your machine
18
18
 
19
19
  Backthread reads your agent **transcripts**, not your repo. Before anything is
20
20
  sent, the CLI redacts every transcript **locally**:
@@ -23,9 +23,18 @@ sent, the CLI redacts every transcript **locally**:
23
23
  - **Keeps** only natural-language prompts and the agent's reasoning.
24
24
  - **Redacts** any fenced code block to `[code redacted]`.
25
25
 
26
- Only the derived, natural-language *decisions* ever leave your machine. The
27
- redaction fence is open source ([`@backthread/redact`](https://www.npmjs.com/package/@backthread/redact))
28
- so you can verify it read more at [backthread.dev/security](https://backthread.dev/security).
26
+ So no source code and no tool I/O ever leave your machine. Because the default
27
+ path runs inference on our servers, what *does* leave is the **redacted
28
+ transcript** natural-language prose only. The Worker re-runs the fenced-code
29
+ scrub server-side as a fail-closed backstop, derives the **decisions**, and
30
+ discards the transcript right after — processed in memory, never stored. Only
31
+ the decisions are persisted.
32
+
33
+ That's a weaker claim than the bring-your-own-key path — where nothing but the
34
+ derived decisions ever leaves your machine — which is designed and coming. We'd
35
+ rather say so than paper over it. The redaction fence is open source
36
+ ([`@backthread/redact`](https://www.npmjs.com/package/@backthread/redact)) so you
37
+ can verify it — read more at [backthread.dev/security](https://backthread.dev/security).
29
38
 
30
39
  ## Quick start
31
40
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "backthread",
3
- "version": "0.1.1",
4
- "description": "Backthread CLI — capture the *why* of your AI-coded changes from your Claude Code sessions, and query your codebase's architectural memory without leaving the terminal. Source code and tool I/O are redacted locally before anything leaves your machine.",
3
+ "version": "0.1.2",
4
+ "description": "Backthread CLI — capture the why behind your AI-coded changes from your Claude Code sessions, and ask how your codebase works without leaving the terminal. Source code and tool I/O are redacted locally before anything leaves your machine.",
5
5
  "license": "MIT",
6
6
  "author": "Backthread",
7
7
  "homepage": "https://backthread.dev",