feat(sdk): expose raw command API across foreign clients#3691
Open
spetz wants to merge 2 commits into
Open
Conversation
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #3691 +/- ##
============================================
- Coverage 73.99% 73.97% -0.03%
- Complexity 937 950 +13
============================================
Files 1301 1301
Lines 147393 147496 +103
Branches 122945 123206 +261
============================================
+ Hits 109063 109107 +44
+ Misses 34858 34840 -18
- Partials 3472 3549 +77
🚀 New features to boost your workflow:
|
slbotbm
requested changes
Jul 17, 2026
Contributor
Author
|
/ready |
slbotbm
requested changes
Jul 19, 2026
slbotbm
left a comment
Contributor
There was a problem hiding this comment.
other than one comments, looks alright
slbotbm
approved these changes
Jul 19, 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.
Foreign SDK users could not send protocol commands without a typed
client API, which blocked applications from using new command codes
until every SDK added dedicated methods.
Expose code-and-payload methods across Python, PHP, C++, Node, Go,
C#, and Java while preserving each client's framing, authentication,
error mapping, and transport behavior. Reject session-control codes
before sending so typed login state remains consistent.
Add shared BDD coverage for known, unknown, and session-control
commands across every SDK runner. Bump each foreign SDK version for
the new public API.