@aarwitz/tapp 0.17.0 → 0.17.1
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/.claude-plugin/plugin.json +2 -2
- package/AGENTS.md +10 -1
- package/Harness/OCQAHarnessUITests/ExplorerTests.swift +54 -7
- package/README.md +27 -16
- package/bin/tapp.js +72 -1
- package/docs/scenarios.md +1 -1
- package/mcp-server/src/android-driver.js +13 -2
- package/mcp-server/src/focused-navigation.js +271 -0
- package/mcp-server/src/index.js +240 -25
- package/mcp-server/src/ui-map.js +2 -2
- package/package.json +3 -3
- package/scripts/quick-capture.sh +42 -11
- package/scripts/run-flow.sh +12 -1
- package/skills/tapp/SKILL.md +22 -2
- package/skills/tapp/references/commands.md +4 -1
|
@@ -8,6 +8,7 @@ or detect one unambiguous target.
|
|
|
8
8
|
```bash
|
|
9
9
|
npx -y @aarwitz/tapp@latest init . --explore
|
|
10
10
|
npx -y @aarwitz/tapp@latest explore [target]
|
|
11
|
+
npx -y @aarwitz/tapp@latest focus "Save storefront settings visible above keyboard" [target]
|
|
11
12
|
npx -y @aarwitz/tapp@latest open [target]
|
|
12
13
|
npx -y @aarwitz/tapp@latest tree [target] --json
|
|
13
14
|
npx -y @aarwitz/tapp@latest shot
|
|
@@ -41,6 +42,7 @@ npx -y @aarwitz/tapp@latest open https://example.com --tap "Not now" --wait-for
|
|
|
41
42
|
- `tapp_init`: inspect or initialize a source repository; `operation:"explore"` prepares and explores.
|
|
42
43
|
- `tapp_build`: build and install an iOS app without needing its bundle id first.
|
|
43
44
|
- `tapp_open_app`: launch and return a screen summary plus inline screenshot.
|
|
45
|
+
- `tapp_focus`: source-locate a named screen/control and execute the shortest observed route in the active session.
|
|
44
46
|
- `tapp_ui_tree` / `tapp_screenshot`: inspect the current real surface.
|
|
45
47
|
- `tapp_session_start` → `tapp_session_act` → `tapp_session_end`: drive one persistent journey.
|
|
46
48
|
- `tapp_explore`: autonomous iOS, Android, or web exploration; observation only.
|
|
@@ -55,7 +57,8 @@ source-connected `tapp_init`.
|
|
|
55
57
|
## Interactive session loop
|
|
56
58
|
|
|
57
59
|
```text
|
|
58
|
-
tapp_session_start {appBundleId:"com.example.app"}
|
|
60
|
+
tapp_session_start {appBundleId:"com.example.app", focus:"Save storefront settings visible above keyboard", projectDir:"."}
|
|
61
|
+
tapp_focus {query:"Save storefront settings visible above keyboard"}
|
|
59
62
|
tapp_session_act {action:"tap", id:"Email"}
|
|
60
63
|
tapp_session_act {action:"type", text:"qa@example.com"}
|
|
61
64
|
tapp_session_act {action:"tap", id:"Password"}
|