feat: Add Discord and Telegram messaging channel skills#32
Closed
1olaqua616-web wants to merge 1 commit intoqwibitai:mainfrom
Closed
feat: Add Discord and Telegram messaging channel skills#321olaqua616-web wants to merge 1 commit intoqwibitai:mainfrom
1olaqua616-web wants to merge 1 commit intoqwibitai:mainfrom
Conversation
|
@gavrielc that's what I'm talking about |
e4f42cb to
b5a8b19
Compare
Author
Update: Refactored based on feedbackAfter reviewing PR #34's comparison and the maintainer's contribution guidelines, I've significantly refactored this PR: Changes Made
What I learned
TestingTested end-to-end in a fresh clone:
Thanks to @randomm for the detailed comparison in #34 - it helped me understand the expected approach better. 🤖 Generated with Claude Code |
b5a8b19 to
9e18b6b
Compare
Refactored based on PR qwibitai#34 comparison and maintainer's contribution guidelines. Changes from original submission: - Removed all pre-written code blocks (was 286 lines → now 130 lines) - Converted to instruction-based format following /convert-to-docker pattern - Added 'What changes / What stays same' overview - Added Known Issues with rate limits, privacy mode, chat ID format - Added Removal instructions - Added verification steps Skill guides Claude to implement the integration step-by-step, rather than providing copy-paste code. Tested end-to-end in fresh clone: Telegram bot connects successfully. 🤖 Generated with Claude Code Amp-Thread-ID: https://ampcode.com/threads/T-019c1e49-76bb-7150-b718-72d776cb6eb9 Co-authored-by: Amp <amp@ampcode.com>
9e18b6b to
d28cfc1
Compare
3 tasks
jbaruch
pushed a commit
to jbaruch/nanoclaw-public
that referenced
this pull request
Apr 9, 2026
- SOUL.md injected via systemPrompt.append (survives compaction) - Untrusted prompts tagged with <untrusted-input> origin markers - Circuit breaker pauses groups after 5 consecutive failures (30min cooldown) - settings.json writes skipped when content unchanged (prompt cache optimization) - New rules: verification protocol, tone matching, query size limits, post-compaction trust Closes #27, #28, qwibitai#29, qwibitai#31, qwibitai#32, qwibitai#33, qwibitai#34 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
kenansun-dev-bot Bot
referenced
this pull request
in kenansun-dev/nanoclaw-github-copilot
Apr 12, 2026
Listen for messageReaction events in both raw and adapter modes. Reactions stored as '[sender reacted with emoji]' messages so agent sees them in conversation context and can respond naturally. Works in both handleIncoming (adapter) and handleIncomingRaw modes. 336/336 tests pass. Co-authored-by: Kenan Rpi5 Claw <rpi5-claw@nanoclaw.dev>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds
/add-discordand/add-telegramskills to NanoClaw for alternative messaging channel support.What This Adds
/add-discord- Discord channel integration via discord.js/add-telegram- Telegram channel integration via GrammyBoth skills support:
DISCORD_ONLY=true/TELEGRAM_ONLY=true)Key Features
/add-discordor/add-telegramto add integration to their forkdc:for Discord,tg:for Telegram,@g.usfor WhatsApp)/chatidand/pingfor easy setupImplementation Details
Each skill provides step-by-step instructions for:
discord.js/grammy)src/discord.ts/src/telegram.ts)src/config.tswith environment variablessrc/db.tsfor multi-channel storagesrc/index.tsfor message routingTest Plan
🤖 Generated with Claude Code