simdeck 0.1.2 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -4
- package/build/simdeck-bin +0 -0
- package/client/dist/assets/index-BHTf_1bs.js +9 -0
- package/client/dist/assets/index-PP2opq5o.css +1 -0
- package/client/dist/index.html +2 -2
- package/package.json +3 -2
- package/scripts/studio-host-provider.mjs +762 -0
- package/client/dist/assets/index-DYd9_Cq8.js +0 -9
- package/client/dist/assets/index-Y_Zqbt1r.css +0 -1
package/README.md
CHANGED
|
@@ -35,7 +35,7 @@ view inside the editor.
|
|
|
35
35
|
|
|
36
36
|
## Features
|
|
37
37
|
|
|
38
|
-
- Local simulator video stream over browser-native WebRTC H.264
|
|
38
|
+
- Local simulator video stream over browser-native WebRTC H.264 with H.264 WebSocket fallback
|
|
39
39
|
- Full simulator control & inspection using private accessibility APIs - available using `simdeck` CLI
|
|
40
40
|
- Real-time screen `describe` command using accessibility view tree - available in token-efficient format for agents
|
|
41
41
|
- CoreSimulator chrome asset rendering for device bezels
|
|
@@ -68,8 +68,10 @@ LAN clients should pair with the printed code before receiving the API cookie.
|
|
|
68
68
|
SimDeck Studio providers run the daemon on loopback and use
|
|
69
69
|
`scripts/studio-provider-bridge.mjs` for outbound control-plane communication
|
|
70
70
|
with Studio. Studio hosts the browser UI and proxies SimDeck REST requests over
|
|
71
|
-
that bridge while WebRTC media
|
|
72
|
-
runner through ICE.
|
|
71
|
+
that bridge while WebRTC media negotiates directly between the browser and
|
|
72
|
+
runner through ICE. If WebRTC fails before rendering a frame, the browser can
|
|
73
|
+
fall back to H.264 over WebSocket while keeping input on a separate WebSocket
|
|
74
|
+
channel.
|
|
73
75
|
|
|
74
76
|
Expose a local simulator through SimDeck Studio with one command:
|
|
75
77
|
|
|
@@ -158,7 +160,9 @@ simdeck key-combo <udid> --modifiers cmd --key a
|
|
|
158
160
|
simdeck type <udid> "hello"
|
|
159
161
|
simdeck type <udid> --file message.txt
|
|
160
162
|
simdeck button <udid> lock --duration-ms 1000
|
|
161
|
-
simdeck
|
|
163
|
+
simdeck button <udid> volume-up
|
|
164
|
+
simdeck button <udid> action --duration-ms 1000
|
|
165
|
+
simdeck batch <udid> --step "tap --label Continue" --step "type 'hello'" --step "wait-for --label hello"
|
|
162
166
|
simdeck dismiss-keyboard <udid>
|
|
163
167
|
simdeck home <udid>
|
|
164
168
|
simdeck app-switcher <udid>
|
package/build/simdeck-bin
CHANGED
|
Binary file
|