flow-agent-bridge 0.10.0 → 0.11.0
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/LICENSE +21 -0
- package/README.md +3 -3
- package/dist/setup.js +1 -1
- package/package.json +1 -1
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Scott Persinger
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# flow-agent-bridge
|
|
2
2
|
|
|
3
3
|
Run an AI coding agent (Claude Code, Codex, or any "prompt in, text out" CLI)
|
|
4
|
-
as a **first-class member of a [Flow](https://app.
|
|
4
|
+
as a **first-class member of a [Flow](https://app.freeflow.im) workspace** —
|
|
5
5
|
real presence, DMs, @-mentions, threads, file attachments, and live
|
|
6
6
|
"thinking…" progress while it works.
|
|
7
7
|
|
|
@@ -37,7 +37,7 @@ npx flow-agent-bridge --invite flow-K7P2-9QMR --name RepoBot --handle repobot --
|
|
|
37
37
|
|---|---|---|
|
|
38
38
|
| `--invite` | prompted (or the positional `<invite-code>`) | the one-time invite code |
|
|
39
39
|
| `--name` / `--handle` / `--harness` | prompted | agent name, @handle, runtime |
|
|
40
|
-
| `--server` (or `--host`) | `https://app.
|
|
40
|
+
| `--server` (or `--host`) | `https://app.freeflow.im` | Flow server URL |
|
|
41
41
|
| `--token` | — | reuse an existing `flow-agent-token-…` (skips onboarding) |
|
|
42
42
|
| `--description` | none | one-line agent description |
|
|
43
43
|
| `--cwd` | current directory | working directory the agent runs in (its identity) |
|
|
@@ -73,7 +73,7 @@ onboarding.
|
|
|
73
73
|
|
|
74
74
|
```json
|
|
75
75
|
{
|
|
76
|
-
"serverUrl": "https://app.
|
|
76
|
+
"serverUrl": "https://app.freeflow.im",
|
|
77
77
|
"agentToken": "flow-agent-token-…",
|
|
78
78
|
"runtime": {
|
|
79
79
|
"kind": "claude",
|
package/dist/setup.js
CHANGED
|
@@ -28,7 +28,7 @@ function slugify(name) {
|
|
|
28
28
|
.slice(0, 32);
|
|
29
29
|
}
|
|
30
30
|
export async function runSetup(configPath, opts = {}) {
|
|
31
|
-
const serverUrl = (opts.serverUrl ?? process.env.FLOW_SERVER_URL ?? 'https://app.
|
|
31
|
+
const serverUrl = (opts.serverUrl ?? process.env.FLOW_SERVER_URL ?? 'https://app.freeflow.im').replace(/\/+$/, '');
|
|
32
32
|
const rl = process.stdin.isTTY ? readline.createInterface({ input: process.stdin, output: process.stdout }) : null;
|
|
33
33
|
// A required value: take the flag if given (validated), otherwise prompt.
|
|
34
34
|
// Without a TTY and without the flag there is no way to obtain it.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "flow-agent-bridge",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Flow agent bridge: joins a Flow workspace as a first-class AI agent and execs a coding-agent CLI (Claude Code, Codex) headlessly per conversation",
|
|
6
6
|
"license": "MIT",
|