unbrowse 9.9.0-preview.2 → 9.9.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unbrowse",
3
- "version": "9.9.0-preview.2",
3
+ "version": "9.9.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/unbrowse-ai/unbrowse.git"
package/runtime/cli.js CHANGED
@@ -2533,7 +2533,7 @@ var init_telemetry = __esm(() => {
2533
2533
  });
2534
2534
 
2535
2535
  // .tmp-runtime-src/build-info.generated.ts
2536
- var BUILD_RELEASE_VERSION = "9.9.0-preview.2", BUILD_GIT_SHA = "dc286ad123ea", BUILD_CODE_HASH = "5d9ebf619c61", BUILD_RELEASE_MANIFEST_BASE64 = "eyJzY2hlbWFfdmVyc2lvbiI6MSwicmVsZWFzZV92ZXJzaW9uIjoiOS45LjAtcHJldmlldy4yIiwiZ2l0X3NoYSI6ImRjMjg2YWQxMjNlYSIsImNvZGVfaGFzaCI6IjVkOWViZjYxOWM2MSIsInRyYWNlX3ZlcnNpb24iOiI1ZDllYmY2MTljNjFAZGMyODZhZDEyM2VhIiwiaXNzdWVkX2F0IjoiMjAyNi0wNi0xOFQxNjoxNToxNi45MjBaIn0", BUILD_RELEASE_MANIFEST_SIGNATURE = "wos62b8GPTpLUxbbAFjRdPxUoBI7JXR0d0plDAtGnTA", BUILD_DEFAULT_BACKEND_URL = "https://beta-api.unbrowse.ai", BUILD_DEFAULT_PROFILE = "";
2536
+ var BUILD_RELEASE_VERSION = "9.9.0", BUILD_GIT_SHA = "650db2e1ec25", BUILD_CODE_HASH = "5d9ebf619c61", BUILD_RELEASE_MANIFEST_BASE64 = "eyJzY2hlbWFfdmVyc2lvbiI6MSwicmVsZWFzZV92ZXJzaW9uIjoiOS45LjAiLCJnaXRfc2hhIjoiNjUwZGIyZTFlYzI1IiwiY29kZV9oYXNoIjoiNWQ5ZWJmNjE5YzYxIiwidHJhY2VfdmVyc2lvbiI6IjVkOWViZjYxOWM2MUA2NTBkYjJlMWVjMjUiLCJpc3N1ZWRfYXQiOiIyMDI2LTA2LTE4VDIyOjM2OjU1LjMyN1oifQ", BUILD_RELEASE_MANIFEST_SIGNATURE = "X0M9sccYdXhxj2SYYjPvTw03gRu6hpU6d_Zo4K_V_lI", BUILD_DEFAULT_BACKEND_URL = "https://beta-api.unbrowse.ai", BUILD_DEFAULT_PROFILE = "";
2537
2537
 
2538
2538
  // .tmp-runtime-src/version.ts
2539
2539
  import { createHash as createHash7 } from "crypto";
@@ -45727,9 +45727,21 @@ function withDeadlineResult(p, ms, fallback) {
45727
45727
  }
45728
45728
 
45729
45729
  // .tmp-runtime-src/publish/sanitize.ts
45730
+ function isBoundCommitment(value) {
45731
+ if (!value.startsWith("zkbind:"))
45732
+ return false;
45733
+ const parts = value.slice("zkbind:".length).split(".");
45734
+ if (parts.length !== 3)
45735
+ return false;
45736
+ const [y, root, sig] = parts;
45737
+ const isHex = (s) => s.length > 0 && /^[0-9a-f]+$/i.test(s);
45738
+ return isHex(y) && y.length >= 8 && y.length <= 512 && isHex(root) && root.length === 64 && isHex(sig) && sig.length === 128;
45739
+ }
45730
45740
  function looksLikeSecret(key, value) {
45731
45741
  if (typeof value !== "string" || value.length < 8)
45732
45742
  return false;
45743
+ if (value.startsWith("zkbind:"))
45744
+ return !isBoundCommitment(value);
45733
45745
  if (SECRET_KEY_PATTERNS.test(key))
45734
45746
  return true;
45735
45747
  return SECRET_VALUE_PATTERNS.some((pattern) => pattern.test(value));
@@ -236599,6 +236611,12 @@ async function handler53(parsed, opts) {
236599
236611
  you,
236600
236612
  network: body,
236601
236613
  summary: body,
236614
+ docs: {
236615
+ how_it_pays: "https://unbrowse.ai/how-unbrowse-pays",
236616
+ economy: "per-use x402 micropayments; bind a wallet to a domain you own to earn the owner share — paper: Unbrowse Maintenance Network",
236617
+ privacy: "credentials are bound to your wallet by commitmentBound proof and revealed only under signature — paper: Crypto Was All You Needed",
236618
+ papers: "https://unbrowse.ai/papers"
236619
+ },
236602
236620
  audit_emit: auditEmit
236603
236621
  }, opts);
