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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "backthread",
|
|
3
3
|
"displayName": "Backthread",
|
|
4
4
|
"description": "Backthread helps you understand your codebase while AI ships features. It captures the why behind every Claude Code session so you can ask \"how does X work?\" without digging through PRs.",
|
|
5
|
-
"version": "0.
|
|
5
|
+
"version": "0.9.0",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Backthread"
|
|
8
8
|
},
|
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[](https://www.npmjs.com/package/backthread)
|
|
4
4
|
[](./LICENSE)
|
|
5
5
|
|
|
6
|
-
**
|
|
6
|
+
**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.**
|
|
7
7
|
|
|
8
8
|
```bash
|
|
9
9
|
npx backthread
|
|
@@ -63,8 +63,9 @@ The bare command is the unified front door. Under the hood it:
|
|
|
63
63
|
|
|
64
64
|
Then keep coding. At the end of every Claude Code session, Backthread captures
|
|
65
65
|
the decisions automatically — nothing to remember. Ask *"how does X work?"* right
|
|
66
|
-
|
|
67
|
-
the
|
|
66
|
+
from the terminal (`backthread how "how does auth work?"`) or inside Claude Code
|
|
67
|
+
(the `backthread` MCP server exposes a `query` tool + a `/backthread:how` slash
|
|
68
|
+
command), or open the live diagram at [app.backthread.dev](https://app.backthread.dev).
|
|
68
69
|
|
|
69
70
|
### Claude Code plugin (alternative)
|
|
70
71
|
|
|
@@ -102,15 +103,18 @@ instead, and Codex users the [plugin](https://github.com/backthread/backthread/t
|
|
|
102
103
|
## Commands
|
|
103
104
|
|
|
104
105
|
```
|
|
105
|
-
backthread
|
|
106
|
-
|
|
107
|
-
backthread
|
|
108
|
-
backthread
|
|
109
|
-
backthread login
|
|
110
|
-
backthread
|
|
111
|
-
backthread
|
|
112
|
-
backthread
|
|
113
|
-
backthread
|
|
106
|
+
backthread Set up Backthread — the front door (sign in + connect + capture).
|
|
107
|
+
Idempotent: a returning user is told they're good to go.
|
|
108
|
+
backthread how "<question>" Ask how/why something works — a grounded, cited answer from your log
|
|
109
|
+
backthread install Set up capture for this repo (sign in + hook + backfill)
|
|
110
|
+
backthread login / logout Authorize this device / sign it out (drops the local token)
|
|
111
|
+
backthread doctor Diagnose your setup (auth, hook, connectivity, version, repo)
|
|
112
|
+
backthread update Update a global install to the latest (also -u)
|
|
113
|
+
backthread version Print the installed version (also --version, -v)
|
|
114
|
+
backthread whoami Show this device's config (your token is never printed)
|
|
115
|
+
backthread capture Capture a session's decisions (run automatically by the hook)
|
|
116
|
+
backthread mcp Start the MCP server — the capture + "how does X work?" query tools
|
|
117
|
+
backthread help Show the full usage (also --help, -h)
|
|
114
118
|
```
|
|
115
119
|
|
|
116
120
|
## Requirements
|