@vantaloom/runtime-linux-x64 0.11.3 → 0.12.1
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 +1 -1
- package/bin/vantaloom-agent +0 -0
- package/bin/vantaloom-api +0 -0
- package/bin/vantaloom-browser +0 -0
- package/bin/vantaloomctl +0 -0
- package/cli/adapters/claude-sdk-bridge/index.mjs +134 -1
- package/cli/adapters/claude-sdk-bridge/package.json +2 -1
- package/cli/package.json +1 -1
- package/manifest.json +2 -2
- package/package.json +1 -1
- package/web/404.html +1 -1
- package/web/__next.__PAGE__.txt +2 -2
- package/web/__next._full.txt +3 -3
- package/web/__next._head.txt +1 -1
- package/web/__next._index.txt +2 -2
- package/web/__next._tree.txt +2 -2
- package/web/_next/static/chunks/2750a1d68e052369.js +52 -0
- package/web/_next/static/chunks/9e63b25ae0ea33d3.css +2 -0
- package/web/_not-found/__next._full.txt +2 -2
- package/web/_not-found/__next._head.txt +1 -1
- package/web/_not-found/__next._index.txt +2 -2
- package/web/_not-found/__next._not-found/__PAGE__.txt +1 -1
- package/web/_not-found/__next._not-found.txt +1 -1
- package/web/_not-found/__next._tree.txt +2 -2
- package/web/_not-found.html +1 -1
- package/web/_not-found.txt +2 -2
- package/web/index.html +1 -1
- package/web/index.txt +3 -3
- package/web/_next/static/chunks/c45d4f98e2235102.css +0 -2
- package/web/_next/static/chunks/f9319a7946f457b0.js +0 -52
- /package/web/_next/static/{KOyCQ7GlTMIm6vmnEFO-e → FmwaXjv43Lq2zD0tuqgtB}/_buildManifest.js +0 -0
- /package/web/_next/static/{KOyCQ7GlTMIm6vmnEFO-e → FmwaXjv43Lq2zD0tuqgtB}/_clientMiddlewareManifest.json +0 -0
- /package/web/_next/static/{KOyCQ7GlTMIm6vmnEFO-e → FmwaXjv43Lq2zD0tuqgtB}/_ssgManifest.js +0 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
7d60228
|
package/bin/vantaloom-agent
CHANGED
|
Binary file
|
package/bin/vantaloom-api
CHANGED
|
Binary file
|
package/bin/vantaloom-browser
CHANGED
|
Binary file
|
package/bin/vantaloomctl
CHANGED
|
Binary file
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
// {"t":"init", cwd, claudeExecutable?, appendSystemPrompt?, mode?, model?, resume?, settingSources?}
|
|
15
15
|
// {"t":"prompt", runId, text, images?:[{mime,data}]}
|
|
16
16
|
// {"t":"permission_response", id, behavior:"allow"|"deny", updatedInput?, message?, interrupt?}
|
|
17
|
+
// {"t":"tool_result", id, content?, error?} // answers a {"t":"tool_call"}
|
|
17
18
|
// {"t":"interrupt"}
|
|
18
19
|
// {"t":"set_model", model}
|
|
19
20
|
// {"t":"set_mode", mode}
|
|
@@ -23,6 +24,7 @@
|
|
|
23
24
|
// {"t":"ready", sdkVersion}
|
|
24
25
|
// {"t":"sdk", msg} // verbatim SDKMessage
|
|
25
26
|
// {"t":"permission_request", id, toolName, input, toolUseId}
|
|
27
|
+
// {"t":"tool_call", id, name, args} // in-process MCP tool → Go executes
|
|
26
28
|
// {"t":"session", sessionId} // captured from system/init
|
|
27
29
|
// {"t":"result", runId, subtype, usage?, sessionId?}
|
|
28
30
|
// {"t":"error", runId?, message}
|
|
@@ -41,9 +43,20 @@ import { fileURLToPath } from "node:url";
|
|
|
41
43
|
const bridgeDir = path.dirname(fileURLToPath(import.meta.url));
|
|
42
44
|
|
|
43
45
|
let query;
|
|
46
|
+
let createSdkMcpServer;
|
|
47
|
+
let tool;
|
|
48
|
+
let z;
|
|
44
49
|
let sdkVersion = "unknown";
|
|
45
50
|
try {
|
|
46
|
-
({ query } = await import("@anthropic-ai/claude-agent-sdk"));
|
|
51
|
+
({ query, createSdkMcpServer, tool } = await import("@anthropic-ai/claude-agent-sdk"));
|
|
52
|
+
// zod is bundled alongside the bridge (sibling dep of the SDK). tool()'s input
|
|
53
|
+
// schema is a Zod raw shape; failure to load it disables the MCP tool but must
|
|
54
|
+
// NOT prevent the bridge from starting (file-based hooks still work).
|
|
55
|
+
try {
|
|
56
|
+
({ z } = await import("zod"));
|
|
57
|
+
} catch (zerr) {
|
|
58
|
+
z = undefined;
|
|
59
|
+
}
|
|
47
60
|
try {
|
|
48
61
|
// The SDK's package.json isn't exposed via "exports", so read it directly from
|
|
49
62
|
// the node_modules tree we bundle next to this bridge (best-effort).
|
|
@@ -189,9 +202,105 @@ const state = {
|
|
|
189
202
|
started: false,
|
|
190
203
|
/** @type {Map<string, (result: any) => void>} pending canUseTool resolvers */
|
|
191
204
|
pendingPermissions: new Map(),
|
|
205
|
+
/** @type {Map<string, (result: {content?: string, error?: string}) => void>} pending tool_call resolvers */
|
|
206
|
+
pendingToolCalls: new Map(),
|
|
192
207
|
};
|
|
193
208
|
|
|
194
209
|
let permissionSeq = 0;
|
|
210
|
+
let toolCallSeq = 0;
|
|
211
|
+
|
|
212
|
+
// callVantaloomTool round-trips a vantaloom MCP tool invocation to the Go side:
|
|
213
|
+
// emit {"t":"tool_call"} and await the matching {"t":"tool_result"} (correlated by
|
|
214
|
+
// id via state.pendingToolCalls). Mirrors canUseTool's pending-promise pattern.
|
|
215
|
+
// Returns the MCP CallToolResult the SDK expects.
|
|
216
|
+
function callVantaloomTool(name, args) {
|
|
217
|
+
const id = "tool-" + ++toolCallSeq;
|
|
218
|
+
return new Promise((resolve) => {
|
|
219
|
+
let settled = false;
|
|
220
|
+
const finish = (res) => {
|
|
221
|
+
if (settled) return;
|
|
222
|
+
settled = true;
|
|
223
|
+
state.pendingToolCalls.delete(id);
|
|
224
|
+
const out = res || {};
|
|
225
|
+
if (out.error) {
|
|
226
|
+
resolve({
|
|
227
|
+
content: [{ type: "text", text: String(out.error) }],
|
|
228
|
+
isError: true,
|
|
229
|
+
});
|
|
230
|
+
} else {
|
|
231
|
+
resolve({
|
|
232
|
+
content: [{ type: "text", text: String(out.content ?? "") }],
|
|
233
|
+
});
|
|
234
|
+
}
|
|
235
|
+
};
|
|
236
|
+
state.pendingToolCalls.set(id, finish);
|
|
237
|
+
send({ t: "tool_call", id, name, args: args ?? {} });
|
|
238
|
+
});
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
// buildVantaloomMcpServer builds the in-process MCP server exposing vantaloom_hook
|
|
242
|
+
// (and, later, more vantaloom tools). Each tool handler round-trips to Go via
|
|
243
|
+
// callVantaloomTool. Returns null when the SDK/zod helpers are unavailable, in which
|
|
244
|
+
// case the bridge runs without the MCP server (file-based hooks remain the route).
|
|
245
|
+
function buildVantaloomMcpServer() {
|
|
246
|
+
if (!createSdkMcpServer || !tool || !z) return null;
|
|
247
|
+
try {
|
|
248
|
+
const triggerSchema = z
|
|
249
|
+
.object({
|
|
250
|
+
source: z
|
|
251
|
+
.enum(["timer", "process_exit", "webhook", "file", "shell_poll", "lifecycle"])
|
|
252
|
+
.describe("触发源。timer/process_exit/file/shell_poll 由引擎周期触发;webhook 经外部 POST 触发;lifecycle 由 SDK 桥处理。"),
|
|
253
|
+
delaySec: z.number().int().optional().describe("timer:自登记起 N 秒后触发一次。"),
|
|
254
|
+
intervalSec: z.number().int().optional().describe("timer:每 N 秒重复触发。"),
|
|
255
|
+
cron: z.string().optional().describe("timer:cron 表达式(暂未解析,预留)。"),
|
|
256
|
+
terminalSessionId: z.string().optional().describe("process_exit:要监听退出的终端会话 id。"),
|
|
257
|
+
backgroundCmdId: z.string().optional().describe("process_exit:要监听退出的后台命令 id。"),
|
|
258
|
+
path: z.string().optional().describe("file:要监听的文件/目录路径。"),
|
|
259
|
+
event: z.enum(["exists", "change"]).optional().describe("file:监听 exists 还是 change。"),
|
|
260
|
+
command: z.string().optional().describe("shell_poll:要周期执行并判定的命令。"),
|
|
261
|
+
})
|
|
262
|
+
.describe("register:触发器。source 必填,其余按 source 取用。");
|
|
263
|
+
const actionSchema = z
|
|
264
|
+
.object({
|
|
265
|
+
type: z
|
|
266
|
+
.enum(["resume_conversation", "run_command", "start_conversation"])
|
|
267
|
+
.describe("resume_conversation=唤醒一个已存在会话继续;run_command=执行一条命令(无会话副作用);start_conversation=新建并启动一个会话。"),
|
|
268
|
+
conversationId: z.string().optional().describe("resume_conversation:要唤醒的会话 id。留空则默认本会话。"),
|
|
269
|
+
prompt: z.string().optional().describe("resume_conversation/start_conversation:注入的用户消息。"),
|
|
270
|
+
command: z.string().optional().describe("run_command:要执行的命令。"),
|
|
271
|
+
engine: z.string().optional().describe("start_conversation(可选):引擎,如 reclaude。"),
|
|
272
|
+
folder: z.string().optional().describe("start_conversation/run_command(可选):工作目录。"),
|
|
273
|
+
model: z.string().optional().describe("start_conversation(可选):模型。"),
|
|
274
|
+
})
|
|
275
|
+
.describe("register:触发后执行的动作。");
|
|
276
|
+
|
|
277
|
+
const hookTool = tool(
|
|
278
|
+
"vantaloom_hook",
|
|
279
|
+
"钩子工具:为本会话登记「触发器 → 动作」规则,由通用 HOOK 引擎在后台周期性检查并触发。最常见用法:当某个外部事件(定时、外部进程完成、收到 webhook 等)就绪后,自动「唤醒」本会话继续工作——action.type=resume_conversation 且 conversationId 留空(默认本会话)。register=登记一个钩子;list=查看本会话已登记的钩子;remove=按 hookId 删除;fire=立即手动触发某个钩子(用于自测)。",
|
|
280
|
+
{
|
|
281
|
+
mode: z
|
|
282
|
+
.enum(["register", "list", "remove", "fire"])
|
|
283
|
+
.describe("子模式。register=登记一个新钩子;list=查看本会话钩子;remove=按 hookId 删除;fire=立即手动触发某钩子(自测)。"),
|
|
284
|
+
hookId: z.string().optional().describe("remove/fire:要操作的钩子 id。"),
|
|
285
|
+
name: z.string().optional().describe("register(可选):钩子的显示名。"),
|
|
286
|
+
once: z.boolean().optional().describe("register(可选):true 表示触发一次后自动失效。默认 false。"),
|
|
287
|
+
maxFires: z.number().int().optional().describe("register(可选):最多触发次数,0=不限(除非 once)。"),
|
|
288
|
+
trigger: triggerSchema.optional(),
|
|
289
|
+
action: actionSchema.optional(),
|
|
290
|
+
},
|
|
291
|
+
async (args) => callVantaloomTool("vantaloom_hook", args ?? {}),
|
|
292
|
+
);
|
|
293
|
+
|
|
294
|
+
return createSdkMcpServer({
|
|
295
|
+
name: "vantaloom",
|
|
296
|
+
version: "1.0.0",
|
|
297
|
+
tools: [hookTool],
|
|
298
|
+
});
|
|
299
|
+
} catch (err) {
|
|
300
|
+
logLine("warn", "构建 vantaloom MCP 服务失败:" + (err?.message ?? String(err)));
|
|
301
|
+
return null;
|
|
302
|
+
}
|
|
303
|
+
}
|
|
195
304
|
|
|
196
305
|
// canUseTool: emit a permission_request and await the matching response. The
|
|
197
306
|
// run ctx (user STOP) aborts via the provided AbortSignal.
|
|
@@ -252,6 +361,18 @@ function startQuery() {
|
|
|
252
361
|
stderr: (data) => logLine("warn", data),
|
|
253
362
|
spawnClaudeCodeProcess: makeSpawnClaude((d) => logLine("warn", d)),
|
|
254
363
|
};
|
|
364
|
+
|
|
365
|
+
// Expose the in-process vantaloom MCP server (vantaloom_hook + future tools) so
|
|
366
|
+
// reclaude / claude-code agents can call it natively. MCP tools are named
|
|
367
|
+
// `mcp__<server>__<tool>`; allowlist it so the hook (benign metadata mgmt) runs
|
|
368
|
+
// without a permission prompt. When the SDK/zod helpers are unavailable the server
|
|
369
|
+
// is null and the bridge runs without it (file-based hooks remain the route).
|
|
370
|
+
const vantaloomMcp = buildVantaloomMcpServer();
|
|
371
|
+
if (vantaloomMcp) {
|
|
372
|
+
options.mcpServers = { vantaloom: vantaloomMcp };
|
|
373
|
+
options.allowedTools = ["mcp__vantaloom__vantaloom_hook"];
|
|
374
|
+
}
|
|
375
|
+
|
|
255
376
|
if (state.claudeExecutable) options.pathToClaudeCodeExecutable = state.claudeExecutable;
|
|
256
377
|
if (state.model) options.model = state.model;
|
|
257
378
|
if (state.resume) options.resume = state.resume;
|
|
@@ -375,6 +496,13 @@ async function handleControl(raw) {
|
|
|
375
496
|
}
|
|
376
497
|
break;
|
|
377
498
|
}
|
|
499
|
+
case "tool_result": {
|
|
500
|
+
const resolve = state.pendingToolCalls.get(cmd.id);
|
|
501
|
+
if (resolve) {
|
|
502
|
+
resolve({ content: cmd.content, error: cmd.error });
|
|
503
|
+
}
|
|
504
|
+
break;
|
|
505
|
+
}
|
|
378
506
|
case "interrupt": {
|
|
379
507
|
if (state.query && typeof state.query.interrupt === "function") {
|
|
380
508
|
try {
|
|
@@ -423,6 +551,11 @@ function cleanupAndExit(code) {
|
|
|
423
551
|
resolve({ behavior: "deny", message: "桥已关闭", interrupt: true });
|
|
424
552
|
}
|
|
425
553
|
state.pendingPermissions.clear();
|
|
554
|
+
// Reject any pending tool calls so the MCP handler promises don't hang on close.
|
|
555
|
+
for (const resolve of state.pendingToolCalls.values()) {
|
|
556
|
+
resolve({ error: "桥已关闭" });
|
|
557
|
+
}
|
|
558
|
+
state.pendingToolCalls.clear();
|
|
426
559
|
if (state.input) state.input.close();
|
|
427
560
|
if (state.query && typeof state.query.return === "function") {
|
|
428
561
|
try {
|
package/cli/package.json
CHANGED
package/manifest.json
CHANGED
package/package.json
CHANGED
package/web/404.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--KOyCQ7GlTMIm6vmnEFO_e--><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/c45d4f98e2235102.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/4852e34afa6e1a19.js" async=""></script><script src="/_next/static/chunks/750370220a00a0ed.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,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";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/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"ThemeProvider\"]\n3:I[97452,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"FrontendErrorBoundary\"]\n4:I[97452,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"GlobalErrorHandlers\"]\n5:I[64990,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"TourProvider\"]\n6:I[45121,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"default\"]\n7:I[60512,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"default\"]\n8:I[35417,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"OutletBoundary\"]\n9:\"$Sreact.suspense\"\nb:I[35417,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"ViewportBoundary\"]\nd:I[35417,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"MetadataBoundary\"]\nf:I[50025,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"default\"]\n:HL[\"/_next/static/chunks/c45d4f98e2235102.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"KOyCQ7GlTMIm6vmnEFO-e\",\"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/c45d4f98e2235102.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/4852e34afa6e1a19.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/750370220a00a0ed.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,{}],[\"$\",\"$L5\",null,{\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",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,[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",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:1: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:1: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:1: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:1:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L8\",null,{\"children\":[\"$\",\"$9\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@a\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$Lb\",null,{\"children\":\"$Lc\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Ld\",null,{\"children\":[\"$\",\"$9\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Le\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$f\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"c:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"a:null\ne:[[\"$\",\"title\",\"0\",{\"children\":\"Vantaloom\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Vantaloom local agent operations console.\"}]]\n"])</script></body></html>
|
|
1
|
+
<!DOCTYPE html><!--FmwaXjv43Lq2zD0tuqgtB--><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/9e63b25ae0ea33d3.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/4852e34afa6e1a19.js" async=""></script><script src="/_next/static/chunks/750370220a00a0ed.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,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";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/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"ThemeProvider\"]\n3:I[97452,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"FrontendErrorBoundary\"]\n4:I[97452,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"GlobalErrorHandlers\"]\n5:I[64990,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"TourProvider\"]\n6:I[45121,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"default\"]\n7:I[60512,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"default\"]\n8:I[35417,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"OutletBoundary\"]\n9:\"$Sreact.suspense\"\nb:I[35417,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"ViewportBoundary\"]\nd:I[35417,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"MetadataBoundary\"]\nf:I[50025,[\"/_next/static/chunks/4852e34afa6e1a19.js\",\"/_next/static/chunks/750370220a00a0ed.js\",\"/_next/static/chunks/7dfeab42587bcc0e.js\"],\"default\"]\n:HL[\"/_next/static/chunks/9e63b25ae0ea33d3.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"FmwaXjv43Lq2zD0tuqgtB\",\"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/9e63b25ae0ea33d3.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/4852e34afa6e1a19.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/750370220a00a0ed.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,{}],[\"$\",\"$L5\",null,{\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",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,[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",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:1: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:1: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:1: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:1:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]],null,[\"$\",\"$L8\",null,{\"children\":[\"$\",\"$9\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@a\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$Lb\",null,{\"children\":\"$Lc\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$Ld\",null,{\"children\":[\"$\",\"$9\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Le\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$f\",\"$undefined\"],\"S\":true}\n"])</script><script>self.__next_f.push([1,"c:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"a:null\ne:[[\"$\",\"title\",\"0\",{\"children\":\"Vantaloom\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Vantaloom local agent operations console.\"}]]\n"])</script></body></html>
|
package/web/__next.__PAGE__.txt
CHANGED
|
@@ -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/4852e34afa6e1a19.js","/_next/static/chunks/750370220a00a0ed.js","/_next/static/chunks/17e0384154325960.js","/_next/static/chunks/c990601c49cb69a5.js","/_next/static/chunks/
|
|
3
|
+
3:I[66204,["/_next/static/chunks/4852e34afa6e1a19.js","/_next/static/chunks/750370220a00a0ed.js","/_next/static/chunks/17e0384154325960.js","/_next/static/chunks/c990601c49cb69a5.js","/_next/static/chunks/2750a1d68e052369.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":"
|
|
6
|
+
0:{"buildId":"FmwaXjv43Lq2zD0tuqgtB","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/2750a1d68e052369.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
|
package/web/__next._full.txt
CHANGED
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
6:I[45121,["/_next/static/chunks/7dfeab42587bcc0e.js"],"default"]
|
|
7
7
|
7:I[60512,["/_next/static/chunks/7dfeab42587bcc0e.js"],"default"]
|
|
8
8
|
8:I[66863,["/_next/static/chunks/7dfeab42587bcc0e.js"],"ClientPageRoot"]
|
|
9
|
-
9:I[66204,["/_next/static/chunks/4852e34afa6e1a19.js","/_next/static/chunks/750370220a00a0ed.js","/_next/static/chunks/17e0384154325960.js","/_next/static/chunks/c990601c49cb69a5.js","/_next/static/chunks/
|
|
9
|
+
9:I[66204,["/_next/static/chunks/4852e34afa6e1a19.js","/_next/static/chunks/750370220a00a0ed.js","/_next/static/chunks/17e0384154325960.js","/_next/static/chunks/c990601c49cb69a5.js","/_next/static/chunks/2750a1d68e052369.js","/_next/static/chunks/742d3900ca49db0a.js"],"default"]
|
|
10
10
|
c:I[35417,["/_next/static/chunks/7dfeab42587bcc0e.js"],"OutletBoundary"]
|
|
11
11
|
d:"$Sreact.suspense"
|
|
12
12
|
f:I[35417,["/_next/static/chunks/7dfeab42587bcc0e.js"],"ViewportBoundary"]
|
|
13
13
|
11:I[35417,["/_next/static/chunks/7dfeab42587bcc0e.js"],"MetadataBoundary"]
|
|
14
14
|
13:I[50025,["/_next/static/chunks/7dfeab42587bcc0e.js"],"default"]
|
|
15
|
-
:HL["/_next/static/chunks/
|
|
16
|
-
0:{"P":null,"b":"
|
|
15
|
+
:HL["/_next/static/chunks/9e63b25ae0ea33d3.css","style"]
|
|
16
|
+
0:{"P":null,"b":"FmwaXjv43Lq2zD0tuqgtB","c":["",""],"q":"","i":false,"f":[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],[["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/9e63b25ae0ea33d3.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}],["$","script","script-0",{"src":"/_next/static/chunks/4852e34afa6e1a19.js","async":true,"nonce":"$undefined"}],["$","script","script-1",{"src":"/_next/static/chunks/750370220a00a0ed.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,{}],["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L7",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":[["$","$L8",null,{"Component":"$9","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@a","$@b"]}}],[["$","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/2750a1d68e052369.js","async":true,"nonce":"$undefined"}],["$","script","script-3",{"src":"/_next/static/chunks/742d3900ca49db0a.js","async":true,"nonce":"$undefined"}]],["$","$Lc",null,{"children":["$","$d",null,{"name":"Next.MetadataOutlet","children":"$@e"}]}]]}],{},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$Lf",null,{"children":"$L10"}],["$","div",null,{"hidden":true,"children":["$","$L11",null,{"children":["$","$d",null,{"name":"Next.Metadata","children":"$L12"}]}]}],null]}],false]],"m":"$undefined","G":["$13",[]],"S":true}
|
|
17
17
|
a:{}
|
|
18
18
|
b:"$0:f:0:1:1:children:0:props:children:0:props:serverProvidedParams:params"
|
|
19
19
|
10:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
package/web/__next._head.txt
CHANGED
|
@@ -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":"
|
|
5
|
+
0:{"buildId":"FmwaXjv43Lq2zD0tuqgtB","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}
|
package/web/__next._index.txt
CHANGED
|
@@ -5,5 +5,5 @@
|
|
|
5
5
|
5:I[64990,["/_next/static/chunks/4852e34afa6e1a19.js","/_next/static/chunks/750370220a00a0ed.js"],"TourProvider"]
|
|
6
6
|
6:I[45121,["/_next/static/chunks/7dfeab42587bcc0e.js"],"default"]
|
|
7
7
|
7:I[60512,["/_next/static/chunks/7dfeab42587bcc0e.js"],"default"]
|
|
8
|
-
:HL["/_next/static/chunks/
|
|
9
|
-
0:{"buildId":"
|
|
8
|
+
:HL["/_next/static/chunks/9e63b25ae0ea33d3.css","style"]
|
|
9
|
+
0:{"buildId":"FmwaXjv43Lq2zD0tuqgtB","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/chunks/9e63b25ae0ea33d3.css","precedence":"next"}],["$","script","script-0",{"src":"/_next/static/chunks/4852e34afa6e1a19.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/750370220a00a0ed.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,{}],["$","$L5",null,{"children":["$","$L6",null,{"parallelRouterKey":"children","template":["$","$L7",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}
|
package/web/__next._tree.txt
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
:HL["/_next/static/chunks/
|
|
2
|
-
0:{"buildId":"
|
|
1
|
+
:HL["/_next/static/chunks/9e63b25ae0ea33d3.css","style"]
|
|
2
|
+
0:{"buildId":"FmwaXjv43Lq2zD0tuqgtB","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}
|