@wenathlan/extension 2.0.11 → 2.0.13

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 2.0.13
4
+
5
+ This release applies the dependency updates the open dependabot pull requests carried — the denoland/setup-deno action of the verification pipeline moves 2.0.3 → 2.0.5 and the anchore/sbom-action of the security pipeline moves 0.24.0 → 0.24.2, beside the two reference refreshes the same sweep found current (docker/setup-qemu-action 4.2.0 → 4.3.0 and trufflesecurity/trufflehog 3.97.1 → 3.97.4) — and it lands the automation that keeps those numbers current from now on. The maintenance workflow becomes the automated dependency ladder: it applies every non-breaking update available at run time (the npm dependency set, the engine recommendations and the versioned GitHub Actions references), derives the next rung with plain arithmetic over package.json — the current patch number plus one, never a hardcoded number anywhere — stamps it across the whole metadata family, re-freezes the apifreeze artifact, records the permission baseline, runs the complete verification pipeline on the archive-tagged automation branch, squashes the green result onto main with linear history, deletes the branch (the archive tag preserves it verbatim) and dispatches the release workflow on the new version tag, so every automatic bump publishes exactly the way the manual rungs always did.
6
+
7
+ The dependabot configuration is removed with this rung: the versioned GitHub Actions references are the maintenance workflow's own surface now — the denoland/setup-deno entry joins its allowlist so the gap that kept the two open pull requests alive never opens again — and no dependency update path is left creating parallel branches; the repository keeps exactly one long-lived branch (main, protected) and the archive tags carry every automation branch the ladder ever creates. The version stamps 2.0.13 land across the metadata family with the apifreeze artifact re-frozen and the permission baseline recorded.
8
+
9
+ ## 2.0.12
10
+
11
+ This release is the seventh rung of the bug-fix ladder, and it closes the marginal ceiling the 2.0.10 and 2.0.11 container legs caught: the full matrix build test of the library modes family legitimately runs past the five second default on a two vcpu runner — the 2.0.10 amd64 leg failed it at five thousand sixteen milliseconds, a sixteen millisecond overrun of a green test (the same test crossed the same ceiling on the 2.0.9 arm64 leg where the emulated scaling already covered it), so the native ceiling itself was the defect, not the test.
12
+
13
+ The two build-heavy tests of the family now pin their own env-scaled ceilings the same way the vitest config scales the global default: the esm core build reads sixty seconds natively and the whole-matrix build reads one hundred twenty seconds, both reading the same `DEVTHINK_TEST_TIMEOUT_MS` the emulated arm64 container leg exports, so a slow runner or an interpreted leg never fails a test that builds every platform target of the matrix and loads each bundle. The 2.0.11 sanitizer closures, the 2.0.10 emulation ceilings and the 2.0.9 browser flow fixes all ride beneath this rung, and the version stamps 2.0.12 land across the metadata family with the apifreeze artifact re-frozen and the permission baseline recorded.
14
+
3
15
  ## 2.0.11
4
16
 
5
17
  This release is the sixth rung of the bug-fix ladder, and it closes the two code scanning alerts the re-analysis of the security page surfaced beside the two the 2.0.7 rung already closed: the accessibility sweep script carried a replacement-expression sanitizer pair CodeQL refuses — the script stripper of `withoutscripts` (a `[\s\S]*?` alternation over unterminated blocks) flagged as a bad tag filter, and the inline tag strip of the button name scan (a `<[^>]*>` global replace) flagged as incomplete multi character sanitization. Both strips now walk plain index arithmetic the same linear way the tabular preface scans of the 2.0.7 rung read their markers: the script stripper finds each `<script` opening with its word boundary, walks to the closing tag and cuts the whole block (an unterminated block still strips to the fragment end exactly the documented convention), and the new `striptags` helper cuts every complete tag from the button text while an unterminated angle keeps its literal text the way the match never closed.
package/README.md CHANGED
@@ -2,13 +2,13 @@
2
2
 
3
3
  Devthink is a **consent-first browser-agent bridge** distributed as a TypeScript library and a Chromium Manifest V3 extension. It turns a user-provided browser objective into a bounded, reviewable plan. The user must start the active-tab session and approve the plan before any page action reaches the browser.
4
4
 
5
- Version: **2.0.11**. License: **GPL-3.0-only**. The repository is `wenathlan/extension`; the npm-compatible scoped package identifier is `@wenathlan/extension`.
5
+ Version: **2.0.13**. License: **GPL-3.0-only**. The repository is `wenathlan/extension`; the npm-compatible scoped package identifier is `@wenathlan/extension`.
6
6
 
