remote-agents 0.1.7 → 0.1.9
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 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -38,6 +38,22 @@ Supported platforms: linux x64/arm64, macOS x64/arm64, windows x64.
|
|
|
38
38
|
`install`, …). See the [project README](https://github.com/47-ronn/tunshell_mcp_agents#readme)
|
|
39
39
|
for the full documentation.
|
|
40
40
|
|
|
41
|
+
## One-command client registration
|
|
42
|
+
|
|
43
|
+
Skip hand-editing config files — register `remote-agents` as an MCP server in
|
|
44
|
+
your agent directly. Connection flags are baked into the entry:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
remote-agents install-mcp --client cursor \
|
|
48
|
+
--relay wss://<your-relay-host> --room myroom --token <secret>
|
|
49
|
+
|
|
50
|
+
remote-agents install-mcp # no --client: list supported clients
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
Supported: `claude-desktop`, `claude-code`, `cursor`, `cline`, `roo`, `kilo`,
|
|
54
|
+
`windsurf`, `zed`, `opencode` (config merged in place, preserving existing
|
|
55
|
+
servers) and `continue`, `goose` (YAML — a paste-able snippet is printed).
|
|
56
|
+
|
|
41
57
|
## Update checks
|
|
42
58
|
|
|
43
59
|
When started in a long-running mode (`run` / `mcp` / `hybrid`), the launcher does
|
package/package.json
CHANGED