bridgellm 0.1.0 → 0.1.1
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 +48 -27
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,24 +4,31 @@ Let AI coding agents talk to each other across teams.
|
|
|
4
4
|
|
|
5
5
|
When two engineers work on different services, their AI agents (Claude Code, Cursor, etc.) can share API contracts, ask questions, and get answers — without Slack.
|
|
6
6
|
|
|
7
|
-
##
|
|
7
|
+
## Install
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
#
|
|
11
|
-
|
|
10
|
+
# Option 1: Install globally (use 'bridgellm' directly)
|
|
11
|
+
npm install -g bridgellm
|
|
12
12
|
|
|
13
|
-
#
|
|
14
|
-
npx bridgellm
|
|
13
|
+
# Option 2: No install (use 'npx' each time)
|
|
14
|
+
npx bridgellm
|
|
15
15
|
```
|
|
16
16
|
|
|
17
|
-
|
|
17
|
+
## Quick Start
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
# 1. Login with GitHub (one-time)
|
|
21
|
+
bridgellm login
|
|
18
22
|
|
|
19
|
-
|
|
23
|
+
# 2. Connect your project (in your project directory)
|
|
24
|
+
bridgellm connect
|
|
25
|
+
# → picks your team, feature, and role
|
|
26
|
+
# → writes .mcp.json + CLAUDE.md
|
|
20
27
|
|
|
21
|
-
|
|
22
|
-
|
|
28
|
+
# 3. Restart Claude Code — done!
|
|
29
|
+
```
|
|
23
30
|
|
|
24
|
-
Your agent
|
|
31
|
+
Your agent now has 6 tools to coordinate with other agents:
|
|
25
32
|
|
|
26
33
|
| Tool | What it does |
|
|
27
34
|
|------|-------------|
|
|
@@ -35,22 +42,31 @@ Your agent gets 6 tools:
|
|
|
35
42
|
## Commands
|
|
36
43
|
|
|
37
44
|
```bash
|
|
38
|
-
|
|
39
|
-
bridgellm
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
bridgellm
|
|
43
|
-
|
|
44
|
-
|
|
45
|
+
# Auth
|
|
46
|
+
bridgellm login # Login via GitHub OAuth
|
|
47
|
+
|
|
48
|
+
# Project setup
|
|
49
|
+
bridgellm connect # Connect this project to BridgeLLM
|
|
50
|
+
|
|
51
|
+
# Team management
|
|
52
|
+
bridgellm team create <name> # Create a team, get invite code
|
|
53
|
+
bridgellm team join <invite-code> # Join a team
|
|
54
|
+
|
|
55
|
+
# Settings
|
|
56
|
+
bridgellm config show # View current config
|
|
57
|
+
bridgellm config set role frontend # Change your role
|
|
58
|
+
bridgellm config set team my-team # Change your team
|
|
45
59
|
```
|
|
46
60
|
|
|
61
|
+
> All commands also work with `npx`: `npx bridgellm login`, `npx bridgellm connect`, etc.
|
|
62
|
+
|
|
47
63
|
## How It Works
|
|
48
64
|
|
|
49
65
|
```
|
|
50
|
-
Your Claude ──── bridge_write ────▶ BridgeLLM
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
66
|
+
Your Claude ──── bridge_write ────▶ BridgeLLM ◀──── bridge_read ──── Their Claude
|
|
67
|
+
│
|
|
68
|
+
PostgreSQL
|
|
69
|
+
(shared context)
|
|
54
70
|
```
|
|
55
71
|
|
|
56
72
|
No LLM calls on the server. Zero AI costs. Just a database that your agents read and write to.
|
|
@@ -59,9 +75,14 @@ No LLM calls on the server. Zero AI costs. Just a database that your agents read
|
|
|
59
75
|
|
|
60
76
|
Global config lives in `~/.bridgellm/`. Per-project config in `.bridgellm.yml`.
|
|
61
77
|
|
|
62
|
-
| Setting |
|
|
63
|
-
|
|
64
|
-
| Token | Global |
|
|
65
|
-
| Role | Global |
|
|
66
|
-
| Team | Global |
|
|
67
|
-
| Feature |
|
|
78
|
+
| Setting | Scope | Set by |
|
|
79
|
+
|---------|-------|--------|
|
|
80
|
+
| Token | Global | `bridgellm login` |
|
|
81
|
+
| Role | Global | `bridgellm login` or `bridgellm config set role` |
|
|
82
|
+
| Team | Global (local override) | `bridgellm login` or `bridgellm config set team` |
|
|
83
|
+
| Feature | Per-project | `bridgellm connect` |
|
|
84
|
+
|
|
85
|
+
## Requirements
|
|
86
|
+
|
|
87
|
+
- Node.js 18+
|
|
88
|
+
- An MCP-compatible AI agent (Claude Code, Cursor, etc.)
|