@vantaloom/runtime-win32-x64 0.6.34 → 0.6.36

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/VERSION CHANGED
@@ -1 +1 @@
1
- 39b07e9
1
+ aceded1
Binary file
Binary file
Binary file
package/cli/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vantaloom/cli",
3
- "version": "0.6.34",
3
+ "version": "0.6.36",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Vantaloom local runtime manager.",
package/cli/src/cli.mjs CHANGED
@@ -343,6 +343,7 @@ child.on("error", (e) => {
343
343
  cpSync(tmpModules, destModules, { recursive: true })
344
344
 
345
345
  patchAdapterLocalCommands(destModules)
346
+ patchAdapterProactiveDrain(destModules)
346
347
 
347
348
  writeFileSync(shimPath, shimSource)
348
349
  console.log(` bundled ACP adapter -> adapters/node_modules + reclaude-shim.mjs`)
@@ -390,6 +391,393 @@ function patchAdapterLocalCommands(destModules) {
390
391
  console.log(` patched adapter: forward all local slash-command output (/usage, /context, …)`)
391
392
  }
392
393
 
394
+ // patchAdapterProactiveDrain rewrites the bundled claude-code-acp adapter so that
395
+ // agent-initiated ("proactive") turns stream live to the client. In stock 0.16.2
396
+ // the ACP prompt(params) handler is the ONLY consumer of the long-lived Claude
397
+ // Code `query` async generator and it stops reading at the first `result`. When
398
+ // Claude Code is idle it fires proactive turns (background-task completion,
399
+ // scheduled wakeup, proactive tick) as fresh run() loops that push a full
400
+ // running→messages→result→idle cycle onto the SAME stream. Because nobody calls
401
+ // query.next() between prompts, those messages buffer and are only drained one
402
+ // per user prompt(). This patch installs a SINGLE continuous drainer that reads
403
+ // query.next() forever and forwards every message via client.sessionUpdate;
404
+ // prompt() just pushes input and awaits the next turn's result via a FIFO of
405
+ // turn-waiters. Idempotent + version-tolerant: logs a warning (never throws) if
406
+ // either anchor isn't found, so a future adapter bump doesn't break packaging.
407
+ // NOTE: this runs AFTER patchAdapterLocalCommands, so the prompt() anchor below
408
+ // matches the post-local-patch source (the `true /* vantaloom: ... */` form).
409
+ function patchAdapterProactiveDrain(destModules) {
410
+ const agentFile = path.join(
411
+ destModules,
412
+ "@zed-industries",
413
+ "claude-code-acp",
414
+ "dist",
415
+ "acp-agent.js",
416
+ )
417
+ if (!existsSync(agentFile)) {
418
+ console.warn(` warning: adapter patch target missing (${agentFile}); proactive turns may not stream live`)
419
+ return
420
+ }
421
+ const src = readFileSync(agentFile, "utf8")
422
+ if (src.includes("_vantaloomDrain")) {
423
+ // Already patched (idempotent).
424
+ return
425
+ }
426
+
427
+ // Anchor 1: the EXACT original prompt(params) method (byte-exact for 0.16.2,
428
+ // post-local-command-patch — 4-space nesting). Begins at ` async prompt`
429
+ // and ends at the closing brace after the "Session did not end in result" throw.
430
+ const promptAnchor = ` async prompt(params) {
431
+ if (!this.sessions[params.sessionId]) {
432
+ throw new Error("Session not found");
433
+ }
434
+ this.sessions[params.sessionId].cancelled = false;
435
+ const { query, input } = this.sessions[params.sessionId];
436
+ input.push(promptToClaude(params));
437
+ while (true) {
438
+ const { value: message, done } = await query.next();
439
+ if (done || !message) {
440
+ if (this.sessions[params.sessionId].cancelled) {
441
+ return { stopReason: "cancelled" };
442
+ }
443
+ break;
444
+ }
445
+ switch (message.type) {
446
+ case "system":
447
+ switch (message.subtype) {
448
+ case "init":
449
+ break;
450
+ case "compact_boundary":
451
+ case "hook_started":
452
+ case "task_notification":
453
+ case "hook_progress":
454
+ case "hook_response":
455
+ case "status":
456
+ case "files_persisted":
457
+ // Todo: process via status api: https://docs.claude.com/en/docs/claude-code/hooks#hook-output
458
+ break;
459
+ default:
460
+ unreachable(message, this.logger);
461
+ break;
462
+ }
463
+ break;
464
+ case "result": {
465
+ if (this.sessions[params.sessionId].cancelled) {
466
+ return { stopReason: "cancelled" };
467
+ }
468
+ switch (message.subtype) {
469
+ case "success": {
470
+ if (message.result.includes("Please run /login")) {
471
+ throw RequestError.authRequired();
472
+ }
473
+ if (message.is_error) {
474
+ throw RequestError.internalError(undefined, message.result);
475
+ }
476
+ return { stopReason: "end_turn" };
477
+ }
478
+ case "error_during_execution":
479
+ if (message.is_error) {
480
+ throw RequestError.internalError(undefined, message.errors.join(", ") || message.subtype);
481
+ }
482
+ return { stopReason: "end_turn" };
483
+ case "error_max_budget_usd":
484
+ case "error_max_turns":
485
+ case "error_max_structured_output_retries":
486
+ if (message.is_error) {
487
+ throw RequestError.internalError(undefined, message.errors.join(", ") || message.subtype);
488
+ }
489
+ return { stopReason: "max_turn_requests" };
490
+ default:
491
+ unreachable(message, this.logger);
492
+ break;
493
+ }
494
+ break;
495
+ }
496
+ case "stream_event": {
497
+ for (const notification of streamEventToAcpNotifications(message, params.sessionId, this.toolUseCache, this.client, this.logger)) {
498
+ await this.client.sessionUpdate(notification);
499
+ }
500
+ break;
501
+ }
502
+ case "user":
503
+ case "assistant": {
504
+ if (this.sessions[params.sessionId].cancelled) {
505
+ break;
506
+ }
507
+ // Slash commands like /compact can generate invalid output... doesn't match
508
+ // their own docs: https://docs.anthropic.com/en/docs/claude-code/sdk/sdk-slash-commands#%2Fcompact-compact-conversation-history
509
+ if (typeof message.message.content === "string" &&
510
+ message.message.content.includes("<local-command-stdout>")) {
511
+ // Handle /context by sending its reply as regular agent message.
512
+ if (true /* vantaloom: forward all local-command stdout */) {
513
+ for (const notification of toAcpNotifications(message.message.content
514
+ .replace("<local-command-stdout>", "")
515
+ .replace("</local-command-stdout>", ""), "assistant", params.sessionId, this.toolUseCache, this.client, this.logger)) {
516
+ await this.client.sessionUpdate(notification);
517
+ }
518
+ }
519
+ this.logger.log(message.message.content);
520
+ break;
521
+ }
522
+ if (typeof message.message.content === "string" &&
523
+ message.message.content.includes("<local-command-stderr>")) {
524
+ this.logger.error(message.message.content);
525
+ break;
526
+ }
527
+ // Skip these user messages for now, since they seem to just be messages we don't want in the feed
528
+ if (message.type === "user" &&
529
+ (typeof message.message.content === "string" ||
530
+ (Array.isArray(message.message.content) &&
531
+ message.message.content.length === 1 &&
532
+ message.message.content[0].type === "text"))) {
533
+ break;
534
+ }
535
+ if (message.type === "assistant" &&
536
+ message.message.model === "<synthetic>" &&
537
+ Array.isArray(message.message.content) &&
538
+ message.message.content.length === 1 &&
539
+ message.message.content[0].type === "text" &&
540
+ message.message.content[0].text.includes("Please run /login")) {
541
+ throw RequestError.authRequired();
542
+ }
543
+ const content = message.type === "assistant"
544
+ ? // Handled by stream events above
545
+ message.message.content.filter((item) => !["text", "thinking"].includes(item.type))
546
+ : message.message.content;
547
+ for (const notification of toAcpNotifications(content, message.message.role, params.sessionId, this.toolUseCache, this.client, this.logger)) {
548
+ await this.client.sessionUpdate(notification);
549
+ }
550
+ break;
551
+ }
552
+ case "tool_progress":
553
+ case "tool_use_summary":
554
+ break;
555
+ case "auth_status":
556
+ break;
557
+ default:
558
+ unreachable(message);
559
+ break;
560
+ }
561
+ }
562
+ throw new Error("Session did not end in result");
563
+ }`
564
+
565
+ // Anchor 2: the exact session-struct assignment block.
566
+ const structAnchor = ` this.sessions[sessionId] = {
567
+ query: q,
568
+ input: input,
569
+ cancelled: false,
570
+ permissionMode,
571
+ settingsManager,
572
+ };`
573
+
574
+ if (!src.includes(promptAnchor)) {
575
+ console.warn(` warning: adapter prompt() anchor not found; skipping proactive-drain patch (proactive turns won't stream live)`)
576
+ return
577
+ }
578
+ if (!src.includes(structAnchor)) {
579
+ console.warn(` warning: adapter session-struct anchor not found; skipping proactive-drain patch (proactive turns won't stream live)`)
580
+ return
581
+ }
582
+
583
+ // Replacement 1: add a turn-waiter FIFO to the session and start the drainer.
584
+ const structReplacement = ` this.sessions[sessionId] = {
585
+ query: q,
586
+ input: input,
587
+ cancelled: false,
588
+ permissionMode,
589
+ settingsManager,
590
+ _turnWaiters: [], /* vantaloom: pending prompt() resolvers, FIFO */
591
+ };
592
+ this._vantaloomDrain(sessionId); /* vantaloom: continuous drain so proactive turns stream live */`
593
+
594
+ // Replacement 2: split prompt() into prompt + _vantaloomDrain + _vantaloomHandle.
595
+ // _vantaloomHandle is a faithful copy of the original switch body with
596
+ // params.sessionId → sessionId, returning null for non-terminal messages and
597
+ // returning/throwing exactly as the original did for terminal ones.
598
+ const promptReplacement = ` async prompt(params) {
599
+ if (!this.sessions[params.sessionId]) {
600
+ throw new Error("Session not found");
601
+ }
602
+ const session = this.sessions[params.sessionId];
603
+ session.cancelled = false;
604
+ const turn = new Promise((resolve, reject) => {
605
+ session._turnWaiters.push({ resolve, reject });
606
+ });
607
+ session.input.push(promptToClaude(params));
608
+ return await turn;
609
+ }
610
+ async _vantaloomDrain(sessionId) {
611
+ const session = this.sessions[sessionId];
612
+ if (!session || session._draining) {
613
+ return;
614
+ }
615
+ session._draining = true;
616
+ try {
617
+ while (true) {
618
+ let next;
619
+ try {
620
+ next = await session.query.next();
621
+ } catch (err) {
622
+ const w = session._turnWaiters.shift();
623
+ if (w) { w.reject(err); } else { this.logger.error(\`[vantaloom] drain error: \${err}\`); }
624
+ continue;
625
+ }
626
+ if (!this.sessions[sessionId]) {
627
+ break;
628
+ }
629
+ const { value: message, done } = next;
630
+ if (done || !message) {
631
+ const w = session._turnWaiters.shift();
632
+ if (w) { w.resolve({ stopReason: session.cancelled ? "cancelled" : "end_turn" }); }
633
+ break;
634
+ }
635
+ let outcome = null;
636
+ try {
637
+ outcome = await this._vantaloomHandle(sessionId, message);
638
+ } catch (err) {
639
+ const w = session._turnWaiters.shift();
640
+ if (w) { w.reject(err); } else { this.logger.error(\`[vantaloom] handle error: \${err}\`); }
641
+ continue;
642
+ }
643
+ if (outcome) {
644
+ // A turn ended. Resolve the oldest waiting prompt(); if none is
645
+ // waiting this was an agent-initiated (proactive) turn — its
646
+ // messages were already forwarded live, so just keep draining.
647
+ const w = session._turnWaiters.shift();
648
+ if (w) { w.resolve(outcome); }
649
+ }
650
+ }
651
+ } finally {
652
+ session._draining = false;
653
+ }
654
+ }
655
+ async _vantaloomHandle(sessionId, message) {
656
+ switch (message.type) {
657
+ case "system":
658
+ switch (message.subtype) {
659
+ case "init":
660
+ break;
661
+ case "compact_boundary":
662
+ case "hook_started":
663
+ case "task_notification":
664
+ case "hook_progress":
665
+ case "hook_response":
666
+ case "status":
667
+ case "files_persisted":
668
+ // Todo: process via status api: https://docs.claude.com/en/docs/claude-code/hooks#hook-output
669
+ break;
670
+ default:
671
+ unreachable(message, this.logger);
672
+ break;
673
+ }
674
+ break;
675
+ case "result": {
676
+ if (this.sessions[sessionId].cancelled) {
677
+ return { stopReason: "cancelled" };
678
+ }
679
+ switch (message.subtype) {
680
+ case "success": {
681
+ if (message.result.includes("Please run /login")) {
682
+ throw RequestError.authRequired();
683
+ }
684
+ if (message.is_error) {
685
+ throw RequestError.internalError(undefined, message.result);
686
+ }
687
+ return { stopReason: "end_turn" };
688
+ }
689
+ case "error_during_execution":
690
+ if (message.is_error) {
691
+ throw RequestError.internalError(undefined, message.errors.join(", ") || message.subtype);
692
+ }
693
+ return { stopReason: "end_turn" };
694
+ case "error_max_budget_usd":
695
+ case "error_max_turns":
696
+ case "error_max_structured_output_retries":
697
+ if (message.is_error) {
698
+ throw RequestError.internalError(undefined, message.errors.join(", ") || message.subtype);
699
+ }
700
+ return { stopReason: "max_turn_requests" };
701
+ default:
702
+ unreachable(message, this.logger);
703
+ break;
704
+ }
705
+ break;
706
+ }
707
+ case "stream_event": {
708
+ for (const notification of streamEventToAcpNotifications(message, sessionId, this.toolUseCache, this.client, this.logger)) {
709
+ await this.client.sessionUpdate(notification);
710
+ }
711
+ break;
712
+ }
713
+ case "user":
714
+ case "assistant": {
715
+ if (this.sessions[sessionId].cancelled) {
716
+ break;
717
+ }
718
+ // Slash commands like /compact can generate invalid output... doesn't match
719
+ // their own docs: https://docs.anthropic.com/en/docs/claude-code/sdk/sdk-slash-commands#%2Fcompact-compact-conversation-history
720
+ if (typeof message.message.content === "string" &&
721
+ message.message.content.includes("<local-command-stdout>")) {
722
+ // Handle /context by sending its reply as regular agent message.
723
+ if (true /* vantaloom: forward all local-command stdout */) {
724
+ for (const notification of toAcpNotifications(message.message.content
725
+ .replace("<local-command-stdout>", "")
726
+ .replace("</local-command-stdout>", ""), "assistant", sessionId, this.toolUseCache, this.client, this.logger)) {
727
+ await this.client.sessionUpdate(notification);
728
+ }
729
+ }
730
+ this.logger.log(message.message.content);
731
+ break;
732
+ }
733
+ if (typeof message.message.content === "string" &&
734
+ message.message.content.includes("<local-command-stderr>")) {
735
+ this.logger.error(message.message.content);
736
+ break;
737
+ }
738
+ // Skip these user messages for now, since they seem to just be messages we don't want in the feed
739
+ if (message.type === "user" &&
740
+ (typeof message.message.content === "string" ||
741
+ (Array.isArray(message.message.content) &&
742
+ message.message.content.length === 1 &&
743
+ message.message.content[0].type === "text"))) {
744
+ break;
745
+ }
746
+ if (message.type === "assistant" &&
747
+ message.message.model === "<synthetic>" &&
748
+ Array.isArray(message.message.content) &&
749
+ message.message.content.length === 1 &&
750
+ message.message.content[0].type === "text" &&
751
+ message.message.content[0].text.includes("Please run /login")) {
752
+ throw RequestError.authRequired();
753
+ }
754
+ const content = message.type === "assistant"
755
+ ? // Handled by stream events above
756
+ message.message.content.filter((item) => !["text", "thinking"].includes(item.type))
757
+ : message.message.content;
758
+ for (const notification of toAcpNotifications(content, message.message.role, sessionId, this.toolUseCache, this.client, this.logger)) {
759
+ await this.client.sessionUpdate(notification);
760
+ }
761
+ break;
762
+ }
763
+ case "tool_progress":
764
+ case "tool_use_summary":
765
+ break;
766
+ case "auth_status":
767
+ break;
768
+ default:
769
+ unreachable(message);
770
+ break;
771
+ }
772
+ return null;
773
+ }`
774
+
775
+ let patched = src.split(structAnchor).join(structReplacement)
776
+ patched = patched.split(promptAnchor).join(promptReplacement)
777
+ writeFileSync(agentFile, patched)
778
+ console.log(` patched adapter: continuous drain so proactive (agent-initiated) turns stream live`)
779
+ }
780
+
393
781
  // copyEasyTier bundles the vendored EasyTier binaries (easytier-core/easytier-cli,
394
782
  // plus wintun.dll on Windows) for the target platform into the package bin/ dir.
395
783
  async function copyEasyTier(sourceRoot, buildBin, platform) {
package/manifest.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "Vantaloom Local Runtime",
3
- "version": "39b07e9",
3
+ "version": "aceded1",
4
4
  "platform": "win32-x64",
5
- "updatedAt": "2026-06-08T04:12:29.076Z",
5
+ "updatedAt": "2026-06-08T07:00:57.720Z",
6
6
  "components": [
7
7
  "api",
8
8
  "agent",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vantaloom/runtime-win32-x64",
3
- "version": "0.6.34",
3
+ "version": "0.6.36",
4
4
  "private": false,
5
5
  "description": "Vantaloom local runtime for win32-x64.",
6
6
  "type": "module",
package/web/404.html CHANGED
@@ -1 +1 @@
1
- <!DOCTYPE html><!--lRtyRzw_6H2qqb6iFVSuA--><html lang="zh-CN" class="font-sans antialiased" data-vtl-theme="default" data-vtl-density="default" data-vtl-motion="default"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/7f485ff87b1819ac.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/ccc016f22e340d7a.js"/><script src="/_next/static/chunks/465977caba526416.js" async=""></script><script src="/_next/static/chunks/757e2e1b77b5bacc.js" async=""></script><script src="/_next/static/chunks/turbopack-74ec218a8e8a6a34.js" async=""></script><script src="/_next/static/chunks/2f05240e9e23a8f9.js" async=""></script><script src="/_next/static/chunks/83c973dd6794ff6b.js" async=""></script><script src="/_next/static/chunks/7dfeab42587bcc0e.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>Vantaloom</title><meta name="description" content="Vantaloom local agent operations console."/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><script>((a,b,c,d,e,f,g,h)=>{let i=document.documentElement,j=["light","dark"];function k(b){var c;(Array.isArray(a)?a:[a]).forEach(a=>{let c="class"===a,d=c&&f?e.map(a=>f[a]||a):e;c?(i.classList.remove(...d),i.classList.add(f&&f[b]?f[b]:b)):i.setAttribute(a,b)}),c=b,h&&j.includes(c)&&(i.style.colorScheme=c)}if(d)k(d);else try{let a=localStorage.getItem(b)||c,d=g&&"system"===a?window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light":a;k(d)}catch(a){}})("class","theme","system",null,["light","dark"],null,true,true)</script><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/ccc016f22e340d7a.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[22332,[\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"/_next/static/chunks/83c973dd6794ff6b.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"ThemeProvider\"]\n3:I[64990,[\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"/_next/static/chunks/83c973dd6794ff6b.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"TourProvider\"]\n4:I[45121,[\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"/_next/static/chunks/83c973dd6794ff6b.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"default\"]\n5:I[60512,[\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"/_next/static/chunks/83c973dd6794ff6b.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"default\"]\n6:I[35417,[\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"/_next/static/chunks/83c973dd6794ff6b.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"OutletBoundary\"]\n7:\"$Sreact.suspense\"\n9:I[35417,[\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"/_next/static/chunks/83c973dd6794ff6b.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"ViewportBoundary\"]\nb:I[35417,[\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"/_next/static/chunks/83c973dd6794ff6b.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"MetadataBoundary\"]\nd:I[50025,[\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"/_next/static/chunks/83c973dd6794ff6b.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"default\"]\n:HL[\"/_next/static/chunks/7f485ff87b1819ac.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"lRtyRzw_6H2qqb6iFVSuA\",\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/7f485ff87b1819ac.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/83c973dd6794ff6b.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/7dfeab42587bcc0e.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"zh-CN\",\"suppressHydrationWarning\":true,\"className\":\"font-sans antialiased\",\"data-vtl-theme\":\"default\",\"data-vtl-density\":\"default\",\"data-vtl-motion\":\"default\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L6\",null,{\"children\":[\"$\",\"$7\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@8\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L9\",null,{\"children\":\"$La\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Lb\",null,{\"children\":[\"$\",\"$7\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lc\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$d\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"8:null\nc:[[\"$\",\"title\",\"0\",{\"children\":\"Vantaloom\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Vantaloom local agent operations console.\"}]]\n"])</script></body></html>
1
+ <!DOCTYPE html><!--sgFv_dfU34iAwHbYRoo_d--><html lang="zh-CN" class="font-sans antialiased" data-vtl-theme="default" data-vtl-density="default" data-vtl-motion="default"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/chunks/7f485ff87b1819ac.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/ccc016f22e340d7a.js"/><script src="/_next/static/chunks/465977caba526416.js" async=""></script><script src="/_next/static/chunks/757e2e1b77b5bacc.js" async=""></script><script src="/_next/static/chunks/turbopack-74ec218a8e8a6a34.js" async=""></script><script src="/_next/static/chunks/2f05240e9e23a8f9.js" async=""></script><script src="/_next/static/chunks/83c973dd6794ff6b.js" async=""></script><script src="/_next/static/chunks/7dfeab42587bcc0e.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>Vantaloom</title><meta name="description" content="Vantaloom local agent operations console."/><script src="/_next/static/chunks/a6dad97d9634a72d.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><script>((a,b,c,d,e,f,g,h)=>{let i=document.documentElement,j=["light","dark"];function k(b){var c;(Array.isArray(a)?a:[a]).forEach(a=>{let c="class"===a,d=c&&f?e.map(a=>f[a]||a):e;c?(i.classList.remove(...d),i.classList.add(f&&f[b]?f[b]:b)):i.setAttribute(a,b)}),c=b,h&&j.includes(c)&&(i.style.colorScheme=c)}if(d)k(d);else try{let a=localStorage.getItem(b)||c,d=g&&"system"===a?window.matchMedia("(prefers-color-scheme: dark)").matches?"dark":"light":a;k(d)}catch(a){}})("class","theme","system",null,["light","dark"],null,true,true)</script><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/ccc016f22e340d7a.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[22332,[\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"/_next/static/chunks/83c973dd6794ff6b.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"ThemeProvider\"]\n3:I[64990,[\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"/_next/static/chunks/83c973dd6794ff6b.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"TourProvider\"]\n4:I[45121,[\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"/_next/static/chunks/83c973dd6794ff6b.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"default\"]\n5:I[60512,[\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"/_next/static/chunks/83c973dd6794ff6b.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"default\"]\n6:I[35417,[\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"/_next/static/chunks/83c973dd6794ff6b.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"OutletBoundary\"]\n7:\"$Sreact.suspense\"\n9:I[35417,[\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"/_next/static/chunks/83c973dd6794ff6b.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"ViewportBoundary\"]\nb:I[35417,[\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"/_next/static/chunks/83c973dd6794ff6b.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"MetadataBoundary\"]\nd:I[50025,[\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"/_next/static/chunks/83c973dd6794ff6b.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"default\"]\n:HL[\"/_next/static/chunks/7f485ff87b1819ac.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"sgFv-dfU34iAwHbYRoo-d\",\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/7f485ff87b1819ac.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/2f05240e9e23a8f9.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/83c973dd6794ff6b.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/7dfeab42587bcc0e.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"zh-CN\",\"suppressHydrationWarning\":true,\"className\":\"font-sans antialiased\",\"data-vtl-theme\":\"default\",\"data-vtl-density\":\"default\",\"data-vtl-motion\":\"default\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":404}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L6\",null,{\"children\":[\"$\",\"$7\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@8\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L9\",null,{\"children\":\"$La\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Lb\",null,{\"children\":[\"$\",\"$7\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lc\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$d\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"8:null\nc:[[\"$\",\"title\",\"0\",{\"children\":\"Vantaloom\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Vantaloom local agent operations console.\"}]]\n"])</script></body></html>
@@ -1,9 +1,9 @@
1
1
  1:"$Sreact.fragment"
2
2
  2:I[66863,["/_next/static/chunks/7dfeab42587bcc0e.js"],"ClientPageRoot"]
3
- 3:I[66204,["/_next/static/chunks/2f05240e9e23a8f9.js","/_next/static/chunks/83c973dd6794ff6b.js","/_next/static/chunks/17e0384154325960.js","/_next/static/chunks/c990601c49cb69a5.js","/_next/static/chunks/c60c4290ab7130dd.js","/_next/static/chunks/742d3900ca49db0a.js"],"default"]
3
+ 3:I[66204,["/_next/static/chunks/2f05240e9e23a8f9.js","/_next/static/chunks/83c973dd6794ff6b.js","/_next/static/chunks/17e0384154325960.js","/_next/static/chunks/c990601c49cb69a5.js","/_next/static/chunks/06f80996b119eca9.js","/_next/static/chunks/742d3900ca49db0a.js"],"default"]
4
4
  6:I[35417,["/_next/static/chunks/7dfeab42587bcc0e.js"],"OutletBoundary"]
5
5
  7:"$Sreact.suspense"
6
- 0:{"buildId":"lRtyRzw_6H2qqb6iFVSuA","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/17e0384154325960.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/c990601c49cb69a5.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/c60c4290ab7130dd.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/742d3900ca49db0a.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
6
+ 0:{"buildId":"sgFv-dfU34iAwHbYRoo-d","rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/17e0384154325960.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/c990601c49cb69a5.js","async":true}],["$","script","script-2",{"src":"/_next/static/chunks/06f80996b119eca9.js","async":true}],["$","script","script-3",{"src":"/_next/static/chunks/742d3900ca49db0a.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"loading":null,"isPartial":false}
7
7
  4:{}
8
8
  5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
9
9
  8:null
@@ -4,14 +4,14 @@
4
4
  4:I[45121,["/_next/static/chunks/7dfeab42587bcc0e.js"],"default"]
5
5
  5:I[60512,["/_next/static/chunks/7dfeab42587bcc0e.js"],"default"]
6
6
  6:I[66863,["/_next/static/chunks/7dfeab42587bcc0e.js"],"ClientPageRoot"]
7
- 7:I[66204,["/_next/static/chunks/2f05240e9e23a8f9.js","/_next/static/chunks/83c973dd6794ff6b.js","/_next/static/chunks/17e0384154325960.js","/_next/static/chunks/c990601c49cb69a5.js","/_next/static/chunks/c60c4290ab7130dd.js","/_next/static/chunks/742d3900ca49db0a.js"],"default"]
7
+ 7:I[66204,["/_next/static/chunks/2f05240e9e23a8f9.js","/_next/static/chunks/83c973dd6794ff6b.js","/_next/static/chunks/17e0384154325960.js","/_next/static/chunks/c990601c49cb69a5.js","/_next/static/chunks/06f80996b119eca9.js","/_next/static/chunks/742d3900ca49db0a.js"],"default"]
8
8
  a:I[35417,["/_next/static/chunks/7dfeab42587bcc0e.js"],"OutletBoundary"]
9
9
  b:"$Sreact.suspense"
10
10
  d:I[35417,["/_next/static/chunks/7dfeab42587bcc0e.js"],"ViewportBoundary"]
11
11
  f:I[35417,["/_next/static/chunks/7dfeab42587bcc0e.js"],"MetadataBoundary"]
12
12
  11:I[50025,["/_next/static/chunks/7dfeab42587bcc0e.js"],"default"]
13
13
  :HL["/_next/static/chunks/7f485ff87b1819ac.css","style"]
14
- 0:{"P":null,"b":"lRtyRzw_6H2qqb6iFVSuA","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/7f485ff87b1819ac.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2f05240e9e23a8f9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/83c973dd6794ff6b.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","suppressHydrationWarning":true,"className":"font-sans antialiased","data-vtl-theme":"default","data-vtl-density":"default","data-vtl-motion":"default","children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/17e0384154325960.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/c990601c49cb69a5.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/c60c4290ab7130dd.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/742d3900ca49db0a.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
14
+ 0:{"P":null,"b":"sgFv-dfU34iAwHbYRoo-d","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/7f485ff87b1819ac.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/2f05240e9e23a8f9.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/83c973dd6794ff6b.js","async":true,"nonce":"$undefined"}]],["$","html",null,{"lang":"zh-CN","suppressHydrationWarning":true,"className":"font-sans antialiased","data-vtl-theme":"default","data-vtl-density":"default","data-vtl-motion":"default","children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]}]}]}]}]]}],{"children":[["$","$1","c",{"children":[["$","$L6",null,{"Component":"$7","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@8","$@9"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/17e0384154325960.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/c990601c49cb69a5.js","async":true,"nonce":"$undefined"}],["$","script","script-2",{"src":"/_next/static/chunks/06f80996b119eca9.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/742d3900ca49db0a.js","async":true,"nonce":"$undefined"}]],["$","$La",null,{"children":["$","$b",null,{"name":"Next.MetadataOutlet","children":"$@c"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Ld",null,{"children":"$Le"}],["$","div",null,{"hidden":true,"children":["$","$Lf",null,{"children":["$","$b",null,{"name":"Next.Metadata","children":"$L10"}]}]}],null]}],false]],"m":"$undefined","G":["$11",[]],"S":true}
15
15
  8:{}
16
16
  9:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
17
17
  e:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
@@ -2,4 +2,4 @@
2
2
  2:I[35417,["/_next/static/chunks/7dfeab42587bcc0e.js"],"ViewportBoundary"]
3
3
  3:I[35417,["/_next/static/chunks/7dfeab42587bcc0e.js"],"MetadataBoundary"]
4
4
  4:"$Sreact.suspense"
5
- 0:{"buildId":"lRtyRzw_6H2qqb6iFVSuA","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Vantaloom"}],["$","meta","1",{"name":"description","content":"Vantaloom local agent operations console."}]]}]}]}],null]}],"loading":null,"isPartial":false}
5
+ 0:{"buildId":"sgFv-dfU34iAwHbYRoo-d","rsc":["$","$1","h",{"children":[null,["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"Vantaloom"}],["$","meta","1",{"name":"description","content":"Vantaloom local agent operations console."}]]}]}]}],null]}],"loading":null,"isPartial":false}
@@ -4,4 +4,4 @@
4
4
  4:I[45121,["/_next/static/chunks/7dfeab42587bcc0e.js"],"default"]
5
5
  5:I[60512,["/_next/static/chunks/7dfeab42587bcc0e.js"],"default"]
6
6
  :HL["/_next/static/chunks/7f485ff87b1819ac.css","style"]
7
- 0:{"buildId":"lRtyRzw_6H2qqb6iFVSuA","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/7f485ff87b1819ac.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2f05240e9e23a8f9.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/83c973dd6794ff6b.js","async":true}]],["$","html",null,{"lang":"zh-CN","suppressHydrationWarning":true,"className":"font-sans antialiased","data-vtl-theme":"default","data-vtl-density":"default","data-vtl-motion":"default","children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]]}],"loading":null,"isPartial":false}
7
+ 0:{"buildId":"sgFv-dfU34iAwHbYRoo-d","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/7f485ff87b1819ac.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/2f05240e9e23a8f9.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/83c973dd6794ff6b.js","async":true}]],["$","html",null,{"lang":"zh-CN","suppressHydrationWarning":true,"className":"font-sans antialiased","data-vtl-theme":"default","data-vtl-density":"default","data-vtl-motion":"default","children":["$","body",null,{"children":["$","$L2",null,{"children":["$","$L3",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","template":["$","$L5",null,{}],"notFound":[[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":404}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],[]]}]}]}]}]}]]}],"loading":null,"isPartial":false}
@@ -1,2 +1,2 @@
1
1
  :HL["/_next/static/chunks/7f485ff87b1819ac.css","style"]
2
- 0:{"buildId":"lRtyRzw_6H2qqb6iFVSuA","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
2
+ 0:{"buildId":"sgFv-dfU34iAwHbYRoo-d","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":true},"staleTime":300}