-
Notifications
You must be signed in to change notification settings - Fork 0
Slack support #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
23eb826
16aaba5
8d360d7
9565a02
12e3a59
28f847e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -8,12 +8,14 @@ | |||||||||||||||||||
| [](https://openrouter.ai) | ||||||||||||||||||||
| [](https://openclaw.bot) | ||||||||||||||||||||
| [](https://telegram.org) | ||||||||||||||||||||
| [](https://slack.com) | ||||||||||||||||||||
|
|
||||||||||||||||||||
| One-command deployment of an [OpenClaw](https://openclaw.bot) AI agent as a Telegram bot on DigitalOcean. After `terraform apply`, the bot is fully operational with no manual SSH steps required. | ||||||||||||||||||||
| One-command deployment of an [OpenClaw](https://openclaw.bot) AI agent on DigitalOcean with Telegram support and Slack support. After `terraform apply`, the bot is fully operational with no manual SSH steps required. | ||||||||||||||||||||
|
|
||||||||||||||||||||
| ## Features | ||||||||||||||||||||
|
|
||||||||||||||||||||
| - Telegram bot with DM and group chat support | ||||||||||||||||||||
| - Slack bot support (Socket Mode) | ||||||||||||||||||||
| - Web search via Brave Search (falls back to DuckDuckGo) | ||||||||||||||||||||
| - 8 switchable free LLM models via `/model <alias>` | ||||||||||||||||||||
| - Secrets managed via `.env` — never committed | ||||||||||||||||||||
|
|
@@ -26,6 +28,8 @@ One-command deployment of an [OpenClaw](https://openclaw.bot) AI agent as a Tele | |||||||||||||||||||
| - DigitalOcean account + API token | ||||||||||||||||||||
| - OpenRouter API key | ||||||||||||||||||||
| - Telegram bot token (from [@BotFather](https://t.me/BotFather)) | ||||||||||||||||||||
|
||||||||||||||||||||
| - Telegram bot token (from [@BotFather](https://t.me/BotFather)) | |
| - Telegram bot token (from [@BotFather](https://t.me/BotFather)) | |
| ### Optional (for Slack support) | |
| Only required if you want to enable Slack in addition to Telegram: |
Copilot
AI
Apr 18, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The "Switching Models" section now ends with In Telegram, use /model <alias>: but no longer includes the alias/model list or any guidance, leaving the instructions incomplete. Either restore the table/list (updated to the new aliases) or revise the section so it's actionable.
| In Telegram, use `/model <alias>`: | |
| In Telegram, use `/model <alias>` to switch the active model for your chat. | |
| Replace `<alias>` with one of the model aliases configured for your bot deployment. For example: | |
| - `/model llama` | |
| - `/model mistral` | |
| If an alias is not recognized, check the model alias configuration used by your deployment and then retry with a valid alias. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The README claims "8 switchable free LLM models", but the bootstrap config now defines many more models and the primary model is
openrouter/openai/gpt-4o-mini(not marked:free). Please update the README to match the actual configured models/free-tier expectations, or adjust the config to keep the README statement true.