agent-device 0.7.2 → 0.7.3
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 -0
- package/dist/src/bin.js +7 -7
- package/dist/src/daemon.js +28 -28
- package/package.json +1 -1
- package/skills/agent-device/SKILL.md +3 -0
package/package.json
CHANGED
|
@@ -138,6 +138,8 @@ agent-device is visible 'id="anchor"'
|
|
|
138
138
|
agent-device appstate
|
|
139
139
|
agent-device clipboard read
|
|
140
140
|
agent-device clipboard write "token"
|
|
141
|
+
agent-device keyboard status
|
|
142
|
+
agent-device keyboard dismiss
|
|
141
143
|
agent-device perf --json
|
|
142
144
|
agent-device network dump [limit] [summary|headers|body|all]
|
|
143
145
|
agent-device push <bundle|package> <payload.json|inline-json>
|
|
@@ -169,6 +171,7 @@ agent-device batch --steps-file /tmp/batch-steps.json --json
|
|
|
169
171
|
- Use `fill` for clear-then-type semantics; use `type` for focused append typing.
|
|
170
172
|
- iOS `appstate` is session-scoped; Android `appstate` is live foreground state.
|
|
171
173
|
- Clipboard helpers: `clipboard read` / `clipboard write <text>` are supported on Android and iOS simulators; iOS physical devices are not supported yet.
|
|
174
|
+
- Android keyboard helpers: `keyboard status|get|dismiss` report keyboard visibility/type and dismiss via keyevent when visible.
|
|
172
175
|
- `network dump` is best-effort and parses HTTP(s) entries from the session app log file.
|
|
173
176
|
- Biometric settings: iOS simulator supports `settings faceid|touchid <match|nonmatch|enroll|unenroll>`; Android supports `settings fingerprint <match|nonmatch>` where runtime tooling is available.
|
|
174
177
|
- For AndroidTV/tvOS selection, always pair `--target` with `--platform` (`ios`, `android`, or `apple` alias); target-only selection is invalid.
|