7
7
  **Platform release status:** 2.0.0 is the closing release of the chain from 1.1.31 — the agentic browser platform with the frozen protocolv2 contract, the deprecation window closed (protocol major two only, with the migrateplan bridge and `docs/migrationguide.md` carrying version one assets forward), the example gallery of thirty six runnable recipes (`docs/gallery.md`), the readiness review with the go decision (`docs/readiness.md`) and every candidate gate green with its evidence in `tests/artifacts/`. The library ships on five package channels — npm, maven, nuget, the container image and the rubygems gem. The full chain from 1.1.31 to 2.0.0 lives in `docs/releasenotes.md`.
8
8
 
9
9
  ## What it does
10
10
 
11
- | Capability | Behavior in 2.0.11 |
11
+ | Capability | Behavior in 2.0.13 |
12
12
  | --- | --- |
13
13
  | Active-tab session | The user starts a short-lived session for one HTTPS tab and one origin; the session records its origin grants. |
14
14
  | Page observation | The extension captures the complete semantic inventory: every interactive element, every form control, every select option and the full page text. |
@@ -97,7 +97,7 @@ The endpoint field intentionally has no default URL. Enter a URL such as `https:
97
97
 
98
98
  ```json
99
99
  {
100
- "version": "2.0.11",
100
+ "version": "2.0.13",
101
101
  "objective": "User supplied objective",
102
102
  "session": { "id": "uuid", "tabid": 1, "origin": "https://example.com" },
103
103
  "observation": { "schemaversion": 3, "url": "https://example.com/path", "interactive": [] },
package/bridge.d.ts CHANGED
@@ -428,7 +428,7 @@ import type { jsonrpcframe } from "./types.js";
428
428
  /** The native bridge protocol major version this build speaks: the handshake reports it, the upgrade path keeps compatibility for exactly one major version, and a host that speaks another major version degrades instead of breaking the run. */
429
429
  export declare const nativebridgeprotocolmajor = 1;
430
430
  /** The installer version the installer stamps into the install state; the upgrade path compares it so a manifest written by an older installer reports before it overwrites. */
431
- export declare const nativehostinstallerversion: "2.0.11";
431
+ export declare const nativehostinstallerversion: "2.0.13";
432
432
  /** The generated extension id placeholder the host manifest template carries: the installer replaces the token with the extension id of the installed build, so the template never pins an identity the user did not generate. */
433
433
  export declare const nativehostidplaceholder = "__generated_extension_id__";
434
434
  /** The native messaging directory name of the chromium user profile: the installer writes the host manifest beside it, never into a system directory without the explicit flag. */
package/bridge.js CHANGED
@@ -1,7 +1,7 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // version.ts
4
- var packageversion = "2.0.11";
4
+ var packageversion = "2.0.13";
5
5
  var protocolmajor = 2;
6
6
 
7
7
  // types.ts
package/bun.js CHANGED
@@ -1,7 +1,7 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // version.ts
4
- var packageversion = "2.0.11";
4
+ var packageversion = "2.0.13";
5
5
  var protocolmajor = 2;
6
6
  var protocolfloormajor = 2;
7
7
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "surface": "background",
3
- "release": "2.0.11",
3
+ "release": "2.0.13",
4
4
  "protocolmajor": 2,
5
5
  "messages": [
6
6
  "applyprofile",
package/caps/cli.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "surface": "cli",
3
- "release": "2.0.11",
3
+ "release": "2.0.13",
4
4
  "protocolmajor": 2,
5
5
  "messages": [
6
6
  "commands",
package/caps/library.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "surface": "library",
3
- "release": "2.0.11",
3
+ "release": "2.0.13",
4
4
  "protocolmajor": 2,
5
5
  "messages": [
6
6
  "a11ycapture",
package/caps/mcp.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "surface": "mcp",
3
- "release": "2.0.11",
3
+ "release": "2.0.13",
4
4
  "protocolmajor": 2,
5
5
  "messages": [
6
6
  "browser.a11ytree",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "surface": "pagebridge",
3
- "release": "2.0.11",
3
+ "release": "2.0.13",
4
4
  "protocolmajor": 2,
5
5
  "messages": [
6
6
  "canvasdata",
package/caps/popup.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "surface": "popup",
3
- "release": "2.0.11",
3
+ "release": "2.0.13",
4
4
  "protocolmajor": 2,
5
5
  "messages": [
6
6
  "bridge",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "surface": "sidepanel",
3
- "release": "2.0.11",
3
+ "release": "2.0.13",
4
4
  "protocolmajor": 2,
5
5
  "messages": [
6
6
  "applyprofile",
package/checksums.txt CHANGED
@@ -1,35 +1,35 @@
1
- fd21d1a73d3406b9f6417e42499a8cf7785732c25c5af86e1e384fec5d2fc12d CHANGELOG.md
1
+ a1bfec009776b0cb849d144ec6db7e65a2a9e189a5c0c2d57389050fad8d422c CHANGELOG.md
2
2
  3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 LICENSE
3
- 4dad64c8ab0ceba5a6765cacc486c458a0783534eb7e3f55c77701eafef62870 README.md
4
- 56a41ec46f1a4700278f12413334af1d082ceb73ca332fac3fd5bcc6b666f7f0 bridge.d.ts
3
+ cf09dcab4925653916de0a649b521d3bb63eb23ae549e141ccdb059d9cb8374b README.md
4
+ 453e75538caf2e56021737a01641e34c510cfb24907ff5f5c35c92ba9dcf32eb bridge.d.ts
5
5
  b94ed5a7b48ce8cc8f2a436d17aab70281711d1d870715dec234d9b9bafacae7 bridge.d.ts.map
6
- e7b930447346cf6374cea6ed54ee31bbc4fce3b62cb209067097c0ea38d39b86 bridge.js
6
+ 46a6e52b221e5d90616bc2304c63d1cd6588df9336d417de9775a4805def62b9 bridge.js
7
7
  9557339c2c57fb58212c3b90e8e5934ddba56066a2537d645e4cb34439fdc2ff bun.d.ts
8
8
  12cf6503feb825b4aa5e86303eef9b1bc7cc99358b16e2821dd6ecc01adf1ea8 bun.d.ts.map
9
- 2303fc14698cce0c6d6384dcf2f19d3bda09e81ae3cd571c69124d52c027f644 bun.js
10
- ea4f977739d1858f0546f2c35e1a50e4c04fee986e45095218618de06f3d8979 caps/background.json
11
- c5e735966747ad00f0f2af34484a235dc8928efcd4591279cfa5de7f132bb968 caps/cli.json
12
- 3297e8423b8e28f8fc41baa6c03414ee14eb83e6e13ebf0758d6446bc033ac9a caps/library.json
13
- a8855daa3170482d103836684e258e4f611ce041b0a540cb28cc4d515fdf82c0 caps/mcp.json
14
- e1a247c2337d42dcf6e3739784fbd6ecf14525e7008d050ce4603195fd89d41e caps/pagebridge.json
15
- b48c5b5304e38f5859fa177fcebd9affa1fd2c021cc8386050223e55cea655b1 caps/popup.json
16
- 84955895d725286420a59d874af14ec8afd688ecba611575c082762dbafc3361 caps/sidepanel.json
9
+ 3463c3185e8012c86313deb7241c74b40f31c6fcc7086658e17a08401477e4bb bun.js
10
+ 58fc9044a8546df7c1b8acf5b13b107f116693e162179c717a0770118ca1afed caps/background.json
11
+ c9d05bd1fcd3a451cb70c872cd90e7ff45a2bb13db3f81641b89aff7938beb96 caps/cli.json
12
+ bacf023c8d1f19175880c76b37e5de88310f9495b859f3b86d51b5ee20f304ef caps/library.json
13
+ 55e78c74dfe47ba1f27f4e7c08c293196a26ff5864b281e9c0cedcf5d54e9b1b caps/mcp.json
14
+ c429b1e5af0102d0f652ebc9e0e6e0f956cfc8605593ac63040f3b22f40db720 caps/pagebridge.json
15
+ 0202c6d33f309acc2837fafc8b09659463ff31aff6a27449dd69833eb6a3dd7b caps/popup.json
16
+ c83ebee0595c21526d1acb6e6b59e79b7457c73e30a319ad77b369ea9273700e caps/sidepanel.json
17
17
  e7e6ef1e0354d12e5d81d87d2a99cae14e9f5238ccaecff8a98d8f7923fe6704 cli.d.ts
18
18
  9ff853b4bb864c68733d29abc408f79a212994bc72533c9324bf8ea8226b3bf7 cli.d.ts.map
19
- ba91caec128fb4f97b11eea96d86d08127caa407569710d0b8f3ee9588145fae cli.js
19
+ 3cca34aecd4bb75e1ad35e02245b4dc74f1b6809ffbc9e741faa99980e5a6838 cli.js
20
20
  6d47383663f5efa626bfbc31977bc3df7cfb383725b243ce08057c059234e42f companion.d.ts
21
21
  8839691d2e7362e7db2a198c869904ee05ffda66ac8ee30b0bec53f089a6e895 companion.d.ts.map
22
- 7a23f67760fbd25446e12992a2910981ac54077905b9a23b342b22f630fd3b00 companion.js
22
+ ab9d10d29ac8f87cbdc5e459a0672a30ab45a6d169912ae71331f9285773ba15 companion.js
23
23
  0798e3f62c739f91718389f379f15abfaad3618607b0d1daabf7b736cdcfe014 crossbrowser.d.ts
24
24
  31c6cbef5f64c05662fd9c970e967d4e9afce057d0a0d4925486c3595a009563 crossbrowser.d.ts.map
25
- 7181445c7ee72cd897b9621cec81a819f0f25225ec1dff34f602148503eba003 crossbrowser.js
25
+ c01936002d3cd6639a6494fc8d8d74ee92dea0c23f9d678d649d3ff6c695314f crossbrowser.js
26
26
  bc8f0d95430875b0fd8aff5c0744580d3dd07c5a0927aad4f2c54d34b83be016 dashdone.d.ts
27
27
  64e8394c9c4c0c1c8810ef8b0a384c2dafc920660f0ff5cce114b4a26b240b12 dashdone.d.ts.map
28
- b67e34865604202c437202dcc692765d75767d2e03c0bb3dbb02554f6a288061 dashdone.js
28
+ 9bfba97345f2a1633c1434a11417228853804b6996b847f7036447141c9041ca dashdone.js
29
29
  fea8d906a8c3b0608a9ae4b622c0b88c78d535ed151aa9db29922d817c387495 deno.d.ts
30
30
  d4ec3fbf41854fa8117b0d68d11429e4a5f547213e79ee0e514aca9324aee80a deno.d.ts.map
31
- 7f2e3ba9a2fa386abcbdcca1bf4ede7fe85caf53898153527615a9bb05912ebd deno.js
32
- d8ecba4a246ca56bcd7e6921e54bbed6f307c0f266453b8f304d1194e646de7b devthink.umd.js
31
+ 9c9543b6280c1670bf6d24be13397502daa698da06fa2eb8c6b34c098a412db9 deno.js
32
+ 5cdd474683ff13ba17c7d9d32be847fce8a58dae5b3c2c15791d67c3455c705e devthink.umd.js
33
33
  d8b6d1f6446da72d359dae978c5495244257dc70660415f8aaad96dd5075e241 fixtures/bun.ts
34
34
  702c21459e5d6d8d0b914a86bb6c3646a0be40e132b2d40cc04f2994cfbd1cf3 fixtures/cjs.js
35
35
  6bd268717a28a23405e5200264d47bb68aaf9c0d6d911674eaa22477bf19d003 fixtures/deno.ts
@@ -87,45 +87,45 @@ c93c417dbf3a43736845e653598624ee48e79f69bf93d36e3b19655e0a23b792 fixtures/recip
87
87
  6b757866f79c4a16098879f7cfffdb85557b7fb6ca4ec7b1c0cd1d1169c3e3c0 gallery.json
88
88
  04ce1093ffee4722c8af9a71368ea78d20084473f13fedcf5815c0bc92aca53f gateway.d.ts
89
89
  a1556096ab4ea705fdc92c6f223541c61fded19137cb5b02eb653066cefafa75 gateway.d.ts.map
90
- 6f5381136d2937cc4214c1396350be6dbb746478d0e8eda83fded0486013390a gateway.js
90
+ 4a63be9ee315614df79b15fe9da0e8ce35d1b73b185458ba4f40594812c54193 gateway.js
91
91
  16f6a0cdd78820a257d0fbb501784ed031dcffcdc4b9841d5279c8273e3776f4 hardening.d.ts
92
92
  20c2435cd499f265e70881c868456950ca49ce52183dbf2412ba39be2ac843e1 hardening.d.ts.map
93
- da61964d214ef288686d3c21807ae041a13d1f66a3856a5b5f512d4fd89e9475 hardening.js
93
+ 8f1630894883aa45860a53da305c0f277e18b340de11008be9b3b5363a3df3d5 hardening.js
94
94
  2e560159a8c3b121c91d83545e0dcfa03b79399ed052bc23a425b2d355839362 headless.d.ts
95
95
  0f695301ed2f81fed8c065eafd351f3d966ea29426f6e55fbdd4f5069ffcb9b0 headless.d.ts.map
96
- 472707511b97a0f916f50cd758ab7b66b4bf2c3fc53358f97db7bab281e7652c headless.js
96
+ ca920c6489a0ad01397a6a6b0d5ca1927f40bcebb53af778db20e43c2851f81b headless.js
97
97
  47d12b5bc91b84aa1be9910d7e64626d89471c8bc314a1aae5186cc1242067fd http.d.ts
98
98
  26384b12778283537a8f9987fdf67fae1709ac169eebf15cd697cb52fd08dbdc http.d.ts.map
99
- a5242b23704779eb2a8aa9c3f84d0b7b66b70456b6ea36a702fc8abae9880d20 http.js
100
- 87b62618d83da74d41751709e0f83963a79b0be276b9b3493efb169bed9168f7 index.cjs
99
+ 7888297f4f4256842792c2fafa42ba95ea4f76588af26fab2249f33a9c94815c http.js
100
+ 7881a9457645c5a3ff5b5cc9f5fa74dbc4afcf56bb3e9211b6135bda36946e94 index.cjs
101
101
  f2bfcb6fe460d8f6ad0c41369088bf844c052ac360f90661c4dbbea126294e72 index.d.ts
102
102
  c58e5c80f63f974fd5c9c91ce053bb156709fc94cd845757bf63b5ce9460f44a index.d.ts.map
103
- b29cb97e1ed48f2def0e6c76a3cc9c914b2ba1d603787de8bd4f41997294fe9d index.js
104
- 6fb2d96d74c8c95ce075024c17c703288e7a36e41a0b78e32fc496c69725c558 index.neutral.js
105
- 5313799b48f32e4879b1f562dd7720fb6f1ae16227c37c25cc4e815a82fd1a6b manifest.json
103
+ 03c42ce675df5d1a7baaaf5168f97bb98d60d55eb5c035cf124ba57ec05d46d3 index.js
104
+ 96cc7e70417cea80ba207ffcda78c83ab8d4300bb1d10dc548fad257fbac499d index.neutral.js
105
+ 1662f1a820d574528b9244ce5fdb23b03313b7392b481900ace49bb0b1195d12 manifest.json
106
106
  4a4a38d5c2f25f6e33d7fea853a074d4c82dfe5c721506ca4636b1d65c130f10 mcp.d.ts
107
107
  f6a3dca29e7520472f5fda98a14e9c2abe4fc25515158cda196d455534236f50 mcp.d.ts.map
108
- a1f4ce185c58a8485bb15db73b8b895414c5a38638222a9eebddf52b74952f15 mcp.js
108
+ 7d4d65243872a10a89ae51f41a2a95cc556d397949f741c8c31a240c49343349 mcp.js
109
109
  ce98408283eccac2d435ac0e0ceb6bb5456e1eb70edb03a03e347a9f82f99c69 memory.d.ts
110
110
  11e58fde47bb2b5bcbbb2e8a7ac4d793f661f006f9ad3b0b58b6e26b2c0ab80d memory.d.ts.map
111
- 41214772bb1f076acd778d5d0ba3da454d4c1d7ce2f76943161da22fc843db99 memory.js
112
- be31f260db804493cd06ed83f18ac12303dcf03b2f6a25a1cfe1c7b32db03ba7 nativehost.template.json
113
- a6c61dcf41087fa79e3f55fd0cf46077dafe5d5da737e00780ef7edd5f46dd18 node.cjs
111
+ 536038284873c150738eab5dd502afcc296143eaabce2b50c44b45913d6eb9f3 memory.js
112
+ 7314b42e4243c59bd1acb3bdf8fd3451ed6c2cfe3dc729a8682cbf9ecb555005 nativehost.template.json
113
+ 606a333db9f3bfc2c9244eb34f5b4a074e8af0921dc93e760c645e398ca40717 node.cjs
114
114
  705d895c58fe6816958f0fed4bef0a6f79e5fc521ab49d9cf83e0fbcd9d71afe node.d.ts
115
115
  36b9946ee17e28ccbd83b7260bf0e26031261b268eeb2ff8a0e8784840712a00 node.d.ts.map
116
116
  c40cdda184911cd77067737bbc91295de77535d09970dd540eeeacac2fbc33d9 pack.d.ts
117
117
  ddd8f8ca5410b77ce699ca52560c7a3ab4beabc88ae37e1f6c8d9ab8a5f6697b pack.d.ts.map
118
- 19c0e0f803ec5447b685068646eb540bb51e3bb0a9cce583c0cf91c4793202cb pack.js
119
- 0a1d19383eeef19523972e87c9d0a0bbe7d5a1e24e620abbdfb276823e33abc1 package.json
118
+ 3427d003e5326f943680b8c5c559d06d796ade6ee4722c86653a2a93087ee917 pack.js
119
+ adebe12b12111ca12e21c38046c89e3b4455a74d72d7b0d082e8990a3d2b40a2 package.json
120
120
  e3a2ed944a0bc1ef4943ee250a57e428ce49d781d30de6072571e0bc5d8c0259 policy.d.ts
121
121
  bf6531ec1b14a79cd95bddca0933208570157b0ddc514a6692c0a96734de9efa policy.d.ts.map
122
- 6f48900694b11b4db28b0025dc744a7b1753ea1ba90d08d7a6d2d13ffbc1b3ca policy.js
122
+ 0fb1c023192df55d47189fdcda16aa0ac67858f2fcc218558c5f03e9ea83b65f policy.js
123
123
  ea621ab35e610fbe8acb8e91f21ed2c74a6b20bba537c5982f31458d6878b90b progress.d.ts
124
124
  a8638ca8a7376ef42055b934f3ce865c740a26b06c417445005c1f15ebe66eb5 progress.d.ts.map
125
- 2899dc89604bc35ae9d3a2d3212ed60369196b8f6e03eba5d27ff4192b252b89 progress.js
125
+ e2ab7dd9c807419d7284734527b09da01f7b7cec19c94d89547c593df777a04d progress.js
126
126
  d2e54016f0cad51928752882d780066ccf2267d383deb2407ea7b2f97dfd26e7 protocol.d.ts
127
127
  7185f297b17b448828568d7d6fdfb81efe9c961f692fd2375a3d0e457f69cb77 protocol.d.ts.map
128
- 9239af73206b1c992739c2962a47bb7aa1c6f1712c8882e39f9c3c12a13274aa protocol.js
128
+ 4bd783de1c84bb54291d0f2db73e14f4fe0eba0df99eeedf5412e686bedea34f protocol.js
129
129
  456c4a26fd65c728f2dcb9e615ec6e4d446d7e4228bfa3f70ce2b17ee3d6a2c2 schemas/audit.schema.json
130
130
  ea272aa6bf4df585ae1ca8ca63e36d7ec713c46187f37ed86ff3620a0e8509b2 schemas/capability.schema.json
131
131
  6e9d2291dc54f7d01463e5f70c8f0793d952a63f4096d61ee4dbc4bfd6f6b0a0 schemas/envelope.schema.json
@@ -136,7 +136,7 @@ a02073c153d1248638fa3cbb5f0749534382cf262d09671018cdfc538ae74430 schemas/progre
136
136
  8e104f945a846463c1020cbed21c655f233a943d6e2a18c88b37c7ab56b86de1 schemas/proposal.schema.json
137
137
  d0e0365a7641c0127338c14a5318c4591dc598b7d2a36b7b2944219921d1ce4e schemas/session.schema.json
138
138
  5bb7d16534b52ca3a7171178065fb7b283947accd1b616ce89e330eb7a91b82e schemas/tool.schema.json
139
- e8b154d22e2f332597230ac54234051112288ee129d56bd351c6104043342b3e umd-example.html
139
+ 6fe413f237cc7b4f56ba394a09fa69b1020397fff549f8645fbabd47fd425593 umd-example.html
140
140
  16f66af22e038e4f9328420a0ed0ee34145ca79c938940e8c2e6d232e25a7c09 umd.d.ts
141
141
  ac25f7481155ac9321c5a657e7c4a53570bee8b3f63fe3527045260523a494c8 umd.d.ts.map
142
142
  58e21373cec5ade3e6698da5b36ecc2bf7e7e2f755c6fb5e3a6605b535b93985 manifest.json key
package/cli.js CHANGED
@@ -1,5 +1,5 @@
1
1
  #!/usr/bin/env node
2
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
3
3
 
4
4
  // cli.ts
5
5
  import { createInterface } from "node:readline/promises";
@@ -248,7 +248,7 @@ function endcall(input) {
248
248
  }
249
249
 
250
250
  // version.ts
251
- var packageversion = "2.0.11";
251
+ var packageversion = "2.0.13";
252
252
  var protocolmajor = 2;
253
253
  var protocolfloormajor = 2;
254
254
 
package/companion.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! devthink 2.0.11 companion — the optional native host of the native bridge — GPL-3.0-only — built with plain node, no native compiler */
1
+ /*! devthink 2.0.13 companion — the optional native host of the native bridge — GPL-3.0-only — built with plain node, no native compiler */
2
2
 
3
3
  // companion.ts
4
4
  import { createHash, randomBytes } from "node:crypto";
@@ -16,7 +16,7 @@ var nativehosttemplatejson = `{
16
16
  "devthinkBanner": "devthink __devthink_version__ native host manifest template \u2014 GPL-3.0-only \u2014 the chromium host manifest of the optional companion process"
17
17
  }
18
18
  `;
19
- var companionbuild = "2.0.11";
19
+ var companionbuild = "2.0.13";
20
20
  var companionprotocol = 1;
21
21
  var companionsurfaces = ["osdialog", "notification"];
22
22
  var maxnativemessage = 1024 * 1024;
package/crossbrowser.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // crossbrowser.ts
4
4
  var browserpolyfillflags = ["sidepanel", "scripting", "storage.session", "tabs.executeScript", "notifications", "contextMenus", "clipboard", "downloads", "runtime.messaging", "runtime.geturl"];
package/dashdone.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // dashdone.ts
4
4
  function dashboardviewerof(input) {
package/deno.js CHANGED
@@ -1,7 +1,7 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // version.ts
4
- var packageversion = "2.0.11";
4
+ var packageversion = "2.0.13";
5
5
  var protocolmajor = 2;
6
6
  var protocolfloormajor = 2;
7
7
 
package/devthink.umd.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
  (function (root, factory) {
3
3
  if (typeof define === "function" && define.amd) { define([], factory); }
4
4
  else if (typeof module === "object" && module.exports) { module.exports = factory(); }
@@ -2365,7 +2365,7 @@ __export(umd_exports, {
2365
2365
  module.exports = __toCommonJS(umd_exports);
2366
2366
 
2367
2367
  // version.ts
2368
- var packageversion = "2.0.11";
2368
+ var packageversion = "2.0.13";
2369
2369
  var protocolmajor = 2;
2370
2370
  var protocolfloormajor = 2;
2371
2371
 
package/gateway.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // auth.ts
4
4
  function urlencodeform(fields) {
package/hardening.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // security.ts
4
4
  var maskmarker = "[redacted]";
package/headless.js CHANGED
@@ -1,7 +1,7 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // version.ts
4
- var packageversion = "2.0.11";
4
+ var packageversion = "2.0.13";
5
5
  var protocolmajor = 2;
6
6
 
7
7
  // runtime.ts
package/http.js CHANGED
@@ -1,7 +1,7 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // version.ts
4
- var packageversion = "2.0.11";
4
+ var packageversion = "2.0.13";
5
5
  var protocolmajor = 2;
6
6
 
7
7
  // types.ts
package/index.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
  "use strict";
3
3
  var __defProp = Object.defineProperty;
4
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -2356,7 +2356,7 @@ __export(cjs_exports, {
2356
2356
  module.exports = __toCommonJS(cjs_exports);
2357
2357
 
2358
2358
  // version.ts
2359
- var packageversion = "2.0.11";
2359
+ var packageversion = "2.0.13";
2360
2360
  var protocolmajor = 2;
2361
2361
  var protocolfloormajor = 2;
2362
2362
 
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // version.ts
4
- var packageversion = "2.0.11";
4
+ var packageversion = "2.0.13";
5
5
  var protocolmajor = 2;
6
6
  var protocolfloormajor = 2;
7
7
 
package/index.neutral.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // debug.ts
4
4
  var cdpkinds = ["attachcdp", "detachcdp", "cdpcmd", "watchcdp", "setbreakpoint", "stepcode", "watchexpr", "overridescript"];
@@ -1284,7 +1284,7 @@ function sessionbundleof(input) {
1284
1284
  }
1285
1285
 
1286
1286
  // version.ts
1287
- var packageversion = "2.0.11";
1287
+ var packageversion = "2.0.13";
1288
1288
  var protocolmajor = 2;
1289
1289
  var protocolfloormajor = 2;
1290
1290
 
package/manifest.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "manifest_version": 3,
3
3
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAnOEjO8Z0PDgQyfvawGcaO2j+o0GLCFTLNj7TkYC/Avo9l2NenMRq7gp90Nfd7E9MViv/OMcCKSYZ5unv12QPRtv31C+a5UQWDFAOP/cH5mwMd6hsayElrSoW8ta+FwFqmr9dIFkn7cQEU3YhZr4Gcbs+ycUHOxVgDA4NBKB0rQ6e9VW5LvTw0isRYUrqM+M72vKxHk9zUIYYn/LGPvottKBYi2GLr0PHSeC2UE+Shmq7vcFIXj6hDjvD4kLJ5sKoUllEcZ1TPuBcnHUQ9ndKA5iktXDQOIJCUJmi7a0YJ2PGg7fvpYfT9k0ai/qZ+pIoRfoOEwE01bPoDn7NjeYnNQIDAQAB",
4
4
  "name": "Devthink",
5
- "version": "2.0.11",
5
+ "version": "2.0.13",
6
6
  "description": "A consent-first bridge for reviewed browser-agent tasks.",
7
7
  "icons": {
8
8
  "16": "icons/16.png",
package/mcp.js CHANGED
@@ -1,7 +1,7 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // version.ts
4
- var packageversion = "2.0.11";
4
+ var packageversion = "2.0.13";
5
5
  var protocolmajor = 2;
6
6
  var protocolfloormajor = 2;
7
7
 
package/memory.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // debug.ts
4
4
  function expireprofilerecords(input) {
@@ -6,5 +6,5 @@
6
6
  "allowed_origins": [
7
7
  "chrome-extension://__generated_extension_id__/"
8
8
  ],
9
- "devthinkBanner": "devthink 2.0.11 native host manifest template — GPL-3.0-only — the chromium host manifest of the optional companion process"
9
+ "devthinkBanner": "devthink 2.0.13 native host manifest template — GPL-3.0-only — the chromium host manifest of the optional companion process"
10
10
  }
package/node.cjs CHANGED
@@ -1,4 +1,4 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
  "use strict";
3
3
  var __defProp = Object.defineProperty;
4
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -2357,7 +2357,7 @@ __export(node_exports, {
2357
2357
  module.exports = __toCommonJS(node_exports);
2358
2358
 
2359
2359
  // version.ts
2360
- var packageversion = "2.0.11";
2360
+ var packageversion = "2.0.13";
2361
2361
  var protocolmajor = 2;
2362
2362
  var protocolfloormajor = 2;
2363
2363
 
package/pack.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // pack.ts
4
4
  function artifactchannels() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wenathlan/extension",
3
- "version": "2.0.11",
3
+ "version": "2.0.13",
4
4
  "description": "Consent-first browser agent bridge and Manifest V3 extension.",
5
5
  "type": "module",
6
6
  "license": "GPL-3.0-only",
package/policy.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // debug.ts
4
4
  var cdpdomains = ["Runtime", "Log", "Debugger", "DOM", "Network", "Page"];
@@ -316,7 +316,7 @@ function sessionrecordvalid(value) {
316
316
  }
317
317
 
318
318
  // version.ts
319
- var packageversion = "2.0.11";
319
+ var packageversion = "2.0.13";
320
320
  var protocolmajor = 2;
321
321
  var protocolfloormajor = 2;
322
322
 
package/progress.js CHANGED
@@ -1,7 +1,7 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // version.ts
4
- var packageversion = "2.0.11";
4
+ var packageversion = "2.0.13";
5
5
  var protocolmajor = 2;
6
6
 
7
7
  // progress.ts
package/protocol.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! devthink 2.0.11 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
1
+ /*! devthink 2.0.13 — consent-first browser agent library — GPL-3.0-only — https://github.com/wenathlan/extension */
2
2
 
3
3
  // debug.ts
4
4
  var cdpdomains = ["Runtime", "Log", "Debugger", "DOM", "Network", "Page"];
@@ -987,7 +987,7 @@ function cronvalue(value, min, max, names) {
987
987
  }
988
988
 
989
989
  // version.ts
990
- var packageversion = "2.0.11";
990
+ var packageversion = "2.0.13";
991
991
  var protocolmajor = 2;
992
992
 
993
993
  // types.ts
package/umd-example.html CHANGED
@@ -1,4 +1,4 @@
1
- <!-- devthink 2.0.11 umd example page — GPL-3.0-only -->
1
+ <!-- devthink 2.0.13 umd example page — GPL-3.0-only -->
2
2
  <!doctype html>
3
3
  <html lang="en">
4
4
  <head>