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.
Files changed (2) hide show
  1. package/README.md +48 -27
  2. 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
- ## Quick Start
7
+ ## Install
8
8
 
9
9
  ```bash
10
- # Login with GitHub
11
- npx bridgellm login
10
+ # Option 1: Install globally (use 'bridgellm' directly)
11
+ npm install -g bridgellm
12
12
 
13
- # In your project directory
14
- npx bridgellm connect
13
+ # Option 2: No install (use 'npx' each time)
14
+ npx bridgellm
15
15
  ```
16
16
 
17
- That's it. Restart Claude Code and your agent can now share context with other agents on your team.
17
+ ## Quick Start
18
+
19
+ ```bash
20
+ # 1. Login with GitHub (one-time)
21
+ bridgellm login
18
22
 
19
- ## What Happens
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
- 1. **Login** authenticates via GitHub, sets up your team and role
22
- 2. **Connect** — picks a feature, writes `.mcp.json` so Claude Code connects to BridgeLLM
28
+ # 3. Restart Claude Code done!
29
+ ```
23
30
 
24
- Your agent gets 6 tools:
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
- bridgellm login # Authenticate with GitHub
39
- bridgellm connect # Connect this project
40
- bridgellm team create <name> # Create a team
41
- bridgellm team join <code> # Join with invite code
42
- bridgellm config show # View settings
43
- bridgellm config set role frontend # Change role
44
- bridgellm config set team other # Change team
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 Server ◀──── bridge_read ──── Their Claude
51
-
52
- PostgreSQL
53
- (shared context)
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 | Where | Notes |
63
- |---------|-------|-------|
64
- | Token | Global | From login |
65
- | Role | Global | Your role (backend, frontend, etc.) |
66
- | Team | Global | Your team |
67
- | Feature | Local | What you're working on |
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.)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bridgellm",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "BridgeLLM CLI — let AI coding agents talk to each other across teams",
5
5
  "type": "module",
6
6
  "bin": {