fix(cli): add Matrix to channels status display#1891
Closed
lailoo wants to merge 1 commit intoHKUDS:mainfrom
Closed
fix(cli): add Matrix to channels status display#1891lailoo wants to merge 1 commit intoHKUDS:mainfrom
lailoo wants to merge 1 commit intoHKUDS:mainfrom
Conversation
Contributor
Author
Issue Already Fixed in MainAfter checking the latest main branch, I found that this issue has been resolved by a recent refactoring: Main branch now uses auto-discovery (commit f869a53):
Current output on main: Note: The new implementation removed the Configuration column, so it only shows Channel and Enabled status. Closing this PR as the issue is already fixed. The refactored approach is better as it automatically includes all channels without manual updates. |
Contributor
Author
|
Closing as the issue is already fixed in main branch through auto-discovery refactoring. |
This was referenced Mar 12, 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
nanobot channels statusoutputnanobot/cli/commands.py:channels_status()function does not include Matrix in the table displayFixes #1887
Problem
The
nanobot channels statuscommand displays all configured channels, but Matrix was missing from the list even though it's defined in the config schema.Before fix:
Matrix is defined in
nanobot/config/schema.py:219but was not displayed.Changes
nanobot/cli/commands.py— Added Matrix channel display between Discord and Feishutests/test_channels_status.py— Added regression test to verify Matrix is included in outputAfter fix:
Test plan
test_channels_status_includes_matrixverifies Matrix is in outputpython -m nanobot channels statusshows MatrixEffect on User Experience
Before: Users with Matrix channel configured cannot see its status in
nanobot channels statusoutput, causing confusion about whether Matrix is supported.After: Matrix channel is properly displayed in the status table, showing its enabled state and homeserver configuration.