backthread 0.7.0 → 0.9.0
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.
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +16 -12
- package/dist-bundle/backthread.js +700 -191
- package/package.json +13 -7
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "backthread",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Backthread
|
|
3
|
+
"version": "0.9.0",
|
|
4
|
+
"description": "Backthread keeps the thread on what your AI coding agent ships — it captures the why behind every change and turns it into a living 'How it works' view of your codebase you can actually query.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Backthread",
|
|
7
7
|
"homepage": "https://backthread.dev",
|
|
@@ -12,14 +12,20 @@
|
|
|
12
12
|
},
|
|
13
13
|
"bugs": "https://github.com/backthread/backthread/issues",
|
|
14
14
|
"keywords": [
|
|
15
|
+
"backthread",
|
|
16
|
+
"ai-coding-agent",
|
|
15
17
|
"claude-code",
|
|
16
|
-
"
|
|
18
|
+
"cursor",
|
|
19
|
+
"codex",
|
|
20
|
+
"codebase-context",
|
|
21
|
+
"code-comprehension",
|
|
22
|
+
"how-it-works",
|
|
17
23
|
"architecture",
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
24
|
+
"decision-log",
|
|
25
|
+
"ai",
|
|
26
|
+
"mcp",
|
|
21
27
|
"cli",
|
|
22
|
-
"
|
|
28
|
+
"developer-tools"
|
|
23
29
|
],
|
|
24
30
|
"type": "module",
|
|
25
31
|
"comment": "PUBLISHED BIN = the self-contained esbuild bundle (dist-bundle/backthread.js), NOT the tsc dist/. Reason: @backthread/redact ships SOURCE-ONLY (.ts), and Node refuses to strip types for files inside node_modules — so a registry install of the tsc dist/ would fail to load redact at runtime. The bundle inlines redact (and the MCP SDK), so the published CLI has ZERO runtime dependencies and `npx backthread` stays fast and robust. Dev/test resolve @backthread/redact via the workspace symlink (realpath escapes node_modules → stripping applies).",
|