@rebon/cli-darwin-arm64 0.14.0 → 0.16.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/README.md +11 -0
- package/bin/rebon +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -36,6 +36,10 @@ rebon --provider openrouter --model gpt-5.5
|
|
|
36
36
|
|
|
37
37
|
# Run as an ACP JSON-RPC server on stdio (for editor / IDE integrations)
|
|
38
38
|
rebon --acp
|
|
39
|
+
|
|
40
|
+
# Work on a project that lives on another machine
|
|
41
|
+
rebon remote add prod deploy@build.example --path /srv/app
|
|
42
|
+
rebon --remote prod
|
|
39
43
|
```
|
|
40
44
|
|
|
41
45
|
The first run drops you into onboarding: pick a provider, sign in (OAuth +
|
|
@@ -49,6 +53,8 @@ PKCE for Claude / OpenAI, or paste an API key), and you're in.
|
|
|
49
53
|
| `--provider <name>` | Override `activeCustomProvider` from `~/.rebon/config.json`. |
|
|
50
54
|
| `--model <id>` | Override the resolved provider's default model. |
|
|
51
55
|
| `--resume <id>` | Load an on-disk transcript and replay it into the TUI. |
|
|
56
|
+
| `--remote <name>` | Run the session on a configured remote host over ssh. |
|
|
57
|
+
| `--remote-path <p>` | Project directory on that remote. Requires `--remote`. |
|
|
52
58
|
|
|
53
59
|
## Config & data
|
|
54
60
|
|
|
@@ -83,6 +89,11 @@ directory.
|
|
|
83
89
|
- **Skills, agents, memory** — bundled and user skills; spawnable
|
|
84
90
|
worker agents and a coordinator for background tasks; a persistent memory
|
|
85
91
|
layer with recall and surfacing.
|
|
92
|
+
- **Remote hosts** — run a session against a project on another
|
|
93
|
+
machine over ssh. A server build is installed on the far end and the
|
|
94
|
+
agent executes there — shell, filesystem, git — while this machine
|
|
95
|
+
keeps the UI and the transcript. `rebon remote add`, then
|
|
96
|
+
`rebon --remote <name>`.
|
|
86
97
|
- **ACP server** — drive Rebon from an editor over stdio JSON-RPC:
|
|
87
98
|
`initialize`, `session/new`, `session/load`, `session/list`,
|
|
88
99
|
`session/prompt`, `session/cancel`, reverse-RPC permission prompts,
|
package/bin/rebon
CHANGED
|
Binary file
|