@obtoai/agent-bridge 0.1.0-beta.1 → 0.1.0-beta.2

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 +13 -9
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  A local daemon that lets a coding agent — [Claude Code](https://claude.ai/code) or [OpenAI Codex](https://developers.openai.com/codex) — running on your machine be driven from the [OBTO Agent Bridge](https://obto.co) web UI, even when you're away from the keyboard.
4
4
 
5
- You post a message on a thread from your phone or laptop. The daemon (running on your Mac, no port forwarding required) receives it over a long-lived HTTPS stream, spawns or resumes an agent session in your project directory, and the response posts back to the bridge thread within seconds.
5
+ You post a message on a thread from your phone or laptop. The daemon (running on your machine, no port forwarding required) receives it over a long-lived HTTPS stream, spawns or resumes an agent session in your project directory, and the response posts back to the bridge thread within seconds.
6
6
 
7
7
  ## Status
8
8
 
@@ -10,7 +10,7 @@ You post a message on a thread from your phone or laptop. The daemon (running on
10
10
 
11
11
  ## What you'll need
12
12
 
13
- - macOS or Linux, **Node.js 18.17+** (Windows support is in testing)
13
+ - macOS, Linux, or Windows, **Node.js 18.17+**
14
14
  - One coding agent installed, with your own auth:
15
15
  - **Claude** — Claude Code / the Claude Agent SDK, billed to your Anthropic account; or
16
16
  - **Codex** — the `codex` CLI (`npm i -g @openai/codex`), signed in to your OpenAI/ChatGPT account
@@ -65,7 +65,7 @@ Now open the bridge UI in any browser, log in with the browser credentials from
65
65
  - Reply on an existing thread — daemon resumes the session bound to that thread
66
66
  - Start a new thread via the **+ New thread** button — daemon spawns a fresh session in your project directory
67
67
 
68
- Within ~5–10 seconds you should see Claude's reply appear back on the thread.
68
+ Within ~5–10 seconds you should see the agent's reply appear back on the thread.
69
69
 
70
70
  ## Other commands
71
71
 
@@ -78,8 +78,8 @@ Within ~5–10 seconds you should see Claude's reply appear back on the thread.
78
78
  ## How it actually works
79
79
 
80
80
  ```
81
- Your phone OBTO server Your Mac
82
- ───────── ─────────── ────────
81
+ Your phone OBTO server Your machine
82
+ ───────── ─────────── ────────────
83
83
  [reply form] ──► /api/reply ─► Mongo (durable)
84
84
  └─► RabbitMQ (publish bridge.<acct>.reply.<thread>)
85
85
  ◄── /api/bridge/stream (SSE, Bearer auth)
@@ -103,11 +103,15 @@ Key bits:
103
103
 
104
104
  The daemon runs your chosen agent on your machine with **your** credentials — Anthropic for `claude` (whatever Claude Code uses: `ANTHROPIC_API_KEY` or your Claude.ai session), or your OpenAI/ChatGPT account for `codex`. Every bridge-driven turn is a normal API call billed to you. We don't proxy.
105
105
 
106
- ## Privacy and what we store
106
+ ## Data handling
107
107
 
108
- - Every message you and the agent post on a thread is stored in OBTO's Mongo. Bridge threads are strictly scoped to your account; we cannot see other tenants' threads.
109
- - Your daemon's `apiToken` is stored locally only; on the server we store a SHA-256 hash.
110
- - Right of erasure: email `support@obto.co` to delete your account and all associated messages.
108
+ **Your model traffic never touches us.** The daemon runs on your machine and calls Anthropic or OpenAI with *your own* credentials. Your prompts, your code, and the model's responses pass directly between your machine and the model provider, under your own API account and its terms. OBTO does not proxy, route, or see that traffic.
109
+
110
+ **What the bridge stores.** For threads to work, the messages you and the agent post are saved in OBTO's database — that's what makes a thread durable and readable from your phone. Threads are strictly scoped to your account; one tenant can never see another's. Your daemon's API token is stored server-side only as a SHA-256 hash; the plaintext token never leaves your local config file.
111
+
112
+ **What we don't do with it.** OBTO does not use your bridge messages to train models, and does not sell or share your data with third parties.
113
+
114
+ **Deletion.** Email `support@obto.co` to delete your account and every message associated with it.
111
115
 
112
116
  ## License
113
117
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@obtoai/agent-bridge",
3
- "version": "0.1.0-beta.1",
3
+ "version": "0.1.0-beta.2",
4
4
  "description": "Local consumer for the OBTO Agent Bridge. Receives bridge events over SSE and drives a coding agent (Claude Code or OpenAI Codex) on your machine.",
5
5
  "license": "Apache-2.0",
6
6
  "author": "OBTO Inc.",