@n1creator/openacp-cli 2026.713.1 → 2026.713.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.
- package/README.md +3 -3
- package/dist/cli.js +2706 -1061
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +83 -5
- package/dist/index.js +1230 -446
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -103,7 +103,7 @@ audio attachment
|
|
|
103
103
|
- `local-whisper` runs on the OpenACP host without an API key and reuses its environment and model cache.
|
|
104
104
|
- Groq provides an optional hosted STT path.
|
|
105
105
|
- Failed transcription preserves the original audio instead of silently dropping it.
|
|
106
|
-
-
|
|
106
|
+
- In Telegram, open **Settings → Speech-to-text** or use `/speech` to see the selected method and setup state, choose Off, Local, or Groq, and edit local settings. Discord and Slack use the same service after host configuration with `openacp plugin configure @openacp/speech`; their current adapters do not register a native `/speech` slash command. A candidate Groq key is checked before it can replace the saved hidden key; changes hot-reload without replacing TTS providers.
|
|
107
107
|
|
|
108
108
|
Local Whisper requires Python 3 and either `uv` or `python3-venv`; its runtime is prepared on first use. See [Voice and Speech](https://github.com/an1creator/OpenACP/blob/main/docs/gitbook/using-openacp/voice-and-speech.md).
|
|
109
109
|
|
|
@@ -119,9 +119,9 @@ agents.cursor: direct
|
|
|
119
119
|
services.default: direct
|
|
120
120
|
```
|
|
121
121
|
|
|
122
|
-
- In Telegram, open **Settings →
|
|
122
|
+
- In Telegram, open **Settings → Network proxy** or use `/proxy`. Current Discord and Slack adapters do not register a native `/proxy` slash command, so manage their shared routes with the CLI or authenticated REST API. The status-first menu separates saved overrides from effective inherited routes and lets a tested profile be assigned directly to human-labelled traffic.
|
|
123
123
|
- CLI and REST automation are available through `openacp proxy` and `/api/v1/proxy`.
|
|
124
|
-
- `direct` removes inherited proxy environment variables from the selected ACP process
|
|
124
|
+
- `direct` removes inherited proxy environment variables from the selected ACP process. An explicit `inherit` route uses host proxy environment variables; clearing an exact override returns that traffic to its category/global parent route.
|
|
125
125
|
- Credentials are write-only, stored separately in a mode-0600 secret store, and never returned in route or status data.
|
|
126
126
|
- Protected JSON imports accept a write-only **Quick URL** in `proxyUrl`; it requires an explicit port and is mutually exclusive with separate endpoint or credential fields.
|
|
127
127
|
- Telegram deletes credential replies before use; environments without that guarantee use protected CLI/API input files.
|