@qubiqlabs/mobiflow 0.2.0
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/LICENSE +190 -0
- package/README.md +225 -0
- package/bin/mobiflow.js +152 -0
- package/package.json +45 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,190 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
Copyright 2026 QubiQ Labs
|
|
179
|
+
|
|
180
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
181
|
+
you may not use this file except in compliance with the License.
|
|
182
|
+
You may obtain a copy of the License at
|
|
183
|
+
|
|
184
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
185
|
+
|
|
186
|
+
Unless required by applicable law or agreed to in writing, software
|
|
187
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
188
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
189
|
+
See the License for the specific language governing permissions and
|
|
190
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
# MobiFlow
|
|
2
|
+
|
|
3
|
+
CLI-only mobile automation: describe a scenario in natural language,
|
|
4
|
+
generate **Maestro** flow YAML with an LLM, run it on a device/emulator,
|
|
5
|
+
and self-heal via a verify/repair loop — all in the terminal.
|
|
6
|
+
|
|
7
|
+
Configure LLMs with `llm.json` + `mobiflow.config.yaml`, scaffold with
|
|
8
|
+
`mobiflow init`, then author cases and run them locally or in the cloud.
|
|
9
|
+
|
|
10
|
+
## Requirements
|
|
11
|
+
|
|
12
|
+
- Python 3.11+
|
|
13
|
+
- An LLM API key (OpenAI / Azure / Anthropic / Google)
|
|
14
|
+
- [Maestro CLI](https://maestro.mobile.dev) + a JDK (`JAVA_HOME`)
|
|
15
|
+
- Android emulator (`adb`) and/or booted iOS Simulator
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
# Maestro (macOS/Linux)
|
|
19
|
+
curl -Ls "https://get.maestro.mobile.dev" | bash
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
## Install
|
|
23
|
+
|
|
24
|
+
**Python (recommended):**
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
pip install mobiflow
|
|
28
|
+
# or from source
|
|
29
|
+
pip install -e ".[dev]"
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
**npm wrapper** (launches the Python CLI; requires Python 3.11+):
|
|
33
|
+
|
|
34
|
+
```bash
|
|
35
|
+
npm install -g @qubiqlabs/mobiflow
|
|
36
|
+
# or
|
|
37
|
+
npx @qubiqlabs/mobiflow --help
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
See [docs/PUBLISH.md](docs/PUBLISH.md) for maintainers.
|
|
41
|
+
|
|
42
|
+
## Quick start
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
mobiflow init
|
|
46
|
+
# Guided wizard:
|
|
47
|
+
# Step 1/5 — Project path
|
|
48
|
+
# Step 2/5 — LLM provider & models (writes llm.json)
|
|
49
|
+
# Step 3/5 — Device defaults + language (yaml | yaml+js)
|
|
50
|
+
# Step 4/5 — Detect missing packages → optional auto-install
|
|
51
|
+
# Step 5/5 — Write mobiflow.config.yaml + example case
|
|
52
|
+
|
|
53
|
+
export OPENAI_API_KEY=sk-... # or AZURE_OPENAI_API_KEY / ANTHROPIC_API_KEY / …
|
|
54
|
+
|
|
55
|
+
mobiflow status
|
|
56
|
+
mobiflow run cases/example.txt
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Non-interactive (auto-installs missing Maestro / JDK / pip packages by default):
|
|
60
|
+
|
|
61
|
+
```bash
|
|
62
|
+
mobiflow init --mode local --path . --yes
|
|
63
|
+
mobiflow init --mode local --path . --yes --no-install-deps # skip installs
|
|
64
|
+
mobiflow setup # re-check / install anytime
|
|
65
|
+
mobiflow setup --check-only # report only
|
|
66
|
+
mobiflow setup --install-adb # also Homebrew android-platform-tools
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
### Auto-install during setup
|
|
70
|
+
|
|
71
|
+
Step 4 (and `mobiflow setup`) probes and can install:
|
|
72
|
+
|
|
73
|
+
| Dependency | How |
|
|
74
|
+
|------------|-----|
|
|
75
|
+
| Python packages (`openai`, `anthropic`, …) | `pip install` |
|
|
76
|
+
| Maestro CLI | official `get.maestro.mobile.dev` installer |
|
|
77
|
+
| JDK | Homebrew `openjdk` (when `brew` is available) |
|
|
78
|
+
| Android `adb` | optional Homebrew `android-platform-tools` |
|
|
79
|
+
|
|
80
|
+
Xcode / full Android SDK are reported but not auto-installed.
|
|
81
|
+
|
|
82
|
+
## LLM configuration
|
|
83
|
+
|
|
84
|
+
**Two files:**
|
|
85
|
+
|
|
86
|
+
1. `llm.json` — named provider profiles (no secrets)
|
|
87
|
+
2. `mobiflow.config.yaml` `llm:` — picks `discovery` + `codegen` by profile id
|
|
88
|
+
|
|
89
|
+
```yaml
|
|
90
|
+
llm:
|
|
91
|
+
catalog: llm.json
|
|
92
|
+
discovery: azure-gpt4o # adaptive explore / plan
|
|
93
|
+
codegen: anthropic-sonnet # Maestro YAML authoring
|
|
94
|
+
```
|
|
95
|
+
|
|
96
|
+
```json
|
|
97
|
+
{
|
|
98
|
+
"version": 1,
|
|
99
|
+
"models": {
|
|
100
|
+
"azure-gpt4o": {
|
|
101
|
+
"provider": "azure",
|
|
102
|
+
"model": "gpt-4o",
|
|
103
|
+
"deployment": "gpt-4o",
|
|
104
|
+
"api_key_env": "AZURE_OPENAI_API_KEY",
|
|
105
|
+
"endpoint": "https://YOUR.openai.azure.com",
|
|
106
|
+
"endpoint_env": "AZURE_OPENAI_ENDPOINT",
|
|
107
|
+
"api_version": "2025-03-01-preview"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
```
|
|
112
|
+
|
|
113
|
+
Keys live only in env vars named by `api_key_env`. Never paste secrets into YAML/JSON.
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
mobiflow llm list
|
|
117
|
+
mobiflow config show
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
## Test case format (`.txt`)
|
|
121
|
+
|
|
122
|
+
Cases are free-form text with optional run knobs and external data. Full reference:
|
|
123
|
+
**[docs/CASES.md](docs/CASES.md)**.
|
|
124
|
+
|
|
125
|
+
```text
|
|
126
|
+
@smoke
|
|
127
|
+
appId: org.wikipedia
|
|
128
|
+
platform: android
|
|
129
|
+
codegen: true # false → reuse flows/<case>.yaml
|
|
130
|
+
retries: 0
|
|
131
|
+
heal: 2
|
|
132
|
+
data: data/example.json
|
|
133
|
+
task: |
|
|
134
|
+
Open Wikipedia, dismiss onboarding, confirm Search is visible
|
|
135
|
+
1. Launch the app
|
|
136
|
+
2. Tap Search and type ${SEARCH_QUERY}
|
|
137
|
+
3. Confirm Search results are visible
|
|
138
|
+
```
|
|
139
|
+
|
|
140
|
+
**Precedence for run knobs:** CLI → case file → `mobiflow.config.yaml`.
|
|
141
|
+
**Data:** `data:` accepts a relative or absolute path to `.json` / `.yaml` / `.env`;
|
|
142
|
+
values flatten into Maestro `--env` / `${KEY}`.
|
|
143
|
+
|
|
144
|
+
```bash
|
|
145
|
+
mobiflow run cases/example.txt
|
|
146
|
+
mobiflow run cases/wikipedia_complex_search.txt # iOS Wikipedia + data file
|
|
147
|
+
```
|
|
148
|
+
|
|
149
|
+
## Commands
|
|
150
|
+
|
|
151
|
+
| Command | Behavior |
|
|
152
|
+
|---------|----------|
|
|
153
|
+
| `mobiflow init` | Wizard / non-interactive scaffold (+ optional deps install) |
|
|
154
|
+
| `mobiflow setup` | Detect / auto-install missing Maestro, JDK, pip packages |
|
|
155
|
+
| `mobiflow run <case.txt>` | Explore → LLM YAML → device (+ heal) |
|
|
156
|
+
| `mobiflow run cases/ [--tag smoke]` | Suite: all (or tagged) cases + aggregate JUnit/HTML |
|
|
157
|
+
| `mobiflow suite [cases/]` | Same as `run` on a directory (defaults to `cases/`) |
|
|
158
|
+
| `mobiflow run <case.txt> --gen-only` | Author YAML only |
|
|
159
|
+
| `mobiflow run … --reuse-flow` | Skip LLM; use frozen `flows/<case>.yaml` |
|
|
160
|
+
| `mobiflow run … --incremental` | Gap-explore only newly appended numbered steps |
|
|
161
|
+
| `mobiflow run … --extend-explore` | Full explore + extend codegen from prior YAML |
|
|
162
|
+
| `mobiflow gen "Open Settings…"` | One-shot NL → YAML |
|
|
163
|
+
| `mobiflow explore "…" [--interactive]` | Discovery session (confirm each action with `--interactive`) |
|
|
164
|
+
| `mobiflow import-flow flow.yaml` | Studio/YAML → MobiFlow case (+ copy into `flows/`) |
|
|
165
|
+
| `mobiflow baseline update/compare` | Visual PNG baseline |
|
|
166
|
+
| `mobiflow studio` | Open Maestro Studio (local device UI) |
|
|
167
|
+
| `mobiflow test-flow flows/foo.yaml` | Run existing YAML |
|
|
168
|
+
| `mobiflow status` / `devices` | Maestro + local devices + cloud lab readiness |
|
|
169
|
+
| `mobiflow devices --start` | Auto-start Android AVD (Win/Mac) or Xcode sim (Mac) |
|
|
170
|
+
| `mobiflow config show` / `llm list` | Inspect config / catalog |
|
|
171
|
+
|
|
172
|
+
## Languages
|
|
173
|
+
|
|
174
|
+
| `stack.language` | Behavior |
|
|
175
|
+
|------------------|----------|
|
|
176
|
+
| `yaml+js` (default) | Maestro YAML + optional JS (`evalScript` / `runScript` / `${…}`) |
|
|
177
|
+
| `yaml` | YAML commands only |
|
|
178
|
+
|
|
179
|
+
Companion scripts land under `flows/scripts/`.
|
|
180
|
+
|
|
181
|
+
## Reporting
|
|
182
|
+
|
|
183
|
+
Each live run can write **JUnit** + **HTML** under `.mobiflow/reports/` (and under the run folder),
|
|
184
|
+
plus Maestro debug output / screenshots when running locally.
|
|
185
|
+
|
|
186
|
+
```yaml
|
|
187
|
+
run:
|
|
188
|
+
reports: [junit, html]
|
|
189
|
+
report_dir: .mobiflow/reports
|
|
190
|
+
```
|
|
191
|
+
|
|
192
|
+
Suites write aggregate reports under `.mobiflow/reports/suite-<name>-<ts>/`.
|
|
193
|
+
GitHub Actions (`.github/workflows/ci.yml`) runs lint + unit tests; set
|
|
194
|
+
`MOBIFLOW_CLOUD_CI=true` plus cloud/LLM secrets for an optional smoke suite job.
|
|
195
|
+
|
|
196
|
+
## Cloud device labs
|
|
197
|
+
|
|
198
|
+
Set `device.provider` to `browserstack` or `testmu` to run on real devices in the cloud
|
|
199
|
+
(same Maestro YAML; no local emulator required). See [docs/FEATURES.md](docs/FEATURES.md).
|
|
200
|
+
|
|
201
|
+
```bash
|
|
202
|
+
export BROWSERSTACK_USERNAME=... BROWSERSTACK_ACCESS_KEY=...
|
|
203
|
+
# or TESTMU_USERNAME / TESTMU_ACCESS_KEY (LT_* aliases work)
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
## Pipeline
|
|
207
|
+
|
|
208
|
+
```
|
|
209
|
+
1. Load case + config + optional data: file → Maestro env
|
|
210
|
+
2. Resolve run mode (codegen / reuse / incremental / extend) — CLI > case > config
|
|
211
|
+
3. Explore app with discovery LLM (or replay prefix + gap for --incremental)
|
|
212
|
+
4. Author / extend Maestro YAML (+ JS when enabled)
|
|
213
|
+
5. Local: maestro test --device <id>
|
|
214
|
+
Cloud: upload app + suite → BrowserStack / TestMu HyperExecute
|
|
215
|
+
6. On fail → repair with failure log (≤ heal) → re-run
|
|
216
|
+
7. Write flows/<case>.yaml (+ scripts), guidance stamp, reports under .mobiflow/
|
|
217
|
+
```
|
|
218
|
+
|
|
219
|
+
## Docs
|
|
220
|
+
|
|
221
|
+
| Doc | Contents |
|
|
222
|
+
|-----|----------|
|
|
223
|
+
| [docs/CASES.md](docs/CASES.md) | Case template, run knobs, `data:`, incremental |
|
|
224
|
+
| [docs/FEATURES.md](docs/FEATURES.md) | Devices, cloud, suite, JS, reporting, CI |
|
|
225
|
+
| [docs/PUBLISH.md](docs/PUBLISH.md) | PyPI + npm publish steps |
|
package/bin/mobiflow.js
ADDED
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* npm bin wrapper for the Python MobiFlow CLI.
|
|
4
|
+
* Resolves: PATH mobiflow → python -m mobiflow → pip install → retry.
|
|
5
|
+
*/
|
|
6
|
+
"use strict";
|
|
7
|
+
|
|
8
|
+
const { spawnSync } = require("child_process");
|
|
9
|
+
const fs = require("fs");
|
|
10
|
+
const path = require("path");
|
|
11
|
+
|
|
12
|
+
const PKG = require("../package.json");
|
|
13
|
+
const VERSION = PKG.version || "0.1.0";
|
|
14
|
+
const REPO = "https://github.com/javed0211/MobiFlow.git";
|
|
15
|
+
|
|
16
|
+
function pyCandidates() {
|
|
17
|
+
const fromEnv = process.env.MOBIFLOW_PYTHON;
|
|
18
|
+
const list = [];
|
|
19
|
+
if (fromEnv) list.push(fromEnv);
|
|
20
|
+
if (process.platform === "win32") {
|
|
21
|
+
list.push("py", "python3.12", "python3.11", "python", "python3");
|
|
22
|
+
} else {
|
|
23
|
+
list.push("python3.12", "python3.11", "python3", "python");
|
|
24
|
+
}
|
|
25
|
+
return [...new Set(list)];
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
function run(cmd, args, opts = {}) {
|
|
29
|
+
return spawnSync(cmd, args, {
|
|
30
|
+
stdio: opts.stdio ?? "inherit",
|
|
31
|
+
encoding: "utf8",
|
|
32
|
+
shell: process.platform === "win32",
|
|
33
|
+
env: process.env,
|
|
34
|
+
});
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function pythonVersion(py) {
|
|
38
|
+
const r = run(
|
|
39
|
+
py,
|
|
40
|
+
["-c", "import sys; print(f'{sys.version_info.major}.{sys.version_info.minor}')"],
|
|
41
|
+
{ stdio: ["ignore", "pipe", "ignore"] }
|
|
42
|
+
);
|
|
43
|
+
if (r.status !== 0 || !r.stdout) return null;
|
|
44
|
+
const parts = r.stdout.toString().trim().split(".").map(Number);
|
|
45
|
+
return { major: parts[0], minor: parts[1], exe: null };
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
function whichPython() {
|
|
49
|
+
for (const py of pyCandidates()) {
|
|
50
|
+
const ver = pythonVersion(py);
|
|
51
|
+
if (!ver || ver.major < 3 || ver.minor < 11) continue;
|
|
52
|
+
const r = run(py, ["-c", "import sys; print(sys.executable)"], {
|
|
53
|
+
stdio: ["ignore", "pipe", "ignore"],
|
|
54
|
+
});
|
|
55
|
+
if (r.status === 0 && r.stdout) {
|
|
56
|
+
return r.stdout.toString().trim();
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
return null;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
function moduleAvailable(py) {
|
|
63
|
+
const r = run(py, ["-c", "import mobiflow"], {
|
|
64
|
+
stdio: ["ignore", "ignore", "ignore"],
|
|
65
|
+
});
|
|
66
|
+
return r.status === 0;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
function pipInstall(py, spec) {
|
|
70
|
+
console.error(`[mobiflow] Installing Python package: ${spec}`);
|
|
71
|
+
const r = run(py, ["-m", "pip", "install", "--upgrade", spec], {
|
|
72
|
+
stdio: "inherit",
|
|
73
|
+
});
|
|
74
|
+
return r.status === 0;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
function ensureMobiflow(py) {
|
|
78
|
+
if (moduleAvailable(py)) return true;
|
|
79
|
+
|
|
80
|
+
const specs = [
|
|
81
|
+
process.env.MOBIFLOW_PIP_SPEC,
|
|
82
|
+
`mobiflow==${VERSION}`,
|
|
83
|
+
"mobiflow",
|
|
84
|
+
`git+${REPO}@v${VERSION}`,
|
|
85
|
+
`git+${REPO}@main`,
|
|
86
|
+
].filter(Boolean);
|
|
87
|
+
|
|
88
|
+
for (const spec of specs) {
|
|
89
|
+
if (pipInstall(py, spec) && moduleAvailable(py)) return true;
|
|
90
|
+
}
|
|
91
|
+
return false;
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
function main(argv) {
|
|
95
|
+
const py = whichPython();
|
|
96
|
+
if (!py) {
|
|
97
|
+
console.error(
|
|
98
|
+
"[mobiflow] Python 3.11+ is required on PATH.\n" +
|
|
99
|
+
" https://www.python.org/downloads/\n" +
|
|
100
|
+
" Or set MOBIFLOW_PYTHON=/path/to/python3.12\n" +
|
|
101
|
+
" Or: pip install mobiflow && mobiflow --help"
|
|
102
|
+
);
|
|
103
|
+
process.exit(1);
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
// Prefer an already-installed console script on PATH (avoid recursion).
|
|
107
|
+
const self = path.resolve(__filename);
|
|
108
|
+
const onPath = run(
|
|
109
|
+
process.platform === "win32" ? "where" : "which",
|
|
110
|
+
["mobiflow"],
|
|
111
|
+
{ stdio: ["ignore", "pipe", "ignore"] }
|
|
112
|
+
);
|
|
113
|
+
if (onPath.status === 0 && onPath.stdout) {
|
|
114
|
+
const candidates = onPath.stdout
|
|
115
|
+
.toString()
|
|
116
|
+
.split(/\r?\n/)
|
|
117
|
+
.map((s) => s.trim())
|
|
118
|
+
.filter(Boolean);
|
|
119
|
+
for (const bin of candidates) {
|
|
120
|
+
let resolved = bin;
|
|
121
|
+
try {
|
|
122
|
+
resolved = fs.realpathSync(bin);
|
|
123
|
+
} catch {
|
|
124
|
+
/* ignore */
|
|
125
|
+
}
|
|
126
|
+
if (resolved === self) continue;
|
|
127
|
+
if (resolved.includes(`${path.sep}node_modules${path.sep}`)) continue;
|
|
128
|
+
if (resolved.includes(`${path.sep}@qubiqlabs${path.sep}mobiflow${path.sep}`)) {
|
|
129
|
+
continue;
|
|
130
|
+
}
|
|
131
|
+
if (resolved.includes(`${path.sep}mobiflow${path.sep}bin${path.sep}`)) {
|
|
132
|
+
continue;
|
|
133
|
+
}
|
|
134
|
+
const r = run(bin, argv, { stdio: "inherit" });
|
|
135
|
+
process.exit(r.status ?? 1);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
if (!ensureMobiflow(py)) {
|
|
140
|
+
console.error(
|
|
141
|
+
"[mobiflow] Could not install the Python package.\n" +
|
|
142
|
+
` Try: ${py} -m pip install "git+${REPO}@main"\n` +
|
|
143
|
+
` Or: ${py} -m pip install mobiflow`
|
|
144
|
+
);
|
|
145
|
+
process.exit(1);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
const r = run(py, ["-m", "mobiflow", ...argv], { stdio: "inherit" });
|
|
149
|
+
process.exit(r.status ?? 1);
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
main(process.argv.slice(2));
|
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@qubiqlabs/mobiflow",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "CLI: NL → Maestro mobile flows via LLM, run on device/emulator, self-heal. (npm wrapper for the Python package)",
|
|
5
|
+
"license": "Apache-2.0",
|
|
6
|
+
"author": "QubiQ Labs <labs@qubiq.ai>",
|
|
7
|
+
"homepage": "https://github.com/javed0211/MobiFlow",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/javed0211/MobiFlow.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/javed0211/MobiFlow/issues"
|
|
14
|
+
},
|
|
15
|
+
"keywords": [
|
|
16
|
+
"maestro",
|
|
17
|
+
"mobile",
|
|
18
|
+
"android",
|
|
19
|
+
"ios",
|
|
20
|
+
"testing",
|
|
21
|
+
"llm",
|
|
22
|
+
"cli",
|
|
23
|
+
"automation",
|
|
24
|
+
"mobiflow"
|
|
25
|
+
],
|
|
26
|
+
"bin": {
|
|
27
|
+
"mobiflow": "bin/mobiflow.js"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"bin/",
|
|
31
|
+
"README.md",
|
|
32
|
+
"LICENSE"
|
|
33
|
+
],
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=18"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"mobiflow": "node bin/mobiflow.js",
|
|
39
|
+
"prepack": "node -e \"require('fs').accessSync('bin/mobiflow.js')\""
|
|
40
|
+
},
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
},
|
|
44
|
+
"preferGlobal": true
|
|
45
|
+
}
|