test PR (debug) - #3
Closed
7723qqq wants to merge 1 commit into
Closed
Conversation
Each tryNative* call now records a native_tool_fallback telemetry event with one of disabled | load_failed | function_missing | function_threw, and logs once per (tool, reason) via console.warn so broken native binaries are visible without spam. The internal loader is now an explicit four-state machine (unloaded | disabled | load_failed | loaded) so flag-off vs binary- missing/ABI-mismatch are distinguishable in telemetry. setNativeTelemetry is wired automatically in SDKRpcClient from the harness telemetry option, so app code needs no change. No new lint warnings, typecheck clean, two new vitest cover the disabled branch and the warn-once-vs-telemetry-each-call semantics.
7723qqq
added a commit
that referenced
this pull request
Aug 10, 2026
- http.rs: widen the shared turn-context grace period from 100ms to 2s — a lagging WS projector could miss turn.started after the async-submit cleanup, silently dropping the whole turn projection and leaving its messages stuck in pending (v1 #2/MoonshotAI#5) - kimi-web agent projector: only emit the client-accumulated usage snapshot at turn end when the turn actually reported step usage, so the authoritative event.session.usage_updated numbers are no longer clobbered with zeros (v1 #3) - regression tests for the usage gating
7723qqq
added a commit
that referenced
this pull request
Aug 10, 2026
…MoonshotAI#5) - eventReducer messageUpdated now stores the protocol status on the message instead of dropping it, so streamed assistant messages leave their initial/pending state when the Rust server projects the completed close-out - AppMessage gains an optional status field; REST snapshot messages map as completed history (toAppMessage status param), WS-created messages stay unset until message.updated arrives - regression test covers the status hand-off; G-2 #2/#3 verified already fixed (take_turn 2s grace, usage_updated consumption)
7723qqq
added a commit
that referenced
this pull request
Aug 10, 2026
…shotAI#5) - new mappers-to-app-event tests lock message.updated status and session.usage_updated normalization onto the AppEvent shapes the Rust server projects - toAppMessage status parameter covered: snapshot loads carry 'completed', WS-created messages stay unset until message.updated - record the G-3 entry-switch assessment: the TS command surface is equivalent (plugin_run_node is superseded by the engine plugin model); the remaining blocker is the stage-F distribution packaging
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.
debug