@n1creator/openacp-cli 2026.712.9 → 2026.712.11
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 +24 -3
- package/dist/cli.js +2813 -1005
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +98 -7
- package/dist/index.js +1644 -496
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -227,9 +227,11 @@ not globally intercepted. Credentials live in a separate mode-0600 secret store
|
|
|
227
227
|
and never appear in route files, agent definitions, status responses, or
|
|
228
228
|
structured OpenACP logs.
|
|
229
229
|
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
230
|
+
In Telegram, open **Settings → Proxy Management** or use `/proxy` directly.
|
|
231
|
+
Both paths render the same connector-neutral proxy home; other adapters can use
|
|
232
|
+
that `/proxy` command model too. CLI and REST automation remain available through
|
|
233
|
+
`openacp proxy` and `/api/v1/proxy`. Channel changes are tested before they are
|
|
234
|
+
saved. See [Scoped Proxy Routing](docs/gitbook/features/proxy-routing.md).
|
|
233
235
|
|
|
234
236
|
### Operations
|
|
235
237
|
|
|
@@ -299,11 +301,30 @@ openacp tunnel list
|
|
|
299
301
|
# Scoped proxy routing (requires running daemon)
|
|
300
302
|
openacp proxy status
|
|
301
303
|
openacp proxy import usa --env-file ~/.openacp/secrets/proxy.env
|
|
304
|
+
openacp proxy create backup --from-json ~/.openacp/secrets/backup-proxy.json
|
|
305
|
+
openacp proxy update backup --from-json ~/.openacp/secrets/backup-proxy.json
|
|
302
306
|
openacp proxy set channels.telegram profile:usa
|
|
303
307
|
openacp proxy set agents.codex profile:usa
|
|
304
308
|
openacp proxy test --scope channels.telegram
|
|
305
309
|
```
|
|
306
310
|
|
|
311
|
+
The protected JSON file supports a Quick URL mode: use either separate
|
|
312
|
+
`protocol`, `host`, and `port` fields or one write-only `proxyUrl` such as
|
|
313
|
+
`{"proxyUrl":"socks5h://user:password@proxy.example:1080"}`. The two forms are
|
|
314
|
+
mutually exclusive. A URL must include an explicit port; credentials are parsed
|
|
315
|
+
and stored separately, and the original URL is never persisted or returned.
|
|
316
|
+
|
|
317
|
+
The connector-neutral `/proxy` interface requires `network:proxy:manage` before
|
|
318
|
+
showing status, profiles, routes, diagnostics, or tests. It provides add/edit,
|
|
319
|
+
candidate test-before-save, credential clearing, paginated route controls, and
|
|
320
|
+
atomic delete-with-reassignment. Telegram deletes credential replies before use;
|
|
321
|
+
if that guarantee is unavailable, OpenACP refuses the value and directs the
|
|
322
|
+
operator to a mode-0600 CLI/API input file.
|
|
323
|
+
|
|
324
|
+
Use a unique Telegram bot for each OpenACP instance. Command synchronization has
|
|
325
|
+
one heartbeat-backed owner per public bot ID and a second instance will not
|
|
326
|
+
modify the first instance's command menus.
|
|
327
|
+
|
|
307
328
|
> **Full CLI reference** — [CLI Commands](https://openacp.gitbook.io/docs/api-reference/cli-commands)
|
|
308
329
|
|
|
309
330
|
## Documentation
|