236604
236622
  process.exit(status >= 200 && status < 300 ? 0 : EX_GENERIC);
@@ -242174,6 +242192,11 @@ function printHelp() {
242174
242192
  " --help Print this help (or, after a verb, that verb's capabilities).",
242175
242193
  "",
242176
242194
  "Run `unbrowse <verb> --help` for the full capability list.",
242195
+ "",
242196
+ "Learn more (the WHAT behind the runtime \u2014 read the papers for the rest):",
242197
+ " How it pays https://unbrowse.ai/how-unbrowse-pays per-use x402 micropayments; bind a wallet to a domain you own to earn the owner share (paper: Unbrowse Maintenance Network)",
242198
+ " Privacy https://unbrowse.ai/privacy credentials bound to your wallet by commitmentBound proof, revealed only under signature (paper: Crypto Was All You Needed)",
242199
+ " Papers https://unbrowse.ai/papers",
242177
242200
  ""
242178
242201
  ];
242179
242202
  process.stdout.write(lines.join(`
package/runtime/mcp.js CHANGED
@@ -35790,9 +35790,21 @@ function withDeadlineResult(p, ms, fallback) {
35790
35790
  }
35791
35791
 
35792
35792
  // .tmp-runtime-src/publish/sanitize.ts
35793
+ function isBoundCommitment(value) {
35794
+ if (!value.startsWith("zkbind:"))
35795
+ return false;
35796
+ const parts = value.slice("zkbind:".length).split(".");
35797
+ if (parts.length !== 3)
35798
+ return false;
35799
+ const [y, root, sig] = parts;
35800
+ const isHex = (s) => s.length > 0 && /^[0-9a-f]+$/i.test(s);
35801
+ return isHex(y) && y.length >= 8 && y.length <= 512 && isHex(root) && root.length === 64 && isHex(sig) && sig.length === 128;
35802
+ }
35793
35803
  function looksLikeSecret(key, value) {
35794
35804
  if (typeof value !== "string" || value.length < 8)
35795
35805
  return false;
35806
+ if (value.startsWith("zkbind:"))
35807
+ return !isBoundCommitment(value);
35796
35808
  if (SECRET_KEY_PATTERNS.test(key))
35797
35809
  return true;
35798
35810
  return SECRET_VALUE_PATTERNS.some((pattern) => pattern.test(value));
@@ -36310,7 +36322,7 @@ var init_cached_resolution = __esm(() => {
36310
36322
  });
36311
36323
 
36312
36324
  // .tmp-runtime-src/build-info.generated.ts
36313
- var BUILD_RELEASE_VERSION = "9.9.0-preview.2", BUILD_GIT_SHA = "dc286ad123ea", BUILD_CODE_HASH = "5d9ebf619c61", BUILD_RELEASE_MANIFEST_BASE64 = "eyJzY2hlbWFfdmVyc2lvbiI6MSwicmVsZWFzZV92ZXJzaW9uIjoiOS45LjAtcHJldmlldy4yIiwiZ2l0X3NoYSI6ImRjMjg2YWQxMjNlYSIsImNvZGVfaGFzaCI6IjVkOWViZjYxOWM2MSIsInRyYWNlX3ZlcnNpb24iOiI1ZDllYmY2MTljNjFAZGMyODZhZDEyM2VhIiwiaXNzdWVkX2F0IjoiMjAyNi0wNi0xOFQxNjoxNToxNi45MjBaIn0", BUILD_RELEASE_MANIFEST_SIGNATURE = "wos62b8GPTpLUxbbAFjRdPxUoBI7JXR0d0plDAtGnTA", BUILD_DEFAULT_BACKEND_URL = "https://beta-api.unbrowse.ai", BUILD_DEFAULT_PROFILE = "";
36325
+ var BUILD_RELEASE_VERSION = "9.9.0", BUILD_GIT_SHA = "650db2e1ec25", BUILD_CODE_HASH = "5d9ebf619c61", BUILD_RELEASE_MANIFEST_BASE64 = "eyJzY2hlbWFfdmVyc2lvbiI6MSwicmVsZWFzZV92ZXJzaW9uIjoiOS45LjAiLCJnaXRfc2hhIjoiNjUwZGIyZTFlYzI1IiwiY29kZV9oYXNoIjoiNWQ5ZWJmNjE5YzYxIiwidHJhY2VfdmVyc2lvbiI6IjVkOWViZjYxOWM2MUA2NTBkYjJlMWVjMjUiLCJpc3N1ZWRfYXQiOiIyMDI2LTA2LTE4VDIyOjM2OjU1LjMyN1oifQ", BUILD_RELEASE_MANIFEST_SIGNATURE = "X0M9sccYdXhxj2SYYjPvTw03gRu6hpU6d_Zo4K_V_lI", BUILD_DEFAULT_BACKEND_URL = "https://beta-api.unbrowse.ai", BUILD_DEFAULT_PROFILE = "";
36314
36326
 
36315
36327
  // .tmp-runtime-src/version.ts
36316
36328
  import { createHash as createHash4 } from "crypto";
@@ -229512,6 +229524,12 @@ async function handler53(parsed, opts) {
229512
229524
  you,
229513
229525
  network: body,
229514
229526
  summary: body,
229527
+ docs: {
229528
+ how_it_pays: "https://unbrowse.ai/how-unbrowse-pays",
229529
+ economy: "per-use x402 micropayments; bind a wallet to a domain you own to earn the owner share — paper: Unbrowse Maintenance Network",
229530
+ privacy: "credentials are bound to your wallet by commitmentBound proof and revealed only under signature — paper: Crypto Was All You Needed",
229531
+ papers: "https://unbrowse.ai/papers"
229532
+ },
229515
229533
  audit_emit: auditEmit
229516
229534
  }, opts);
229517
229535
  process.exit(status >= 200 && status < 300 ? 0 : EX_GENERIC);
@@ -235227,6 +235245,11 @@ function printHelp() {
235227
235245
  " --help Print this help (or, after a verb, that verb's capabilities).",
235228
235246
  "",
235229
235247
  "Run `unbrowse <verb> --help` for the full capability list.",
235248
+ "",
235249
+ "Learn more (the WHAT behind the runtime — read the papers for the rest):",
235250
+ " How it pays https://unbrowse.ai/how-unbrowse-pays per-use x402 micropayments; bind a wallet to a domain you own to earn the owner share (paper: Unbrowse Maintenance Network)",
235251
+ " Privacy https://unbrowse.ai/privacy credentials bound to your wallet by commitmentBound proof, revealed only under signature (paper: Crypto Was All You Needed)",
235252
+ " Papers https://unbrowse.ai/papers",
235230
235253
  ""
235231
235254
  ];
235232
235255
  process.stdout.write(lines.join(`
Binary file
@@ -2,7 +2,7 @@
2
2
  "repo_url": "https://github.com/justrach/kuri.git",
3
3
  "branch": "adding-extensions",
4
4
  "source_sha": "149881254046a20778f642b69f20f0c6468f6fb4",
5
- "built_at": "2026-06-18T15:57:58.412Z",
5
+ "built_at": "2026-06-18T22:23:09.225Z",
6
6
  "binaries": {
7
7
  "darwin-arm64": {
8
8
  "zig_target": "aarch64-macos",
@@ -21,11 +21,11 @@
21
21
  },
22
22
  "linux-x64": {
23
23
  "zig_target": "x86_64-linux",
24
- "sha256": "32ce1ea4e863406d472f9934e61a95dc9a009bc02733f5ef953567b33fdf5fcf"
24
+ "sha256": "badb2a7eb57ca9fd1b286a05abeb0f0bfc392389b3ccddb015dcda057a54e538"
25
25
  },
26
26
  "win-x64": {
27
27
  "zig_target": "x86_64-windows-gnu",
28
- "sha256": "e8889794dfd637ae750861453a4898df5f77b2407483a40f1cdcf6612b7b5eee",
28
+ "sha256": "adbed87f8c362a8c96ac79422082d6b17c60552358c1062e19ff9461360ad1e7",
29
29
  "source": "pre-staged"
30
30
  }
31
31
  },
@@ -33,22 +33,22 @@
33
33
  "darwin-arm64": {
34
34
  "zig_target": "aarch64-macos",
35
35
  "lib": "libkuri_ffi.dylib",
36
- "sha256": "f85f1b14367bb18d175c16750c997a72b57a1017a9f25511a708a96e19f3efc4"
36
+ "sha256": "90817d01f3d5da600b38bcd966564fd02dec1981e039d07dafc2584beb475c03"
37
37
  },
38
38
  "darwin-x64": {
39
39
  "zig_target": "x86_64-macos",
40
40
  "lib": "libkuri_ffi.dylib",
41
- "sha256": "0b0622e7f79977e1f097fb0669d551c0be7f60878c4767b90320fe5615b7d2d5"
41
+ "sha256": "031b8ac3bd7d147d68409c066d82b7a1114e81750123e39f7d2a2578bbea43bf"
42
42
  },
43
43
  "linux-arm64": {
44
44
  "zig_target": "aarch64-linux",
45
45
  "lib": "libkuri_ffi.so",
46
- "sha256": "7313d12ae9cbcde9cedb8f3b1cd8430b5837685aa7a86cbb005b15388d1d8e81"
46
+ "sha256": "910bd9342477a4cc7bf29084db3ce8b4523697bdd61ec0332407413810aa1a87"
47
47
  },
48
48
  "linux-x64": {
49
49
  "zig_target": "x86_64-linux",
50
50
  "lib": "libkuri_ffi.so",
51
- "sha256": "45bb54cd72b32b0fcb81986fc5627f20429f551b0f5e3d33762c8c4f0a487773"
51
+ "sha256": "b8a282c4b159b322da1dd68bb8ba8552c6b89d0db91a2c503e91e4ade5e35f84"
52
52
  }
53
53
  }
54
54
  }
Binary file