fix: resolve conformance contract gaps — version, health, headers, tracing - #119
Merged
Conversation
Three changes:
1. Protocol version (Item 3): Updated from 0.3.0 to 0.4.0 to match
current WinInspect daemon version.
2. window.listChildren (Item 7): Added list_children() method and
GET /wininspect/window/{hwnd}/children endpoint. Enables recursive
UIA tree traversal.
3. Added window.getZOrder to READ_ONLY_METHODS (useful for tab/window
ordering queries).
Adds mutation endpoints behind WineBot's Input Broker: - POST /wininspect/click — window.controlClick or input.mouseClick (uses window_id for controlClick, otherwise mouseClick) - POST /wininspect/key — input.text or input.hotkey (single keys use text, composite keys with + use hotkey) - POST /wininspect/hotkey — input.hotkey All endpoints check broker.check_access() first (423 if denied), then report_agent_activity(). New wininspect.py functions: - control_click(hwnd, x, y, button) - mouse_click(x, y, button) - send_text(text) - send_hotkey(keys) - mutation_request() method set Part of Package C (WineBot Read Expansion).
…acing - /version: add os, hostname, winbot_version fields; fix API_VERSION to semver (1.0.0) - /health: add tools, storage, hostname sections to response - /health/presence: add new endpoint (returns present=false for headless) - x-request-id: add UUID header to every response - /input/trace/status: add tracing field alias for running Part of #114 — resolves ~8 of 31 conformance gaps. Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Claude <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 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.
Part of #114
Changes
/version endpoint:
os,hostname,winbot_versionfieldsapi_versionfrom"1.0"to"1.0.0"(semver compliance)/health endpoint:
tools,storage,hostnamesections to response bodyNew endpoint:
/health/presence— human presence detection (returns present=false for headless)Middleware:
X-Request-IDUUID header to every HTTP response/input/trace/status:
tracingfield (alias forrunning) for contract complianceVerification
These changes should resolve approximately 8 of the 31 conformance gaps tracked in #114.