@kaeawc/auto-mobile 0.0.46 → 0.0.48

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaeawc/auto-mobile",
3
- "version": "0.0.46",
3
+ "version": "0.0.48",
4
4
  "description": "Mobile device interaction automation via MCP",
5
5
  "scripts": {
6
6
  "test": "bun test --isolate",
@@ -11,6 +11,7 @@
11
11
  "test:memory-leaks": "bun --expose-gc scripts/detect-memory-leaks.ts",
12
12
  "test:integration:webrtc-mediamtx": "bash scripts/webrtc/run-mediamtx-publisher-integration.sh",
13
13
  "test:integration:webrtc-device": "bash scripts/webrtc/run-mediamtx-device-integration.sh",
14
+ "gate:android-video-baseline": "bun scripts/webrtc/android-video-baseline-gate.ts",
14
15
  "lint": "eslint . --fix --pass-on-unpruned-suppressions && bun scripts/check-host-shell-boundary.ts && bash scripts/check-no-new-direct-simctl.sh && bun scripts/check-no-direct-plutil.ts && bash scripts/check-no-new-direct-xcodebuild.sh && bash scripts/check-no-new-direct-security.sh && bash scripts/check-no-new-direct-git-metadata.sh && bash scripts/check-no-local-shell-quote.sh && bash scripts/check-app-bundle-metadata-boundary.sh && bash scripts/check-ffmpeg-execution-boundary.sh && bash scripts/check-simulator-tcc-sqlite-boundary.sh && bash scripts/check-daemon-launcher-boundary.sh",
15
16
  "lint:prune": "eslint . --prune-suppressions",
16
17
  "lint:baseline": "eslint . --suppress-rule max-depth --suppress-rule complexity --suppress-rule max-nested-callbacks --suppress-rule auto-mobile/no-accumulator-foreach",
@@ -6266,6 +6266,11 @@
6266
6266
  "additionalProperties": {}
6267
6267
  }
6268
6268
  }
6269
+ },
6270
+ "_meta": {
6271
+ "ui": {
6272
+ "resourceUri": "ui://automobile/observe"
6273
+ }
6269
6274
  }
6270
6275
  },
6271
6276
  {
@@ -7689,6 +7694,50 @@
7689
7694
  "additionalProperties": false
7690
7695
  }
7691
7696
  },
7697
+ {
7698
+ "name": "setToolCapability",
7699
+ "description": "Enable or disable an optional AutoMobile tool capability for this MCP session.",
7700
+ "inputSchema": {
7701
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
7702
+ "type": "object",
7703
+ "properties": {
7704
+ "capability": {
7705
+ "type": "string",
7706
+ "enum": [
7707
+ "clipboard",
7708
+ "advanced-interaction",
7709
+ "app-permissions",
7710
+ "device-settings",
7711
+ "app-data-interop",
7712
+ "notifications",
7713
+ "telephony",
7714
+ "accessibility-tools",
7715
+ "screen-artifacts",
7716
+ "test-authoring",
7717
+ "network-inspection",
7718
+ "app-routing",
7719
+ "navigation-modeling",
7720
+ "biometric-auth"
7721
+ ],
7722
+ "description": "Optional tool capability to enable or disable for this MCP session."
7723
+ },
7724
+ "enabled": {
7725
+ "description": "Whether to enable the capability (default: true).",
7726
+ "default": true,
7727
+ "type": "boolean"
7728
+ },
7729
+ "sessionUuid": {
7730
+ "description": "Active connection or routing-session profile to update. Omit to update this MCP connection's profile.",
7731
+ "type": "string",
7732
+ "minLength": 1
7733
+ }
7734
+ },
7735
+ "required": [
7736
+ "capability"
7737
+ ],
7738
+ "additionalProperties": false
7739
+ }
7740
+ },
7692
7741
  {
7693
7742
  "name": "setUIState",
7694
7743
  "description": "Set multiple form fields by desired state.",