@kaeawc/auto-mobile 0.0.6 → 0.0.7
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 -15
- package/README.md.backup +11 -18
- package/dist/schemas/test-plan.schema.json +647 -0
- package/dist/schemas/tool-definitions.json +3532 -0
- package/dist/src/db/migrations/2025_12_28_000_initial_schema.ts +28 -0
- package/dist/src/db/migrations/2025_12_30_000_performance_thresholds.ts +83 -0
- package/dist/src/db/migrations/2025_12_30_001_navigation_graph.ts +200 -0
- package/dist/src/db/migrations/2025_12_31_000_accessibility_baselines.ts +33 -0
- package/dist/src/db/migrations/2025_12_31_001_memory_audit.ts +118 -0
- package/dist/src/db/migrations/2026_01_01_000_recomposition_metrics.ts +41 -0
- package/dist/src/db/migrations/2026_01_02_000_prediction_history.ts +84 -0
- package/dist/src/db/migrations/2026_01_03_000_feature_flags.ts +18 -0
- package/dist/src/db/migrations/2026_01_03_000_test_executions.ts +44 -0
- package/dist/src/db/migrations/2026_01_05_000_tool_calls.ts +30 -0
- package/dist/src/db/migrations/2026_01_08_000_test_coverage.ts +106 -0
- package/dist/src/db/migrations/2026_01_09_000_video_recordings.ts +62 -0
- package/dist/src/db/migrations/2026_01_10_000_device_snapshots.ts +51 -0
- package/dist/src/index.js +129163 -104043
- package/dist/src/index.js.map +628 -463
- package/package.json +23 -3
- package/schemas/test-plan.schema.json +733 -0
- package/schemas/tool-definitions.json +3967 -0
package/README.md
CHANGED
|
@@ -2,26 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
<img width="380" height="200" src="https://glama.ai/mcp/servers/@kaeawc/auto-mobile/badge" alt="AutoMobile MCP server" />
|
|
7
|
-
</a>
|
|
5
|
+
AutoMobile is a set of tools for mobile automation. Use it for UI testing, development workflows, or AI-powered mobile app interaction through the Model Context Protocol (MCP).
|
|
8
6
|
|
|
9
|
-
|
|
10
|
-
assistant.
|
|
7
|
+
This is a fork of the original source at https://github.com/zillow/auto-mobile
|
|
11
8
|
|
|
12
|
-
|
|
9
|
+
## Demo
|
|
13
10
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
- 🔧 **[Powerful MCP Server](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/mcp-server/index.md)**: AutoMobile provides comprehensive [actions](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/mcp-server/actions.md) through MCP
|
|
17
|
-
tool calls with a fast [observations](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/mcp-server/observation.md) to drive the
|
|
18
|
-
[interaction loop](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/mcp-server/interaction-loop.md).
|
|
19
|
-
- 🧪 **[Test Execution](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/test-execution/index.md)** - Run tests locally or on CI without extra infrastructure.
|
|
20
|
-
- ⚡ **[UI Performance Audit](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/ui-performance-audit.md)** - Automated detection of jank, poor FPS, and rendering issues during automation.
|
|
11
|
+

|
|
21
12
|
|
|
22
|
-
|
|
13
|
+
## How it works
|
|
23
14
|
|
|
24
|
-
|
|
15
|
+
- 🔧 **[Powerful MCP Server](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/mcp-server/index.md)**: Comprehensive [actions](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/mcp-server/tools.md) through MCP tool calls with fast [observations](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/mcp-server/observation.md) to drive the [interaction loop](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/mcp-server/interaction-loop.md)
|
|
16
|
+
- 🧪 **[Test Execution](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/test-execution/index.md)**: Run tests locally or on CI without extra infrastructure
|
|
17
|
+
- ⚡ **[UI Performance Audit](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/ui-performance-audit.md)**: Automated detection of jank, poor FPS, and rendering issues during automation
|
|
25
18
|
|
|
26
19
|
## Contributing
|
|
27
20
|
|
package/README.md.backup
CHANGED
|
@@ -1,30 +1,23 @@
|
|
|
1
1
|
# AutoMobile
|
|
2
2
|
|
|
3
|
-

|
|
3
|
+

|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
<img width="380" height="200" src="https://glama.ai/mcp/servers/@kaeawc/auto-mobile/badge" alt="AutoMobile MCP server" />
|
|
7
|
-
</a>
|
|
5
|
+
AutoMobile is a set of tools for mobile automation. Use it for UI testing, development workflows, or AI-powered mobile app interaction through the Model Context Protocol (MCP).
|
|
8
6
|
|
|
9
|
-
|
|
10
|
-
assistant.
|
|
7
|
+
This is a fork of the original source at https://github.com/zillow/auto-mobile
|
|
11
8
|
|
|
12
|
-
|
|
9
|
+
## Demo
|
|
13
10
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
- 🔧 **[Powerful MCP Server](docs/features/mcp-server/index.md)**: AutoMobile provides comprehensive [actions](docs/features/mcp-server/actions.md) through MCP
|
|
17
|
-
tool calls with a fast [observations](docs/features/mcp-server/observation.md) to drive the
|
|
18
|
-
[interaction loop](docs/features/mcp-server/interaction-loop.md).
|
|
19
|
-
- 🧪 **[Test Execution](docs/features/test-execution/index.md)** - Run tests locally or on CI without extra infrastructure.
|
|
20
|
-
- ⚡ **[UI Performance Audit](docs/features/ui-performance-audit.md)** - Automated detection of jank, poor FPS, and rendering issues during automation.
|
|
11
|
+

|
|
21
12
|
|
|
22
|
-
|
|
13
|
+
## How it works
|
|
23
14
|
|
|
24
|
-
|
|
15
|
+
- 🔧 **[Powerful MCP Server](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/mcp-server/index.md)**: Comprehensive [actions](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/mcp-server/tools.md) through MCP tool calls with fast [observations](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/mcp-server/observation.md) to drive the [interaction loop](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/mcp-server/interaction-loop.md)
|
|
16
|
+
- 🧪 **[Test Execution](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/test-execution/index.md)**: Run tests locally or on CI without extra infrastructure
|
|
17
|
+
- ⚡ **[UI Performance Audit](https://github.com/kaeawc/auto-mobile/blob/main/docs/features/ui-performance-audit.md)**: Automated detection of jank, poor FPS, and rendering issues during automation
|
|
25
18
|
|
|
26
19
|
## Contributing
|
|
27
20
|
|
|
28
|
-
- [Code of Conduct](CODE_OF_CONDUCT.md)
|
|
21
|
+
- [Code of Conduct](https://github.com/kaeawc/auto-mobile/blob/main/CODE_OF_CONDUCT.md)
|
|
29
22
|
- Please report security vulnerabilities via GitHub
|
|
30
|
-
- [Contributing](.github/CONTRIBUTING.md)
|
|
23
|
+
- [Contributing](https://github.com/kaeawc/auto-mobile/blob/main/.github/CONTRIBUTING.md)
|