runbrief 0.1.3 → 0.1.5
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/README.md +9 -4
- package/dist/cli.js +1276 -142
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -13,13 +13,13 @@ name used in the install command.
|
|
|
13
13
|
Claude Code:
|
|
14
14
|
|
|
15
15
|
```sh
|
|
16
|
-
claude mcp add --transport stdio --scope user brief -- npx -y runbrief
|
|
16
|
+
claude mcp add --transport stdio --scope user brief -- npx -y runbrief@^0.1.5
|
|
17
17
|
```
|
|
18
18
|
|
|
19
19
|
Codex:
|
|
20
20
|
|
|
21
21
|
```sh
|
|
22
|
-
codex mcp add brief -- npx -y runbrief
|
|
22
|
+
codex mcp add brief -- npx -y runbrief@^0.1.5
|
|
23
23
|
```
|
|
24
24
|
|
|
25
25
|
Generic MCP configuration:
|
|
@@ -29,7 +29,7 @@ Generic MCP configuration:
|
|
|
29
29
|
"mcpServers": {
|
|
30
30
|
"brief": {
|
|
31
31
|
"command": "npx",
|
|
32
|
-
"args": ["-y", "runbrief
|
|
32
|
+
"args": ["-y", "runbrief@^0.1.5"],
|
|
33
33
|
"env": {
|
|
34
34
|
"BRIEF_CONNECTOR_DISTRIBUTION": "package"
|
|
35
35
|
}
|
|
@@ -42,6 +42,11 @@ Brief works locally without an account. Connect a Brief workspace only when
|
|
|
42
42
|
you want approved team context, derived scan sync, shared learnings, and hosted
|
|
43
43
|
proof history.
|
|
44
44
|
|
|
45
|
+
The published setup uses the compatible patch range (`^0.1.5`). Each fresh MCP
|
|
46
|
+
start resolves the latest compatible connector patch, so routine fixes do not
|
|
47
|
+
require a reinstall. A new setup is needed only when a future release changes
|
|
48
|
+
the supported minor or major version.
|
|
49
|
+
|
|
45
50
|
## License and boundaries
|
|
46
51
|
|
|
47
52
|
The local Brief Connector distributed in this package is licensed under
|
|
@@ -89,7 +94,7 @@ to another machine after redemption.
|
|
|
89
94
|
To remove the local credential and pair again:
|
|
90
95
|
|
|
91
96
|
```bash
|
|
92
|
-
npx -y runbrief
|
|
97
|
+
npx -y runbrief@^0.1.5 cloud-logout
|
|
93
98
|
```
|
|
94
99
|
|
|
95
100
|
The explicit `BRIEF_API_URL` + `BRIEF_API_KEY` environment path remains as an
|