agent-device 0.14.8 → 0.14.9

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.
Files changed (32) hide show
  1. package/README.md +1 -2
  2. package/android-snapshot-helper/README.md +4 -2
  3. package/android-snapshot-helper/dist/{agent-device-android-snapshot-helper-0.14.8.apk → agent-device-android-snapshot-helper-0.14.9.apk} +0 -0
  4. package/android-snapshot-helper/dist/agent-device-android-snapshot-helper-0.14.9.apk.sha256 +1 -0
  5. package/android-snapshot-helper/dist/{agent-device-android-snapshot-helper-0.14.8.manifest.json → agent-device-android-snapshot-helper-0.14.9.manifest.json} +6 -6
  6. package/dist/src/6108.js +17 -17
  7. package/dist/src/7462.js +1 -1
  8. package/dist/src/9542.js +1 -1
  9. package/dist/src/9639.js +2 -2
  10. package/dist/src/9818.js +1 -1
  11. package/dist/src/android-adb.d.ts +11 -2
  12. package/dist/src/android-snapshot-helper.d.ts +12 -2
  13. package/dist/src/cli.js +46 -46
  14. package/dist/src/command-schema.js +1 -0
  15. package/dist/src/contracts.d.ts +1 -0
  16. package/dist/src/finders.d.ts +1 -0
  17. package/dist/src/index.d.ts +6 -0
  18. package/dist/src/internal/daemon.js +20 -20
  19. package/dist/src/selectors.d.ts +1 -0
  20. package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+CommandExecution.swift +86 -13
  21. package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+Interaction.swift +160 -93
  22. package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+Lifecycle.swift +1 -0
  23. package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+Models.swift +3 -0
  24. package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+Snapshot.swift +15 -0
  25. package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+SystemModal.swift +1 -0
  26. package/ios-runner/AgentDeviceRunner/AgentDeviceRunnerUITests/RunnerTests+TvRemote.swift +185 -0
  27. package/package.json +1 -1
  28. package/server.json +3 -3
  29. package/skills/agent-device/SKILL.md +11 -1
  30. package/skills/dogfood/SKILL.md +3 -1
  31. package/android-snapshot-helper/dist/agent-device-android-snapshot-helper-0.14.8.apk.sha256 +0 -1
  32. package/skills/react-devtools/SKILL.md +0 -48
package/README.md CHANGED
@@ -89,7 +89,7 @@ Paste one of these into clients that accept `mcpServers`, such as Cursor project
89
89
  "mcpServers": {
90
90
  "agent-device": {
91
91
  "command": "npx",
92
- "args": ["-y", "agent-device@latest", "mcp"]
92
+ "args": ["-y", "agent-device@<reviewed-version>", "mcp"]
93
93
  }
94
94
  }
95
95
  }
@@ -221,7 +221,6 @@ Used by teams and developers at Callstack, Expensify, Shopify, Kindred, Total Wi
221
221
  Agent integration:
222
222
 
223
223
  - [agent-device skill](skills/agent-device/SKILL.md)
224
- - [react-devtools skill](skills/react-devtools/SKILL.md)
225
224
  - [dogfood skill](skills/dogfood/SKILL.md)
226
225
  - MCP router: `agent-device mcp`
227
226
  - [agent-device skill on ClawHub](https://clawhub.ai/okwasniewski/agent-device)
@@ -14,7 +14,8 @@ requires a stable signing certificate for `adb install -r` upgrades.
14
14
  ## Build
15
15
 
16
16
  ```sh
17
- sh ./scripts/build-android-snapshot-helper.sh 0.13.3 .tmp/android-snapshot-helper
17
+ VERSION="$(node -p 'require("./package.json").version')"
18
+ sh ./scripts/build-android-snapshot-helper.sh "$VERSION" .tmp/android-snapshot-helper
18
19
  ```
19
20
 
20
21
  The build uses Android SDK command-line tools directly. It expects `ANDROID_HOME` or
@@ -26,7 +27,8 @@ missing or outdated.
26
27
  ## Run
27
28
 
28
29
  ```sh
29
- adb install -r -t .tmp/android-snapshot-helper/agent-device-android-snapshot-helper-0.13.3.apk
30
+ VERSION="$(node -p 'require("./package.json").version')"
31
+ adb install -r -t ".tmp/android-snapshot-helper/agent-device-android-snapshot-helper-$VERSION.apk"
30
32
  adb shell am instrument -w \
31
33
  -e waitForIdleTimeoutMs 500 \
32
34
  -e timeoutMs 8000 \
@@ -0,0 +1 @@
1
+ 6dfb064793721b49e6111162a428f312bc9365dfc06e05adb648c434105fdf4e agent-device-android-snapshot-helper-0.14.9.apk
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "android-snapshot-helper",
3
- "version": "0.14.8",
4
- "releaseTag": "v0.14.8",
5
- "assetName": "agent-device-android-snapshot-helper-0.14.8.apk",
3
+ "version": "0.14.9",
4
+ "releaseTag": "v0.14.9",
5
+ "assetName": "agent-device-android-snapshot-helper-0.14.9.apk",
6
6
  "apkUrl": null,
7
- "sha256": "0669bbeb4c3b549a9084dc3d75e4afa8f055408424c40c2fd9db4b75eb1f6e53",
8
- "checksumName": "agent-device-android-snapshot-helper-0.14.8.apk.sha256",
7
+ "sha256": "6dfb064793721b49e6111162a428f312bc9365dfc06e05adb648c434105fdf4e",
8
+ "checksumName": "agent-device-android-snapshot-helper-0.14.9.apk.sha256",
9
9
  "packageName": "com.callstack.agentdevice.snapshothelper",
10
- "versionCode": 14008,
10
+ "versionCode": 14009,
11
11
  "instrumentationRunner": "com.callstack.agentdevice.snapshothelper/.SnapshotInstrumentation",
12
12
  "minSdk": 23,
13
13
  "targetSdk": 36,