fix: crypto provider, silent failure debug, Discord free_response_channels#1024
Merged
jaberjaber23 merged 5 commits intoRightNow-AI:mainfrom Apr 10, 2026
Merged
Conversation
Allow certain Discord channel IDs to respond without requiring @mention, similar to Hermes gateway's free_response_channels. - Add free_response_channels field to DiscordConfig - Add free_response_channels method to ChannelBridgeHandle trait - Implement free_response_channels in KernelBridgeAdapter - Modify dispatch_message to bypass mention_only policy for free channels - Add test for free_response_channels deserialization
This was referenced Apr 10, 2026
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
Three independent fixes from local development:
rustls::crypto::ringas default provider on kernel startup; prevents TLS init failures in certain deployment environmentsfree_response_channelssupport for Discord — allows certain Discord channel IDs to respond without requiring @mention, similar to Hermes gateway behavior. Addsfree_response_channelsfield toDiscordConfig, threads throughChannelBridgeHandletrait,KernelBridgeAdapter, anddispatch_message. Includes deserialization test.Credits
The crypto provider and silent-failure fixes were authored by @hello-world-bfree and surfaced via a local merge. This PR brings them upstream alongside the Discord feature.
Test plan
cargo build --workspace --lib)cargo test --workspace)cargo clippy --workspace --all-targets -- -D warnings)