screenhand 0.3.2 → 0.3.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/README.md +2 -2
- package/dist/mcp-desktop.js +490 -96
- package/dist/src/community/fetcher.js +32 -2
- package/dist/src/community/validator.js +15 -1
- package/dist/src/context-tracker.js +115 -43
- package/dist/src/ingestion/reference-merger.js +3 -1
- package/dist/src/learning/engine.js +225 -7
- package/dist/src/learning/locator-policy.js +16 -0
- package/dist/src/learning/pattern-policy.js +9 -0
- package/dist/src/learning/recovery-policy.js +16 -0
- package/dist/src/learning/sensor-policy.js +9 -0
- package/dist/src/learning/timing-model.js +62 -0
- package/dist/src/memory/research.js +7 -1
- package/dist/src/memory/store.js +18 -7
- package/dist/src/perception/coordinator.js +304 -4
- package/dist/src/perception/manager.js +13 -0
- package/dist/src/perception/vision-source.js +14 -4
- package/dist/src/planner/executor.js +125 -2
- package/dist/src/planner/planner.js +509 -10
- package/dist/src/playbook/engine.js +10 -0
- package/dist/src/recovery/engine.js +50 -3
- package/dist/src/runtime/execution-contract.js +67 -5
- package/dist/src/runtime/executor.js +41 -1
- package/dist/src/runtime/service.js +7 -0
- package/dist/src/state/app-map.js +307 -17
- package/dist/src/util/atomic-write.js +25 -4
- package/dist-references/reddit.json +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -254,7 +254,7 @@ ScreenHand reads the UI tree and DOM directly — no screenshots needed for most
|
|
|
254
254
|
| [All 111 Tools](docs/tools.md) | Complete tool reference with descriptions and speeds |
|
|
255
255
|
| [Architecture](docs/architecture.md) | 7-layer design, app tiers, performance targets |
|
|
256
256
|
| [App Mastery Map](docs/app-mastery-map.md) | Layer 7: persistent spatial understanding, 8 auto-recording features |
|
|
257
|
-
| [Bug Tracker](docs/l2-bug-tracker.md) |
|
|
257
|
+
| [Bug Tracker](docs/l2-bug-tracker.md) | 132 bugs tracked (119 fixed), 80-scenario validation results |
|
|
258
258
|
| [Testing Plan](docs/testing-plan.md) | L1/L2 test methodology and gate criteria |
|
|
259
259
|
|
|
260
260
|
## FAQ
|
|
@@ -294,7 +294,7 @@ Accessibility: ~50ms. Chrome CDP: ~10ms (background, no focus needed). OCR: ~600
|
|
|
294
294
|
```bash
|
|
295
295
|
git clone https://github.com/manushi4/screenhand.git
|
|
296
296
|
cd screenhand && npm install && npm run build:native
|
|
297
|
-
npm test #
|
|
297
|
+
npm test # 1331 tests, 54 files
|
|
298
298
|
```
|
|
299
299
|
|
|
300
300
|
## Contact
|