@aarwitz/tapp 0.17.2 → 0.17.3
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/README.md +12 -2
- package/docs/scenarios.md +1 -1
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tapp",
|
|
3
3
|
"description": "Give Claude hands and eyes on iOS, Android, and web apps, with exploration, replayable flows, evidence, and deterministic CI gates.",
|
|
4
|
-
"version": "0.17.
|
|
4
|
+
"version": "0.17.3",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Aaron Horowitz",
|
|
7
7
|
"url": "https://github.com/aarwitz"
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"command": "npx",
|
|
25
25
|
"args": [
|
|
26
26
|
"-y",
|
|
27
|
-
"@aarwitz/tapp@0.17.
|
|
27
|
+
"@aarwitz/tapp@0.17.3",
|
|
28
28
|
"mcp"
|
|
29
29
|
],
|
|
30
30
|
"cwd": "${CLAUDE_PROJECT_DIR}"
|
package/README.md
CHANGED
|
@@ -17,6 +17,12 @@ Exploration reports findings, coverage, evidence, and limits. Only the repositor
|
|
|
17
17
|
returns `pass`, `fail`, or `inconclusive`. Tapp does not turn an autonomous crawl into a subjective
|
|
18
18
|
"ship-ready" score.
|
|
19
19
|
|
|
20
|
+
[](https://runtapp.com/#proof)
|
|
21
|
+
|
|
22
|
+
**Real evidence, not a mock:** this public DemoApp run reached the requested iOS surface in three
|
|
23
|
+
observed route actions. [Watch 45 seconds of autonomous exploration](https://runtapp.com/assets/tapp-explore-ios.mp4)
|
|
24
|
+
or [inspect a complete sanitized web evidence report](https://runtapp.com/evidence/webdemo/report.html).
|
|
25
|
+
|
|
20
26
|
Supported targets:
|
|
21
27
|
|
|
22
28
|
| Target app | Runtime |
|
|
@@ -74,6 +80,10 @@ It contributes the same cross-platform Agent Skill to Copilot plus focused iOS s
|
|
|
74
80
|
an auto-refreshing screenshot preview. The preview is not an embedded Simulator or video stream.
|
|
75
81
|
Android and web remain available through the skill's CLI/MCP workflow.
|
|
76
82
|
|
|
83
|
+
**Teams:** Tapp's core stays MIT licensed. A small paid founding pilot is open for hands-on
|
|
84
|
+
repository onboarding, important-journey setup, and CI integration in infrastructure you control.
|
|
85
|
+
[Apply without sharing private data](https://github.com/aarwitz/tapp/issues/new?template=founding-pilot.yml).
|
|
86
|
+
|
|
77
87
|
```
|
|
78
88
|
you: "Add a logout button to the settings screen"
|
|
79
89
|
agent: *writes the Swift*
|
|
@@ -338,7 +348,7 @@ jobs:
|
|
|
338
348
|
timeout-minutes: 45
|
|
339
349
|
steps:
|
|
340
350
|
- uses: actions/checkout@v4
|
|
341
|
-
- uses: aarwitz/tapp@v0.17.
|
|
351
|
+
- uses: aarwitz/tapp@v0.17.3 # or pin the reviewed release commit SHA
|
|
342
352
|
with:
|
|
343
353
|
project: MyApp.xcodeproj # or MyApp.xcworkspace
|
|
344
354
|
scheme: MyApp
|
|
@@ -388,7 +398,7 @@ Android CI runs on Linux with an emulator/device already connected. The Action c
|
|
|
388
398
|
or accept a prebuilt one:
|
|
389
399
|
|
|
390
400
|
```yaml
|
|
391
|
-
- uses: aarwitz/tapp@v0.17.
|
|
401
|
+
- uses: aarwitz/tapp@v0.17.3 # or pin the reviewed release commit SHA
|
|
392
402
|
with:
|
|
393
403
|
platform: android
|
|
394
404
|
android-app-id: com.acme.app
|
package/docs/scenarios.md
CHANGED
|
@@ -74,7 +74,7 @@ tapp ci --platform web --url http://127.0.0.1:4180 \
|
|
|
74
74
|
GitHub Action:
|
|
75
75
|
|
|
76
76
|
```yaml
|
|
77
|
-
- uses: aarwitz/tapp@v0.17.
|
|
77
|
+
- uses: aarwitz/tapp@v0.17.3 # or pin the reviewed release commit SHA
|
|
78
78
|
with:
|
|
79
79
|
platform: web
|
|
80
80
|
url: http://127.0.0.1:4180
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aarwitz/tapp",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.3",
|
|
4
4
|
"mcpName": "io.github.aarwitz/tapp",
|
|
5
5
|
"description": "Let coding agents verify UI changes on real iOS, Android, and web surfaces, then enforce reviewed proof in deterministic CI.",
|
|
6
6
|
"license": "MIT",
|