You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Text messages (non-commands) are treated as prompts for OpenCode only when no blocking interaction is active.
104
+
Text messages (non-commands) are treated as prompts for OpenCode only when no blocking interaction is active. Voice/audio messages are transcribed and then sent as prompts when STT is configured.
103
105
104
106
Interaction routing rules:
105
107
@@ -123,6 +125,7 @@ Interaction routing rules:
123
125
-[x] Sending code blocks as files when needed
124
126
-[x] Configurable batching of service messages (thinking + tool updates): recommended `>=2` sec for Telegram rate limits; `0` = immediate
125
127
-[x] Configurable service message visibility via env flags (`HIDE_THINKING_MESSAGES`, `HIDE_TOOL_CALL_MESSAGES`)
128
+
-[x] Voice/audio transcription via Whisper-compatible APIs (OpenAI/Groq/Together and compatible providers)
126
129
-[x] Single-user security model (allowed Telegram user ID)
127
130
-[x] Persistent bot settings (`settings.json`) between restarts
128
131
-[x] EN/RU localization structure via dedicated i18n files
@@ -138,7 +141,7 @@ Open tasks for upcoming iterations:
138
141
-[ ] Improve Telegram-compatible message formatting for richer outputs
139
142
-[ ] Support sending files from Telegram to OpenCode (screenshots, documents)
140
143
-[ ] Provide a Docker image and basic container deployment guide
-**Model switching** — pick any model from your OpenCode favorites directly in the chat
26
26
-**Agent modes** — switch between Plan and Build modes on the fly
27
27
-**Interactive Q&A** — answer agent questions and approve permissions via inline buttons
28
+
-**Voice prompts** — send voice/audio messages, transcribe them via a Whisper-compatible API, then forward recognized text to OpenCode
28
29
-**Context control** — compact context when it gets too large, right from the chat
29
30
-**Security** — strict user ID whitelist; no one else can access your bot, even if they find it
30
31
-**Localization** — English and Russian UI (`BOT_LOCALE=en|ru`)
@@ -102,7 +103,7 @@ opencode-telegram config
102
103
|`/opencode_stop`| Stop the OpenCode server remotely |
103
104
|`/help`| Show available commands |
104
105
105
-
Any regular text message is sent as a prompt to the coding agent only when no blocking interaction is active.
106
+
Any regular text message is sent as a prompt to the coding agent only when no blocking interaction is active. Voice/audio messages are transcribed and then sent as prompts when STT is configured.
106
107
107
108
### Interaction Rules
108
109
@@ -124,26 +125,53 @@ When installed via npm, the configuration wizard handles the initial setup. The
0 commit comments