@kaeawc/auto-mobile 0.0.47 → 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/README.md +3 -3
- package/README.md.backup +3 -3
- package/dist/schemas/tool-definitions.json +44 -0
- package/dist/src/db/migrations/2026_07_31_000_video_recordings_owner_session.ts +35 -0
- package/dist/src/index.js +288 -288
- package/dist/src/index.js.map +1 -1
- package/package.json +2 -1
- package/schemas/tool-definitions.json +44 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kaeawc/auto-mobile",
|
|
3
|
-
"version": "0.0.
|
|
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",
|
|
@@ -7694,6 +7694,50 @@
|
|
|
7694
7694
|
"additionalProperties": false
|
|
7695
7695
|
}
|
|
7696
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
|
+
},
|
|
7697
7741
|
{
|
|
7698
7742
|
"name": "setUIState",
|
|
7699
7743
|
"description": "Set multiple form fields by desired state.",
|