bridgellm 0.1.5 → 0.1.7
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 +16 -3
- package/package.json +8 -9
package/README.md
CHANGED
|
@@ -18,6 +18,12 @@ Or use without installing:
|
|
|
18
18
|
npx bridgellm <command>
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
+
Also available via Homebrew:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
brew install starvader13/bridgellm/bridgellm
|
|
25
|
+
```
|
|
26
|
+
|
|
21
27
|
## Quick Start
|
|
22
28
|
|
|
23
29
|
```bash
|
|
@@ -62,6 +68,10 @@ bridgellm team join <invite-code> # Join with invite code
|
|
|
62
68
|
bridgellm config show # View settings
|
|
63
69
|
bridgellm config set role <role> # Change role
|
|
64
70
|
bridgellm config set team <team> # Switch team
|
|
71
|
+
|
|
72
|
+
# Cleanup
|
|
73
|
+
bridgellm clean # Remove local project config
|
|
74
|
+
bridgellm reset # Remove everything, start fresh
|
|
65
75
|
```
|
|
66
76
|
|
|
67
77
|
### Available Roles
|
|
@@ -83,8 +93,9 @@ No inference on the server. Zero compute costs. Just a database and message rout
|
|
|
83
93
|
|
|
84
94
|
| File | Location | What it stores |
|
|
85
95
|
|------|----------|---------------|
|
|
86
|
-
| `~/.bridgellm/config.yml` | Home dir | Team, role
|
|
96
|
+
| `~/.bridgellm/config.yml` | Home dir | Team, role |
|
|
87
97
|
| `~/.bridgellm/token` | Home dir | Auth token |
|
|
98
|
+
| `~/.bridgellm/server` | Home dir | Server URL |
|
|
88
99
|
| `.bridgellm.yml` | Project root | Feature name (gitignored) |
|
|
89
100
|
| `.mcp.json` | Project root | MCP server config (gitignored) |
|
|
90
101
|
| `CLAUDE.md` | Project root | Agent instructions |
|
|
@@ -97,8 +108,10 @@ No inference on the server. Zero compute costs. Just a database and message rout
|
|
|
97
108
|
|
|
98
109
|
## Links
|
|
99
110
|
|
|
100
|
-
- [
|
|
101
|
-
- [npm
|
|
111
|
+
- [GitHub](https://github.com/starvader13/bridgellm)
|
|
112
|
+
- [npm](https://www.npmjs.com/package/bridgellm)
|
|
113
|
+
- [Homebrew](https://github.com/starvader13/homebrew-bridgellm)
|
|
114
|
+
- [Report an Issue](https://github.com/starvader13/bridgellm/issues)
|
|
102
115
|
|
|
103
116
|
## License
|
|
104
117
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bridgellm",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.7",
|
|
4
|
+
"description": "Let your AI coding agents talk to each other across services",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"bridgellm": "dist/index.js"
|
|
@@ -15,7 +15,6 @@
|
|
|
15
15
|
"keywords": [
|
|
16
16
|
"mcp",
|
|
17
17
|
"mcp-server",
|
|
18
|
-
"mcp-client",
|
|
19
18
|
"model-context-protocol",
|
|
20
19
|
"claude",
|
|
21
20
|
"claude-code",
|
|
@@ -32,21 +31,21 @@
|
|
|
32
31
|
"context-sharing",
|
|
33
32
|
"api-contracts",
|
|
34
33
|
"developer-tools",
|
|
35
|
-
"devtools",
|
|
36
34
|
"collaboration"
|
|
37
35
|
],
|
|
38
36
|
"author": "starvader",
|
|
39
|
-
"homepage": "https://github.com/starvader13/
|
|
37
|
+
"homepage": "https://github.com/starvader13/bridgellm#readme",
|
|
40
38
|
"bugs": {
|
|
41
|
-
"url": "https://github.com/starvader13/
|
|
39
|
+
"url": "https://github.com/starvader13/bridgellm/issues"
|
|
42
40
|
},
|
|
43
|
-
"license": "MIT",
|
|
44
41
|
"repository": {
|
|
45
42
|
"type": "git",
|
|
46
|
-
"url": "git+https://github.com/starvader13/
|
|
43
|
+
"url": "git+https://github.com/starvader13/bridgellm.git"
|
|
47
44
|
},
|
|
45
|
+
"license": "MIT",
|
|
48
46
|
"files": [
|
|
49
|
-
"dist"
|
|
47
|
+
"dist",
|
|
48
|
+
"README.md"
|
|
50
49
|
],
|
|
51
50
|
"dependencies": {
|
|
52
51
|
"commander": "^13.0.0",
|