yunti-browser-runtime 0.1.3 → 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/README.md +25 -4
- package/bin/yunti-browser-runtime.js +6 -0
- package/docs/ACTION_RESULT_COVERAGE.md +41 -0
- package/docs/AGENT_WORKFLOW_CONTRACT.md +97 -0
- package/docs/EXECUTION_PLAN.md +1399 -5
- package/docs/EXTENSION_DISTRIBUTION.md +145 -0
- package/docs/EXTENSION_PERMISSION_STRATEGY.md +164 -0
- package/docs/EXTENSION_STORE_COPY.md +210 -0
- package/docs/INSTALL.md +2 -1
- package/docs/NEXT_MAJOR_PLAN.md +808 -0
- package/docs/PROJECT_STATUS.md +1012 -6
- package/docs/PUBLISHING_BLOCKERS.md +1 -1
- package/docs/RELEASE.md +6 -2
- package/docs/RELEASE_0_2_0_CHECKLIST.md +820 -0
- package/docs/ROADMAP.md +44 -0
- package/docs/SECURITY.md +34 -0
- package/docs/TOOL_GUIDE.md +282 -5
- package/extension/content.js +76 -7
- package/extension/dom-observer.js +588 -0
- package/extension/manifest.json +2 -2
- package/extension/session-manager.js +2 -0
- package/extension/tool-handlers.js +1120 -94
- package/mcp/bridge-hub.js +257 -3
- package/mcp/http-server.js +213 -0
- package/mcp/memory.js +5 -5
- package/mcp/redaction.js +52 -3
- package/mcp/server.js +2 -0
- package/mcp/tools.js +417 -38
- package/package.json +4 -2
- package/scripts/check-action-result-coverage.js +145 -0
- package/scripts/doctor.js +4 -0
- package/scripts/package-extension.js +1 -0
- package/scripts/release-check.js +3 -0
- package/skills/yunti-browser-runtime/SKILL.md +125 -2
|
@@ -8,7 +8,7 @@ publishing `yunti-browser-runtime`.
|
|
|
8
8
|
No active npm publish blockers as of 2026-07-03.
|
|
9
9
|
|
|
10
10
|
`yunti-browser-runtime@0.1.3` is published on the official npm registry and
|
|
11
|
-
verified with `npm run release:verify-published`.
|
|
11
|
+
verified with `npm run release:verify-published`. `latest` points to `0.1.3`.
|
|
12
12
|
|
|
13
13
|
## Resolved Blocker: npm 2FA Publish Token
|
|
14
14
|
|
package/docs/RELEASE.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
This runbook describes the local release checklist for Yunti Browser Runtime.
|
|
4
4
|
|
|
5
|
+
For the detailed `0.2.0` release checklist and the full comparison against
|
|
6
|
+
`0.1.0`, see [`docs/RELEASE_0_2_0_CHECKLIST.md`](RELEASE_0_2_0_CHECKLIST.md).
|
|
7
|
+
|
|
5
8
|
## Prerequisites
|
|
6
9
|
|
|
7
10
|
- Node.js 22 or newer.
|
|
@@ -71,7 +74,7 @@ Build and inspect the browser extension zip:
|
|
|
71
74
|
|
|
72
75
|
```bash
|
|
73
76
|
npm run package:extension
|
|
74
|
-
unzip -l dist/yunti-browser-runtime-extension-0.
|
|
77
|
+
unzip -l dist/yunti-browser-runtime-extension-0.2.0.zip
|
|
75
78
|
```
|
|
76
79
|
|
|
77
80
|
`npm run release:check` also validates this zip automatically by parsing the
|
|
@@ -101,7 +104,8 @@ YUNTI_E2E=1 npm run test:e2e
|
|
|
101
104
|
```
|
|
102
105
|
|
|
103
106
|
The default `npm test` run skips the real-browser smoke test unless `YUNTI_E2E=1`
|
|
104
|
-
is set.
|
|
107
|
+
is set. The smoke test loads the unpacked extension in Chromium and verifies the
|
|
108
|
+
P6.1 `observe -> click uid -> verify` path against a local fixture page.
|
|
105
109
|
|
|
106
110
|
## Publish
|
|
107
111
|
|