fix(notify): pass kwargs through notify_handler#186
Merged
ywatanabe1989 merged 5 commits intomainfrom Mar 16, 2026
Merged
Conversation
Previously only 20 modules had manual RST stubs. Updated generate_api_docs.py to auto-discover all public modules from the package directory and generate missing stubs. 47 new module stubs created covering: app, audio, audit, benchmark, browser, canvas, capture, cli, cloud, container, cv, dataset, etc. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
RST module stubs were being generated into docs/sphinx/modules/ but Sphinx reads from docs/sphinx/source/api/. This caused only 2 modules (io, plt) to appear in built docs. Now all 68 modules have API docs. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
notify_call MCP tool was failing because repeat, to_number, and flow_sid were rejected by notify_handler. Add **kwargs passthrough to get_backend() and b.send(). Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Add scitex-notification>=0.1.0 dependency - Replace notify/__init__.py with thin re-export wrapper - Update _mcp_tools/notify.py imports to scitex_notification - Update cli/notify.py imports to scitex_notification - Add scitex-notification to ecosystem registry Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Dark/light mode compatible via <picture> element. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
notify_handler()now accepts**kwargsand forwards toget_backend()andb.send()notify_callMCP tool failing with "unexpected keyword argument 'repeat'" when passingrepeat,to_number,flow_sidTest plan
notify_callMCP tool works withrepeat,to_number,flow_sidparametersnotify_sendstill works without extra kwargs🤖 Generated with Claude Code