mobile-debug-mcp 0.26.2 → 0.26.4
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/AGENTS.md +3 -0
- package/dist/interact/index.js +600 -70
- package/dist/observe/ios.js +1 -1
- package/dist/server/tool-definitions.js +59 -1
- package/dist/server/tool-handlers.js +25 -0
- package/dist/server-core.js +1 -1
- package/dist/utils/android/utils.js +2 -2
- package/docs/CHANGELOG.md +6 -0
- package/docs/ROADMAP.md +72 -16
- package/docs/rfcs/007-actionability-resolution-and-executable-target-selection.md +277 -0
- package/docs/rfcs/008-adjustable-control-support-and-semantic-value-manipulation.md +273 -0
- package/docs/specs/mcp-tooling-spec-v1.md +1 -1
- package/docs/tools/interact.md +30 -1
- package/package.json +1 -1
- package/src/interact/index.ts +761 -72
- package/src/observe/ios.ts +1 -1
- package/src/server/tool-definitions.ts +59 -1
- package/src/server/tool-handlers.ts +26 -0
- package/src/server-core.ts +1 -1
- package/src/types.ts +90 -0
- package/src/utils/android/utils.ts +2 -2
- package/test/unit/interact/adjust_control.test.ts +365 -0
- package/test/unit/observe/find_element.test.ts +5 -0
- package/test/unit/observe/state_extraction.test.ts +24 -0
- package/test/unit/server/contract.test.ts +8 -0
- package/test/unit/server/response_shapes.test.ts +39 -0
package/AGENTS.md
CHANGED
|
@@ -41,11 +41,14 @@ Portable agent skills live under `skills/`.
|
|
|
41
41
|
- `skills/README.md` — repo-wide skill convention
|
|
42
42
|
- `skills/mcp-builder/` — build/install/toolchain guidance
|
|
43
43
|
- `skills/test-authoring/` — test creation and placement guidance
|
|
44
|
+
- `skills/rfc-review/` — RFC review rubric and response template
|
|
44
45
|
|
|
45
46
|
If the task is about **creating or updating tests**, load `skills/test-authoring/SKILL.md` first.
|
|
46
47
|
|
|
47
48
|
If the task is about **building, installing, or diagnosing native tooling**, load `skills/mcp-builder/SKILL.md` first.
|
|
48
49
|
|
|
50
|
+
If the task is about **reviewing an RFC or spec draft**, load `skills/rfc-review/SKILL.md` first.
|
|
51
|
+
|
|
49
52
|
### Repository docs
|
|
50
53
|
|
|
51
54
|
- `README.md` — high-level repo overview and commands
|