@sapienx/agentos 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -0
- package/bin/agentos.js +212 -13
- package/bundle/.next/BUILD_ID +1 -1
- package/bundle/.next/app-path-routes-manifest.json +8 -8
- package/bundle/.next/build-manifest.json +2 -2
- package/bundle/.next/server/app/_global-error.html +2 -2
- package/bundle/.next/server/app/_global-error.rsc +1 -1
- package/bundle/.next/server/app/_global-error.segments/_full.segment.rsc +1 -1
- package/bundle/.next/server/app/_global-error.segments/_global-error/__PAGE__.segment.rsc +1 -1
- package/bundle/.next/server/app/_global-error.segments/_global-error.segment.rsc +1 -1
- package/bundle/.next/server/app/_global-error.segments/_head.segment.rsc +1 -1
- package/bundle/.next/server/app/_global-error.segments/_index.segment.rsc +1 -1
- package/bundle/.next/server/app/_global-error.segments/_tree.segment.rsc +1 -1
- package/bundle/.next/server/app/_not-found.html +1 -1
- package/bundle/.next/server/app/_not-found.rsc +1 -1
- package/bundle/.next/server/app/_not-found.segments/_full.segment.rsc +1 -1
- package/bundle/.next/server/app/_not-found.segments/_head.segment.rsc +1 -1
- package/bundle/.next/server/app/_not-found.segments/_index.segment.rsc +1 -1
- package/bundle/.next/server/app/_not-found.segments/_not-found/__PAGE__.segment.rsc +1 -1
- package/bundle/.next/server/app/_not-found.segments/_not-found.segment.rsc +1 -1
- package/bundle/.next/server/app/_not-found.segments/_tree.segment.rsc +1 -1
- package/bundle/.next/server/app-paths-manifest.json +8 -8
- package/bundle/.next/server/pages/404.html +1 -1
- package/bundle/.next/server/pages/500.html +2 -2
- package/package.json +1 -1
- /package/bundle/.next/static/{OapfD2WRodYTsq1oFnTgh → VOlzZmzuIhPpxC4007UHA}/_buildManifest.js +0 -0
- /package/bundle/.next/static/{OapfD2WRodYTsq1oFnTgh → VOlzZmzuIhPpxC4007UHA}/_ssgManifest.js +0 -0
package/README.md
CHANGED
|
@@ -18,7 +18,18 @@ Optional flags:
|
|
|
18
18
|
|
|
19
19
|
```bash
|
|
20
20
|
agentos start --port 3000 --host 127.0.0.1
|
|
21
|
+
agentos start --port 3000 --host 127.0.0.1 --open
|
|
21
22
|
agentos doctor
|
|
22
23
|
```
|
|
23
24
|
|
|
25
|
+
Optional environment variables:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
AGENTOS_HOST=127.0.0.1
|
|
29
|
+
AGENTOS_PORT=3000
|
|
30
|
+
AGENTOS_OPEN=1
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
`agentos doctor` prints the effective URL, bundle status, Node.js compatibility, OpenClaw detection, and browser auto-open support.
|
|
34
|
+
|
|
24
35
|
AgentOS is designed to work with a local OpenClaw installation. If OpenClaw is missing, AgentOS still starts and guides onboarding in the UI.
|
package/bin/agentos.js
CHANGED
|
@@ -57,6 +57,7 @@ async function startServer(rawArgs) {
|
|
|
57
57
|
|
|
58
58
|
const options = parseStartArgs(rawArgs);
|
|
59
59
|
const openClawCheck = detectOpenClaw();
|
|
60
|
+
const browserOpener = detectBrowserOpener();
|
|
60
61
|
|
|
61
62
|
const url = `http://${displayHost(options.host)}:${options.port}`;
|
|
62
63
|
console.log(`Starting AgentOS on ${url}`);
|
|
@@ -67,9 +68,15 @@ async function startServer(rawArgs) {
|
|
|
67
68
|
console.log(`OpenClaw detected: ${openClawCheck.version}`);
|
|
68
69
|
}
|
|
69
70
|
|
|
71
|
+
if (options.open && !browserOpener.available) {
|
|
72
|
+
console.warn(
|
|
73
|
+
`Browser auto-open is unavailable on this machine${browserOpener.detail ? ` (${browserOpener.detail})` : ""}.`
|
|
74
|
+
);
|
|
75
|
+
}
|
|
76
|
+
|
|
70
77
|
const child = spawn(process.execPath, [bundledServerPath], {
|
|
71
78
|
cwd: bundleDir,
|
|
72
|
-
stdio: "inherit",
|
|
79
|
+
stdio: ["inherit", "pipe", "pipe"],
|
|
73
80
|
env: {
|
|
74
81
|
...process.env,
|
|
75
82
|
PORT: String(options.port),
|
|
@@ -77,6 +84,13 @@ async function startServer(rawArgs) {
|
|
|
77
84
|
}
|
|
78
85
|
});
|
|
79
86
|
|
|
87
|
+
const browserState = { opened: false };
|
|
88
|
+
const relayStdout = createRelay(process.stdout, options, url, browserOpener, browserState);
|
|
89
|
+
const relayStderr = createRelay(process.stderr, options, url, browserOpener, browserState);
|
|
90
|
+
|
|
91
|
+
child.stdout.on("data", relayStdout);
|
|
92
|
+
child.stderr.on("data", relayStderr);
|
|
93
|
+
|
|
80
94
|
const forwardSignal = (signal) => {
|
|
81
95
|
if (!child.killed) {
|
|
82
96
|
child.kill(signal);
|
|
@@ -100,17 +114,64 @@ async function startServer(rawArgs) {
|
|
|
100
114
|
}
|
|
101
115
|
|
|
102
116
|
function runDoctor() {
|
|
103
|
-
const
|
|
104
|
-
const nodeVersion = process.version;
|
|
117
|
+
const options = parseStartArgs([]);
|
|
105
118
|
const openClawCheck = detectOpenClaw();
|
|
119
|
+
const browserOpener = detectBrowserOpener();
|
|
120
|
+
const targetUrl = `http://${displayHost(options.host)}:${options.port}`;
|
|
121
|
+
const checks = [
|
|
122
|
+
{
|
|
123
|
+
ok: true,
|
|
124
|
+
label: "Package",
|
|
125
|
+
detail: `${packageJson.name}@${packageJson.version}`
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
ok: isSupportedNodeVersion(process.versions.node),
|
|
129
|
+
label: "Node.js",
|
|
130
|
+
detail: `${process.version} (required >= 20.9.0)`
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
ok: true,
|
|
134
|
+
label: "Platform",
|
|
135
|
+
detail: `${os.platform()} ${os.release()}`
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
ok: existsSync(bundledServerPath),
|
|
139
|
+
label: "Bundle",
|
|
140
|
+
detail: existsSync(bundledServerPath)
|
|
141
|
+
? `ready at ${bundledServerPath}`
|
|
142
|
+
: `missing at ${bundledServerPath}`
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
ok: true,
|
|
146
|
+
label: "Target URL",
|
|
147
|
+
detail: targetUrl
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
ok: true,
|
|
151
|
+
label: "Configured env",
|
|
152
|
+
detail: formatConfiguredEnv(options)
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
ok: openClawCheck.available,
|
|
156
|
+
label: "OpenClaw",
|
|
157
|
+
detail: openClawCheck.available
|
|
158
|
+
? `${openClawCheck.version || "installed"}${openClawCheck.path ? ` at ${openClawCheck.path}` : ""}`
|
|
159
|
+
: "not found on PATH"
|
|
160
|
+
},
|
|
161
|
+
{
|
|
162
|
+
ok: browserOpener.available,
|
|
163
|
+
label: "Browser opener",
|
|
164
|
+
detail: browserOpener.available
|
|
165
|
+
? `${browserOpener.command} is available`
|
|
166
|
+
: browserOpener.detail || "no supported browser opener detected"
|
|
167
|
+
}
|
|
168
|
+
];
|
|
106
169
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
console.log(`Bundle: ${existsSync(bundledServerPath) ? "ready" : "missing"}`);
|
|
111
|
-
console.log(`OpenClaw: ${openClawCheck.available ? openClawCheck.version || "installed" : "not found"}`);
|
|
170
|
+
for (const check of checks) {
|
|
171
|
+
console.log(`${check.ok ? "OK" : "WARN"} ${check.label}: ${check.detail}`);
|
|
172
|
+
}
|
|
112
173
|
|
|
113
|
-
if (!
|
|
174
|
+
if (!checks.every((check) => check.ok || check.label === "OpenClaw" || check.label === "Browser opener")) {
|
|
114
175
|
process.exitCode = 1;
|
|
115
176
|
}
|
|
116
177
|
}
|
|
@@ -119,7 +180,8 @@ function parseStartArgs(rawArgs) {
|
|
|
119
180
|
const envPort = process.env.AGENTOS_PORT || process.env.PORT;
|
|
120
181
|
const options = {
|
|
121
182
|
host: process.env.AGENTOS_HOST || "127.0.0.1",
|
|
122
|
-
port: envPort && /^\d+$/.test(envPort) ? Number(envPort) : 3000
|
|
183
|
+
port: envPort && /^\d+$/.test(envPort) ? Number(envPort) : 3000,
|
|
184
|
+
open: parseBooleanEnv(process.env.AGENTOS_OPEN)
|
|
123
185
|
};
|
|
124
186
|
|
|
125
187
|
for (let index = 0; index < rawArgs.length; index += 1) {
|
|
@@ -155,6 +217,16 @@ function parseStartArgs(rawArgs) {
|
|
|
155
217
|
continue;
|
|
156
218
|
}
|
|
157
219
|
|
|
220
|
+
if (arg === "--open" || arg === "-o") {
|
|
221
|
+
options.open = true;
|
|
222
|
+
continue;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
if (arg === "--no-open") {
|
|
226
|
+
options.open = false;
|
|
227
|
+
continue;
|
|
228
|
+
}
|
|
229
|
+
|
|
158
230
|
throw new Error(`Unknown argument: ${arg}`);
|
|
159
231
|
}
|
|
160
232
|
|
|
@@ -180,6 +252,7 @@ function assertHost(value) {
|
|
|
180
252
|
}
|
|
181
253
|
|
|
182
254
|
function detectOpenClaw() {
|
|
255
|
+
const pathResult = resolveCommandPath("openclaw");
|
|
183
256
|
const result = spawnSync("openclaw", ["--version"], {
|
|
184
257
|
encoding: "utf8"
|
|
185
258
|
});
|
|
@@ -187,13 +260,53 @@ function detectOpenClaw() {
|
|
|
187
260
|
if (result.error || result.status !== 0) {
|
|
188
261
|
return {
|
|
189
262
|
available: false,
|
|
190
|
-
version: null
|
|
263
|
+
version: null,
|
|
264
|
+
path: pathResult
|
|
191
265
|
};
|
|
192
266
|
}
|
|
193
267
|
|
|
194
268
|
return {
|
|
195
269
|
available: true,
|
|
196
|
-
version: result.stdout.trim() || result.stderr.trim() || null
|
|
270
|
+
version: result.stdout.trim() || result.stderr.trim() || null,
|
|
271
|
+
path: pathResult
|
|
272
|
+
};
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
function detectBrowserOpener() {
|
|
276
|
+
if (process.platform === "darwin") {
|
|
277
|
+
return {
|
|
278
|
+
available: true,
|
|
279
|
+
command: "open",
|
|
280
|
+
args: [],
|
|
281
|
+
detail: null
|
|
282
|
+
};
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
if (process.platform === "win32") {
|
|
286
|
+
return {
|
|
287
|
+
available: true,
|
|
288
|
+
command: "cmd",
|
|
289
|
+
args: ["/c", "start", ""],
|
|
290
|
+
detail: null
|
|
291
|
+
};
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
const command = resolveCommandPath("xdg-open");
|
|
295
|
+
|
|
296
|
+
if (!command) {
|
|
297
|
+
return {
|
|
298
|
+
available: false,
|
|
299
|
+
command: "xdg-open",
|
|
300
|
+
args: [],
|
|
301
|
+
detail: "xdg-open was not found on PATH"
|
|
302
|
+
};
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
return {
|
|
306
|
+
available: true,
|
|
307
|
+
command,
|
|
308
|
+
args: [],
|
|
309
|
+
detail: null
|
|
197
310
|
};
|
|
198
311
|
}
|
|
199
312
|
|
|
@@ -214,16 +327,102 @@ function printHelp() {
|
|
|
214
327
|
|
|
215
328
|
Usage:
|
|
216
329
|
agentos
|
|
217
|
-
agentos start --port 3000 --host 127.0.0.1
|
|
330
|
+
agentos start --port 3000 --host 127.0.0.1 --open
|
|
218
331
|
agentos doctor
|
|
219
332
|
agentos --version
|
|
220
333
|
|
|
221
334
|
Options:
|
|
222
335
|
--port, -p Port to bind the local server (default: 3000)
|
|
223
336
|
--host, -H Host to bind the local server (default: 127.0.0.1)
|
|
337
|
+
--open, -o Open AgentOS in the default browser after startup
|
|
338
|
+
--no-open Disable browser auto-open even if AGENTOS_OPEN is set
|
|
224
339
|
`);
|
|
225
340
|
}
|
|
226
341
|
|
|
342
|
+
function createRelay(target, options, url, browserOpener, browserState) {
|
|
343
|
+
return (chunk) => {
|
|
344
|
+
const text = chunk.toString();
|
|
345
|
+
target.write(text);
|
|
346
|
+
|
|
347
|
+
if (browserState.opened || !options.open || !browserOpener.available) {
|
|
348
|
+
return;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
if (text.includes("Ready in") || text.includes("Local:")) {
|
|
352
|
+
browserState.opened = true;
|
|
353
|
+
openBrowser(url, browserOpener);
|
|
354
|
+
}
|
|
355
|
+
};
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
function openBrowser(url, browserOpener) {
|
|
359
|
+
const browser = spawn(browserOpener.command, [...browserOpener.args, url], {
|
|
360
|
+
detached: true,
|
|
361
|
+
stdio: "ignore"
|
|
362
|
+
});
|
|
363
|
+
|
|
364
|
+
browser.on("error", (error) => {
|
|
365
|
+
console.warn(`Could not open a browser automatically: ${error.message}`);
|
|
366
|
+
});
|
|
367
|
+
|
|
368
|
+
browser.unref();
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
function resolveCommandPath(command) {
|
|
372
|
+
if (process.platform === "win32") {
|
|
373
|
+
const result = spawnSync("where", [command], {
|
|
374
|
+
encoding: "utf8"
|
|
375
|
+
});
|
|
376
|
+
|
|
377
|
+
if (result.error || result.status !== 0) {
|
|
378
|
+
return null;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
return result.stdout.split(/\r?\n/).map((line) => line.trim()).find(Boolean) || null;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
const result = spawnSync("which", [command], {
|
|
385
|
+
encoding: "utf8"
|
|
386
|
+
});
|
|
387
|
+
|
|
388
|
+
if (result.error || result.status !== 0) {
|
|
389
|
+
return null;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
return result.stdout.trim() || null;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
function isSupportedNodeVersion(version) {
|
|
396
|
+
const [majorText, minorText] = version.split(".");
|
|
397
|
+
const major = Number(majorText);
|
|
398
|
+
const minor = Number(minorText);
|
|
399
|
+
|
|
400
|
+
if (!Number.isFinite(major) || !Number.isFinite(minor)) {
|
|
401
|
+
return false;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
return major > 20 || (major === 20 && minor >= 9);
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
function parseBooleanEnv(value) {
|
|
408
|
+
if (!value) {
|
|
409
|
+
return false;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
const normalized = value.trim().toLowerCase();
|
|
413
|
+
return normalized === "1" || normalized === "true" || normalized === "yes" || normalized === "on";
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
function formatConfiguredEnv(options) {
|
|
417
|
+
const pairs = [
|
|
418
|
+
`AGENTOS_HOST=${options.host}`,
|
|
419
|
+
`AGENTOS_PORT=${options.port}`,
|
|
420
|
+
`AGENTOS_OPEN=${options.open ? "1" : "0"}`
|
|
421
|
+
];
|
|
422
|
+
|
|
423
|
+
return pairs.join(", ");
|
|
424
|
+
}
|
|
425
|
+
|
|
227
426
|
async function readTextFile(filePath) {
|
|
228
427
|
const { readFile } = await import("node:fs/promises");
|
|
229
428
|
return readFile(filePath, "utf8");
|
package/bundle/.next/BUILD_ID
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
VOlzZmzuIhPpxC4007UHA
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"/_not-found/page": "/_not-found",
|
|
3
3
|
"/_global-error/page": "/_global-error",
|
|
4
|
-
"/api/diagnostics/route": "/api/diagnostics",
|
|
5
|
-
"/api/agents/route": "/api/agents",
|
|
6
|
-
"/api/onboarding/models/route": "/api/onboarding/models",
|
|
7
|
-
"/api/files/reveal/route": "/api/files/reveal",
|
|
8
4
|
"/api/mission/route": "/api/mission",
|
|
9
|
-
"/api/
|
|
5
|
+
"/api/files/reveal/route": "/api/files/reveal",
|
|
6
|
+
"/api/agents/route": "/api/agents",
|
|
7
|
+
"/api/diagnostics/route": "/api/diagnostics",
|
|
10
8
|
"/api/gateway/control/route": "/api/gateway/control",
|
|
9
|
+
"/api/planner/[planId]/route": "/api/planner/[planId]",
|
|
10
|
+
"/api/planner/[planId]/deploy/route": "/api/planner/[planId]/deploy",
|
|
11
11
|
"/api/planner/[planId]/simulate/route": "/api/planner/[planId]/simulate",
|
|
12
|
-
"/api/planner/route": "/api/planner",
|
|
13
12
|
"/api/runtimes/[runtimeId]/route": "/api/runtimes/[runtimeId]",
|
|
14
|
-
"/api/planner/[planId]/deploy/route": "/api/planner/[planId]/deploy",
|
|
15
13
|
"/api/settings/gateway/route": "/api/settings/gateway",
|
|
14
|
+
"/api/planner/route": "/api/planner",
|
|
16
15
|
"/api/planner/[planId]/turn/route": "/api/planner/[planId]/turn",
|
|
17
16
|
"/api/settings/workspace-root/route": "/api/settings/workspace-root",
|
|
18
17
|
"/api/snapshot/route": "/api/snapshot",
|
|
19
18
|
"/api/system/open-terminal/route": "/api/system/open-terminal",
|
|
20
19
|
"/api/stream/route": "/api/stream",
|
|
21
|
-
"/api/update/route": "/api/update",
|
|
22
20
|
"/api/onboarding/route": "/api/onboarding",
|
|
21
|
+
"/api/update/route": "/api/update",
|
|
22
|
+
"/api/onboarding/models/route": "/api/onboarding/models",
|
|
23
23
|
"/api/workspaces/route": "/api/workspaces",
|
|
24
24
|
"/page": "/"
|
|
25
25
|
}
|
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
],
|
|
5
5
|
"devFiles": [],
|
|
6
6
|
"lowPriorityFiles": [
|
|
7
|
-
"static/
|
|
8
|
-
"static/
|
|
7
|
+
"static/VOlzZmzuIhPpxC4007UHA/_buildManifest.js",
|
|
8
|
+
"static/VOlzZmzuIhPpxC4007UHA/_ssgManifest.js"
|
|
9
9
|
],
|
|
10
10
|
"rootMainFiles": [
|
|
11
11
|
"static/chunks/webpack-032b5b42e067a790.js",
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
2
|
-
@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-right:23px;font-size:24px;font-weight:500;vertical-align:top">500</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">Internal Server Error.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-032b5b42e067a790.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[4001,[],\"\"]\n3:I[1493,[],\"\"]\n4:I[2212,[],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[2212,[],\"ViewportBoundary\"]\n9:I[2212,[],\"MetadataBoundary\"]\nb:I[6163,[],\"\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"
|
|
1
|
+
<!DOCTYPE html><!--VOlzZmzuIhPpxC4007UHA--><html id="__next_error__"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-032b5b42e067a790.js"/><script src="/_next/static/chunks/474f1956-ebf51c0dd00ff236.js" async=""></script><script src="/_next/static/chunks/26-8f7c2b7e8773b4cb.js" async=""></script><script src="/_next/static/chunks/main-app-9229332086036e25.js" async=""></script><title>500: Internal Server Error.</title><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><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="line-height:48px"><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}
|
|
2
|
+
@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-right:23px;font-size:24px;font-weight:500;vertical-align:top">500</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">Internal Server Error.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-032b5b42e067a790.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[4001,[],\"\"]\n3:I[1493,[],\"\"]\n4:I[2212,[],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[2212,[],\"ViewportBoundary\"]\n9:I[2212,[],\"MetadataBoundary\"]\nb:I[6163,[],\"\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"VOlzZmzuIhPpxC4007UHA\",\"c\":[\"\",\"_global-error\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"_global-error\",{\"children\":[\"__PAGE__\",{}]}]}],[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"main\",null,{\"className\":\"flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white\",\"children\":[\"$\",\"div\",null,{\"className\":\"rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl\",\"children\":[[\"$\",\"p\",null,{\"className\":\"text-[11px] uppercase tracking-[0.32em] text-slate-500\",\"children\":\"OpenClaw\"}],[\"$\",\"h1\",null,{\"className\":\"mt-3 font-display text-3xl\",\"children\":\"Page not found\"}],[\"$\",\"p\",null,{\"className\":\"mt-3 max-w-md text-sm leading-6 text-slate-400\",\"children\":\"The requested mission-control route does not exist in this workspace.\"}]]}]}],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"html\",null,{\"id\":\"__next_error__\",\"children\":[[\"$\",\"head\",null,{\"children\":[\"$\",\"title\",null,{\"children\":\"500: Internal Server Error.\"}]}],[\"$\",\"body\",null,{\"children\":[\"$\",\"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,{\"style\":{\"lineHeight\":\"48px\"},\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\\n@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\",\"paddingRight\":23,\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\"},\"children\":\"500\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"28px\"},\"children\":\"Internal Server Error.\"}]}]]}]}]}]]}],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L7\",null,{\"children\":\"$L8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$La\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",[]],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"6:null\na:[]\n"])</script></body></html>
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
7:I[2212,[],"ViewportBoundary"]
|
|
7
7
|
9:I[2212,[],"MetadataBoundary"]
|
|
8
8
|
b:I[6163,[],""]
|
|
9
|
-
0:{"P":null,"b":"
|
|
9
|
+
0:{"P":null,"b":"VOlzZmzuIhPpxC4007UHA","c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["_global-error",{"children":["__PAGE__",{}]}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white","children":["$","div",null,{"className":"rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl","children":[["$","p",null,{"className":"text-[11px] uppercase tracking-[0.32em] text-slate-500","children":"OpenClaw"}],["$","h1",null,{"className":"mt-3 font-display text-3xl","children":"Page not found"}],["$","p",null,{"className":"mt-3 max-w-md text-sm leading-6 text-slate-400","children":"The requested mission-control route does not exist in this workspace."}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","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,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@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","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],null]}],false]],"m":"$undefined","G":["$b",[]],"S":true}
|
|
10
10
|
8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
11
11
|
6:null
|
|
12
12
|
a:[]
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
7:I[2212,[],"ViewportBoundary"]
|
|
7
7
|
9:I[2212,[],"MetadataBoundary"]
|
|
8
8
|
b:I[6163,[],""]
|
|
9
|
-
0:{"P":null,"b":"
|
|
9
|
+
0:{"P":null,"b":"VOlzZmzuIhPpxC4007UHA","c":["","_global-error"],"q":"","i":false,"f":[[["",{"children":["_global-error",{"children":["__PAGE__",{}]}]}],[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white","children":["$","div",null,{"className":"rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl","children":[["$","p",null,{"className":"text-[11px] uppercase tracking-[0.32em] text-slate-500","children":"OpenClaw"}],["$","h1",null,{"className":"mt-3 font-display text-3xl","children":"Page not found"}],["$","p",null,{"className":"mt-3 max-w-md text-sm leading-6 text-slate-400","children":"The requested mission-control route does not exist in this workspace."}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","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,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@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","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],null,["$","$L4",null,{"children":["$","$5",null,{"name":"Next.MetadataOutlet","children":"$@6"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[null,["$","$L7",null,{"children":"$L8"}],["$","div",null,{"hidden":true,"children":["$","$L9",null,{"children":["$","$5",null,{"name":"Next.Metadata","children":"$La"}]}]}],null]}],false]],"m":"$undefined","G":["$b",[]],"S":true}
|
|
10
10
|
8:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
|
|
11
11
|
6:null
|
|
12
12
|
a:[]
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
1:"$Sreact.fragment"
|
|
2
2
|
2:I[2212,[],"OutletBoundary"]
|
|
3
3
|
3:"$Sreact.suspense"
|
|
4
|
-
0:{"buildId":"
|
|
4
|
+
0:{"buildId":"VOlzZmzuIhPpxC4007UHA","rsc":["$","$1","c",{"children":[["$","html",null,{"id":"__next_error__","children":[["$","head",null,{"children":["$","title",null,{"children":"500: Internal Server Error."}]}],["$","body",null,{"children":["$","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,{"style":{"lineHeight":"48px"},"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\n@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","paddingRight":23,"fontSize":24,"fontWeight":500,"verticalAlign":"top"},"children":"500"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"28px"},"children":"Internal Server Error."}]}]]}]}]}]]}],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
|
|
5
5
|
4:null
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
1:"$Sreact.fragment"
|
|
2
2
|
2:I[4001,[],""]
|
|
3
3
|
3:I[1493,[],""]
|
|
4
|
-
0:{"buildId":"
|
|
4
|
+
0:{"buildId":"VOlzZmzuIhPpxC4007UHA","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
|
@@ -2,4 +2,4 @@
|
|
|
2
2
|
2:I[2212,[],"ViewportBoundary"]
|
|
3
3
|
3:I[2212,[],"MetadataBoundary"]
|
|
4
4
|
4:"$Sreact.suspense"
|
|
5
|
-
0:{"buildId":"
|
|
5
|
+
0:{"buildId":"VOlzZmzuIhPpxC4007UHA","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":[]}]}]}],null]}],"loading":null,"isPartial":false}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
1:"$Sreact.fragment"
|
|
2
2
|
2:I[4001,[],""]
|
|
3
3
|
3:I[1493,[],""]
|
|
4
|
-
0:{"buildId":"
|
|
4
|
+
0:{"buildId":"VOlzZmzuIhPpxC4007UHA","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white","children":["$","div",null,{"className":"rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl","children":[["$","p",null,{"className":"text-[11px] uppercase tracking-[0.32em] text-slate-500","children":"OpenClaw"}],["$","h1",null,{"className":"mt-3 font-display text-3xl","children":"Page not found"}],["$","p",null,{"className":"mt-3 max-w-md text-sm leading-6 text-slate-400","children":"The requested mission-control route does not exist in this workspace."}]]}]}],[]]}]]}],"loading":null,"isPartial":false}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
0:{"buildId":"
|
|
1
|
+
0:{"buildId":"VOlzZmzuIhPpxC4007UHA","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"_global-error","paramType":null,"paramKey":"_global-error","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":false},"staleTime":300}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--VOlzZmzuIhPpxC4007UHA--><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/fafac7874e0b1aad.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-032b5b42e067a790.js"/><script src="/_next/static/chunks/474f1956-ebf51c0dd00ff236.js" async=""></script><script src="/_next/static/chunks/26-8f7c2b7e8773b4cb.js" async=""></script><script src="/_next/static/chunks/main-app-9229332086036e25.js" async=""></script><script src="/_next/static/chunks/273-31916bcd40e3f381.js" async=""></script><script src="/_next/static/chunks/app/layout-f29ac7241aef5824.js" async=""></script><meta name="robots" content="noindex"/><meta name="theme-color" content="#09101c"/><title>AgentOS | OpenClaw Mission Control</title><meta name="description" content="Human Control Layer for AI Agents and Companies | Built on OpenClaw."/><meta name="application-name" content="AgentOS | Mission Control"/><link rel="manifest" href="/site.webmanifest"/><meta property="og:title" content="AgentOS | OpenClaw Mission Control"/><meta property="og:description" content="Human Control Layer for AI Agents and Companies | Built on OpenClaw."/><meta property="og:site_name" content="AgentOS | Mission Control"/><meta property="og:image" content="http://localhost:3000/readme/banner.jpeg"/><meta property="og:image:width" content="1536"/><meta property="og:image:height" content="1024"/><meta property="og:image:alt" content="AgentOS mission-control interface"/><meta property="og:type" content="website"/><meta name="twitter:card" content="summary_large_image"/><meta name="twitter:title" content="AgentOS | OpenClaw Mission Control"/><meta name="twitter:description" content="Human Control Layer for AI Agents and Companies | Built on OpenClaw."/><meta name="twitter:image" content="http://localhost:3000/readme/banner.jpeg"/><link rel="shortcut icon" href="/favicon.ico"/><link rel="icon" href="/favicon.ico" sizes="any"/><link rel="icon" href="/favicon-16x16.png" sizes="16x16" type="image/png"/><link rel="icon" href="/favicon-32x32.png" sizes="32x32" type="image/png"/><link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" type="image/png"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><main class="flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white"><div class="rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl"><p class="text-[11px] uppercase tracking-[0.32em] text-slate-500">OpenClaw</p><h1 class="mt-3 font-display text-3xl">Page not found</h1><p class="mt-3 max-w-md text-sm leading-6 text-slate-400">The requested mission-control route does not exist in this workspace.</p></div></main><!--$--><!--/$--><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section><script src="/_next/static/chunks/webpack-032b5b42e067a790.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[4001,[],\"\"]\n3:I[1493,[],\"\"]\n4:I[2629,[\"273\",\"static/chunks/273-31916bcd40e3f381.js\",\"177\",\"static/chunks/app/layout-f29ac7241aef5824.js\"],\"Toaster\"]\n5:I[2212,[],\"OutletBoundary\"]\n6:\"$Sreact.suspense\"\n8:I[2212,[],\"ViewportBoundary\"]\na:I[2212,[],\"MetadataBoundary\"]\nc:I[6163,[],\"\"]\n:HL[\"/_next/static/css/fafac7874e0b1aad.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"VOlzZmzuIhPpxC4007UHA\",\"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/css/fafac7874e0b1aad.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"suppressHydrationWarning\":true,\"children\":[\"$\",\"body\",null,{\"children\":[[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"main\",null,{\"className\":\"flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white\",\"children\":[\"$\",\"div\",null,{\"className\":\"rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl\",\"children\":[[\"$\",\"p\",null,{\"className\":\"text-[11px] uppercase tracking-[0.32em] text-slate-500\",\"children\":\"OpenClaw\"}],[\"$\",\"h1\",null,{\"className\":\"mt-3 font-display text-3xl\",\"children\":\"Page not found\"}],[\"$\",\"p\",null,{\"className\":\"mt-3 max-w-md text-sm leading-6 text-slate-400\",\"children\":\"The requested mission-control route does not exist in this workspace.\"}]]}]}],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}],[\"$\",\"$L4\",null,{\"theme\":\"dark\",\"richColors\":true,\"closeButton\":true}]]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"main\",null,{\"className\":\"flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white\",\"children\":[\"$\",\"div\",null,{\"className\":\"rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl\",\"children\":[[\"$\",\"p\",null,{\"className\":\"text-[11px] uppercase tracking-[0.32em] text-slate-500\",\"children\":\"OpenClaw\"}],[\"$\",\"h1\",null,{\"className\":\"mt-3 font-display text-3xl\",\"children\":\"Page not found\"}],[\"$\",\"p\",null,{\"className\":\"mt-3 max-w-md text-sm leading-6 text-slate-400\",\"children\":\"The requested mission-control route does not exist in this workspace.\"}]]}]}],null,[\"$\",\"$L5\",null,{\"children\":[\"$\",\"$6\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@7\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$La\",null,{\"children\":[\"$\",\"$6\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lb\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$c\",[]],\"S\":true}\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"2\",{\"name\":\"theme-color\",\"content\":\"#09101c\"}]]\n"])</script><script>self.__next_f.push([1,"d:I[3941,[],\"IconMark\"]\n7:null\n"])</script><script>self.__next_f.push([1,"b:[[\"$\",\"title\",\"0\",{\"children\":\"AgentOS | OpenClaw Mission Control\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Human Control Layer for AI Agents and Companies | Built on OpenClaw.\"}],[\"$\",\"meta\",\"2\",{\"name\":\"application-name\",\"content\":\"AgentOS | Mission Control\"}],[\"$\",\"link\",\"3\",{\"rel\":\"manifest\",\"href\":\"/site.webmanifest\",\"crossOrigin\":\"$undefined\"}],[\"$\",\"meta\",\"4\",{\"property\":\"og:title\",\"content\":\"AgentOS | OpenClaw Mission Control\"}],[\"$\",\"meta\",\"5\",{\"property\":\"og:description\",\"content\":\"Human Control Layer for AI Agents and Companies | Built on OpenClaw.\"}],[\"$\",\"meta\",\"6\",{\"property\":\"og:site_name\",\"content\":\"AgentOS | Mission Control\"}],[\"$\",\"meta\",\"7\",{\"property\":\"og:image\",\"content\":\"http://localhost:3000/readme/banner.jpeg\"}],[\"$\",\"meta\",\"8\",{\"property\":\"og:image:width\",\"content\":\"1536\"}],[\"$\",\"meta\",\"9\",{\"property\":\"og:image:height\",\"content\":\"1024\"}],[\"$\",\"meta\",\"10\",{\"property\":\"og:image:alt\",\"content\":\"AgentOS mission-control interface\"}],[\"$\",\"meta\",\"11\",{\"property\":\"og:type\",\"content\":\"website\"}],[\"$\",\"meta\",\"12\",{\"name\":\"twitter:card\",\"content\":\"summary_large_image\"}],[\"$\",\"meta\",\"13\",{\"name\":\"twitter:title\",\"content\":\"AgentOS | OpenClaw Mission Control\"}],[\"$\",\"meta\",\"14\",{\"name\":\"twitter:description\",\"content\":\"Human Control Layer for AI Agents and Companies | Built on OpenClaw.\"}],[\"$\",\"meta\",\"15\",{\"name\":\"twitter:image\",\"content\":\"http://localhost:3000/readme/banner.jpeg\"}],[\"$\",\"link\",\"16\",{\"rel\":\"shortcut icon\",\"href\":\"/favicon.ico\"}],[\"$\",\"link\",\"17\",{\"rel\":\"icon\",\"href\":\"/favicon.ico\",\"sizes\":\"any\"}],[\"$\",\"link\",\"18\",{\"rel\":\"icon\",\"href\":\"/favicon-16x16.png\",\"sizes\":\"16x16\",\"type\":\"image/png\"}],[\"$\",\"link\",\"19\",{\"rel\":\"icon\",\"href\":\"/favicon-32x32.png\",\"sizes\":\"32x32\",\"type\":\"image/png\"}],[\"$\",\"link\",\"20\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-touch-icon.png\",\"sizes\":\"180x180\",\"type\":\"image/png\"}],[\"$\",\"$Ld\",\"21\",{}]]\n"])</script></body></html>
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
a:I[2212,[],"MetadataBoundary"]
|
|
9
9
|
c:I[6163,[],""]
|
|
10
10
|
:HL["/_next/static/css/fafac7874e0b1aad.css","style"]
|
|
11
|
-
0:{"P":null,"b":"
|
|
11
|
+
0:{"P":null,"b":"VOlzZmzuIhPpxC4007UHA","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/css/fafac7874e0b1aad.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","suppressHydrationWarning":true,"children":["$","body",null,{"children":[["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white","children":["$","div",null,{"className":"rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl","children":[["$","p",null,{"className":"text-[11px] uppercase tracking-[0.32em] text-slate-500","children":"OpenClaw"}],["$","h1",null,{"className":"mt-3 font-display text-3xl","children":"Page not found"}],["$","p",null,{"className":"mt-3 max-w-md text-sm leading-6 text-slate-400","children":"The requested mission-control route does not exist in this workspace."}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L4",null,{"theme":"dark","richColors":true,"closeButton":true}]]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white","children":["$","div",null,{"className":"rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl","children":[["$","p",null,{"className":"text-[11px] uppercase tracking-[0.32em] text-slate-500","children":"OpenClaw"}],["$","h1",null,{"className":"mt-3 font-display text-3xl","children":"Page not found"}],["$","p",null,{"className":"mt-3 max-w-md text-sm leading-6 text-slate-400","children":"The requested mission-control route does not exist in this workspace."}]]}]}],null,["$","$L5",null,{"children":["$","$6",null,{"name":"Next.MetadataOutlet","children":"$@7"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$6",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],null]}],false]],"m":"$undefined","G":["$c",[]],"S":true}
|
|
12
12
|
9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","2",{"name":"theme-color","content":"#09101c"}]]
|
|
13
13
|
d:I[3941,[],"IconMark"]
|
|
14
14
|
7:null
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
a:I[2212,[],"MetadataBoundary"]
|
|
9
9
|
c:I[6163,[],""]
|
|
10
10
|
:HL["/_next/static/css/fafac7874e0b1aad.css","style"]
|
|
11
|
-
0:{"P":null,"b":"
|
|
11
|
+
0:{"P":null,"b":"VOlzZmzuIhPpxC4007UHA","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/css/fafac7874e0b1aad.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark","suppressHydrationWarning":true,"children":["$","body",null,{"children":[["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white","children":["$","div",null,{"className":"rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl","children":[["$","p",null,{"className":"text-[11px] uppercase tracking-[0.32em] text-slate-500","children":"OpenClaw"}],["$","h1",null,{"className":"mt-3 font-display text-3xl","children":"Page not found"}],["$","p",null,{"className":"mt-3 max-w-md text-sm leading-6 text-slate-400","children":"The requested mission-control route does not exist in this workspace."}]]}]}],[]],"forbidden":"$undefined","unauthorized":"$undefined"}],["$","$L4",null,{"theme":"dark","richColors":true,"closeButton":true}]]}]}]]}],{"children":[["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":[["$","$1","c",{"children":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white","children":["$","div",null,{"className":"rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl","children":[["$","p",null,{"className":"text-[11px] uppercase tracking-[0.32em] text-slate-500","children":"OpenClaw"}],["$","h1",null,{"className":"mt-3 font-display text-3xl","children":"Page not found"}],["$","p",null,{"className":"mt-3 max-w-md text-sm leading-6 text-slate-400","children":"The requested mission-control route does not exist in this workspace."}]]}]}],null,["$","$L5",null,{"children":["$","$6",null,{"name":"Next.MetadataOutlet","children":"$@7"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L8",null,{"children":"$L9"}],["$","div",null,{"hidden":true,"children":["$","$La",null,{"children":["$","$6",null,{"name":"Next.Metadata","children":"$Lb"}]}]}],null]}],false]],"m":"$undefined","G":["$c",[]],"S":true}
|
|
12
12
|
9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","2",{"name":"theme-color","content":"#09101c"}]]
|
|
13
13
|
d:I[3941,[],"IconMark"]
|
|
14
14
|
7:null
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
3:I[2212,[],"MetadataBoundary"]
|
|
4
4
|
4:"$Sreact.suspense"
|
|
5
5
|
5:I[3941,[],"IconMark"]
|
|
6
|
-
0:{"buildId":"
|
|
6
|
+
0:{"buildId":"VOlzZmzuIhPpxC4007UHA","rsc":["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],["$","$L2",null,{"children":[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","2",{"name":"theme-color","content":"#09101c"}]]}],["$","div",null,{"hidden":true,"children":["$","$L3",null,{"children":["$","$4",null,{"name":"Next.Metadata","children":[["$","title","0",{"children":"AgentOS | OpenClaw Mission Control"}],["$","meta","1",{"name":"description","content":"Human Control Layer for AI Agents and Companies | Built on OpenClaw."}],["$","meta","2",{"name":"application-name","content":"AgentOS | Mission Control"}],["$","link","3",{"rel":"manifest","href":"/site.webmanifest"}],["$","meta","4",{"property":"og:title","content":"AgentOS | OpenClaw Mission Control"}],["$","meta","5",{"property":"og:description","content":"Human Control Layer for AI Agents and Companies | Built on OpenClaw."}],["$","meta","6",{"property":"og:site_name","content":"AgentOS | Mission Control"}],["$","meta","7",{"property":"og:image","content":"http://localhost:3000/readme/banner.jpeg"}],["$","meta","8",{"property":"og:image:width","content":"1536"}],["$","meta","9",{"property":"og:image:height","content":"1024"}],["$","meta","10",{"property":"og:image:alt","content":"AgentOS mission-control interface"}],["$","meta","11",{"property":"og:type","content":"website"}],["$","meta","12",{"name":"twitter:card","content":"summary_large_image"}],["$","meta","13",{"name":"twitter:title","content":"AgentOS | OpenClaw Mission Control"}],["$","meta","14",{"name":"twitter:description","content":"Human Control Layer for AI Agents and Companies | Built on OpenClaw."}],["$","meta","15",{"name":"twitter:image","content":"http://localhost:3000/readme/banner.jpeg"}],["$","link","16",{"rel":"shortcut icon","href":"/favicon.ico"}],["$","link","17",{"rel":"icon","href":"/favicon.ico","sizes":"any"}],["$","link","18",{"rel":"icon","href":"/favicon-16x16.png","sizes":"16x16","type":"image/png"}],["$","link","19",{"rel":"icon","href":"/favicon-32x32.png","sizes":"32x32","type":"image/png"}],["$","link","20",{"rel":"apple-touch-icon","href":"/apple-touch-icon.png","sizes":"180x180","type":"image/png"}],["$","$L5","21",{}]]}]}]}],null]}],"loading":null,"isPartial":false}
|
|
@@ -3,4 +3,4 @@
|
|
|
3
3
|
3:I[1493,[],""]
|
|
4
4
|
4:I[2629,["273","static/chunks/273-31916bcd40e3f381.js","177","static/chunks/app/layout-f29ac7241aef5824.js"],"Toaster"]
|
|
5
5
|
:HL["/_next/static/css/fafac7874e0b1aad.css","style"]
|
|
6
|
-
0:{"buildId":"
|
|
6
|
+
0:{"buildId":"VOlzZmzuIhPpxC4007UHA","rsc":["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/fafac7874e0b1aad.css","precedence":"next"}]],["$","html",null,{"lang":"en","className":"dark","suppressHydrationWarning":true,"children":["$","body",null,{"children":[["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}],"notFound":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white","children":["$","div",null,{"className":"rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl","children":[["$","p",null,{"className":"text-[11px] uppercase tracking-[0.32em] text-slate-500","children":"OpenClaw"}],["$","h1",null,{"className":"mt-3 font-display text-3xl","children":"Page not found"}],["$","p",null,{"className":"mt-3 max-w-md text-sm leading-6 text-slate-400","children":"The requested mission-control route does not exist in this workspace."}]]}]}],[]]}],["$","$L4",null,{"theme":"dark","richColors":true,"closeButton":true}]]}]}]]}],"loading":null,"isPartial":false}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
1:"$Sreact.fragment"
|
|
2
2
|
2:I[2212,[],"OutletBoundary"]
|
|
3
3
|
3:"$Sreact.suspense"
|
|
4
|
-
0:{"buildId":"
|
|
4
|
+
0:{"buildId":"VOlzZmzuIhPpxC4007UHA","rsc":["$","$1","c",{"children":[["$","main",null,{"className":"flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white","children":["$","div",null,{"className":"rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl","children":[["$","p",null,{"className":"text-[11px] uppercase tracking-[0.32em] text-slate-500","children":"OpenClaw"}],["$","h1",null,{"className":"mt-3 font-display text-3xl","children":"Page not found"}],["$","p",null,{"className":"mt-3 max-w-md text-sm leading-6 text-slate-400","children":"The requested mission-control route does not exist in this workspace."}]]}]}],null,["$","$L2",null,{"children":["$","$3",null,{"name":"Next.MetadataOutlet","children":"$@4"}]}]]}],"loading":null,"isPartial":false}
|
|
5
5
|
4:null
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
1:"$Sreact.fragment"
|
|
2
2
|
2:I[4001,[],""]
|
|
3
3
|
3:I[1493,[],""]
|
|
4
|
-
0:{"buildId":"
|
|
4
|
+
0:{"buildId":"VOlzZmzuIhPpxC4007UHA","rsc":["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","template":["$","$L3",null,{}]}]]}],"loading":null,"isPartial":false}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
:HL["/_next/static/css/fafac7874e0b1aad.css","style"]
|
|
2
|
-
0:{"buildId":"
|
|
2
|
+
0:{"buildId":"VOlzZmzuIhPpxC4007UHA","tree":{"name":"","paramType":null,"paramKey":"","hasRuntimePrefetch":false,"slots":{"children":{"name":"_not-found","paramType":null,"paramKey":"_not-found","hasRuntimePrefetch":false,"slots":{"children":{"name":"__PAGE__","paramType":null,"paramKey":"__PAGE__","hasRuntimePrefetch":false,"slots":null,"isRootLayout":false}},"isRootLayout":false}},"isRootLayout":true},"staleTime":300}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
{
|
|
2
2
|
"/_not-found/page": "app/_not-found/page.js",
|
|
3
3
|
"/_global-error/page": "app/_global-error/page.js",
|
|
4
|
-
"/api/diagnostics/route": "app/api/diagnostics/route.js",
|
|
5
|
-
"/api/agents/route": "app/api/agents/route.js",
|
|
6
|
-
"/api/onboarding/models/route": "app/api/onboarding/models/route.js",
|
|
7
|
-
"/api/files/reveal/route": "app/api/files/reveal/route.js",
|
|
8
4
|
"/api/mission/route": "app/api/mission/route.js",
|
|
9
|
-
"/api/
|
|
5
|
+
"/api/files/reveal/route": "app/api/files/reveal/route.js",
|
|
6
|
+
"/api/agents/route": "app/api/agents/route.js",
|
|
7
|
+
"/api/diagnostics/route": "app/api/diagnostics/route.js",
|
|
10
8
|
"/api/gateway/control/route": "app/api/gateway/control/route.js",
|
|
9
|
+
"/api/planner/[planId]/route": "app/api/planner/[planId]/route.js",
|
|
10
|
+
"/api/planner/[planId]/deploy/route": "app/api/planner/[planId]/deploy/route.js",
|
|
11
11
|
"/api/planner/[planId]/simulate/route": "app/api/planner/[planId]/simulate/route.js",
|
|
12
|
-
"/api/planner/route": "app/api/planner/route.js",
|
|
13
12
|
"/api/runtimes/[runtimeId]/route": "app/api/runtimes/[runtimeId]/route.js",
|
|
14
|
-
"/api/planner/[planId]/deploy/route": "app/api/planner/[planId]/deploy/route.js",
|
|
15
13
|
"/api/settings/gateway/route": "app/api/settings/gateway/route.js",
|
|
14
|
+
"/api/planner/route": "app/api/planner/route.js",
|
|
16
15
|
"/api/planner/[planId]/turn/route": "app/api/planner/[planId]/turn/route.js",
|
|
17
16
|
"/api/settings/workspace-root/route": "app/api/settings/workspace-root/route.js",
|
|
18
17
|
"/api/snapshot/route": "app/api/snapshot/route.js",
|
|
19
18
|
"/api/system/open-terminal/route": "app/api/system/open-terminal/route.js",
|
|
20
19
|
"/api/stream/route": "app/api/stream/route.js",
|
|
21
|
-
"/api/update/route": "app/api/update/route.js",
|
|
22
20
|
"/api/onboarding/route": "app/api/onboarding/route.js",
|
|
21
|
+
"/api/update/route": "app/api/update/route.js",
|
|
22
|
+
"/api/onboarding/models/route": "app/api/onboarding/models/route.js",
|
|
23
23
|
"/api/workspaces/route": "app/api/workspaces/route.js",
|
|
24
24
|
"/page": "app/page.js"
|
|
25
25
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
1
|
+
<!DOCTYPE html><!--VOlzZmzuIhPpxC4007UHA--><html lang="en" class="dark"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/fafac7874e0b1aad.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-032b5b42e067a790.js"/><script src="/_next/static/chunks/474f1956-ebf51c0dd00ff236.js" async=""></script><script src="/_next/static/chunks/26-8f7c2b7e8773b4cb.js" async=""></script><script src="/_next/static/chunks/main-app-9229332086036e25.js" async=""></script><script src="/_next/static/chunks/273-31916bcd40e3f381.js" async=""></script><script src="/_next/static/chunks/app/layout-f29ac7241aef5824.js" async=""></script><meta name="robots" content="noindex"/><meta name="theme-color" content="#09101c"/><title>AgentOS | OpenClaw Mission Control</title><meta name="description" content="Human Control Layer for AI Agents and Companies | Built on OpenClaw."/><meta name="application-name" content="AgentOS | Mission Control"/><link rel="manifest" href="/site.webmanifest"/><meta property="og:title" content="AgentOS | OpenClaw Mission Control"/><meta property="og:description" content="Human Control Layer for AI Agents and Companies | Built on OpenClaw."/><meta property="og:site_name" content="AgentOS | Mission Control"/><meta property="og:image" content="http://localhost:3000/readme/banner.jpeg"/><meta property="og:image:width" content="1536"/><meta property="og:image:height" content="1024"/><meta property="og:image:alt" content="AgentOS mission-control interface"/><meta property="og:type" content="website"/><meta name="twitter:card" content="summary_large_image"/><meta name="twitter:title" content="AgentOS | OpenClaw Mission Control"/><meta name="twitter:description" content="Human Control Layer for AI Agents and Companies | Built on OpenClaw."/><meta name="twitter:image" content="http://localhost:3000/readme/banner.jpeg"/><link rel="shortcut icon" href="/favicon.ico"/><link rel="icon" href="/favicon.ico" sizes="any"/><link rel="icon" href="/favicon-16x16.png" sizes="16x16" type="image/png"/><link rel="icon" href="/favicon-32x32.png" sizes="32x32" type="image/png"/><link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" type="image/png"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><main class="flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white"><div class="rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl"><p class="text-[11px] uppercase tracking-[0.32em] text-slate-500">OpenClaw</p><h1 class="mt-3 font-display text-3xl">Page not found</h1><p class="mt-3 max-w-md text-sm leading-6 text-slate-400">The requested mission-control route does not exist in this workspace.</p></div></main><!--$--><!--/$--><section aria-label="Notifications alt+T" tabindex="-1" aria-live="polite" aria-relevant="additions text" aria-atomic="false"></section><script src="/_next/static/chunks/webpack-032b5b42e067a790.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[4001,[],\"\"]\n3:I[1493,[],\"\"]\n4:I[2629,[\"273\",\"static/chunks/273-31916bcd40e3f381.js\",\"177\",\"static/chunks/app/layout-f29ac7241aef5824.js\"],\"Toaster\"]\n5:I[2212,[],\"OutletBoundary\"]\n6:\"$Sreact.suspense\"\n8:I[2212,[],\"ViewportBoundary\"]\na:I[2212,[],\"MetadataBoundary\"]\nc:I[6163,[],\"\"]\n:HL[\"/_next/static/css/fafac7874e0b1aad.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"VOlzZmzuIhPpxC4007UHA\",\"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/css/fafac7874e0b1aad.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark\",\"suppressHydrationWarning\":true,\"children\":[\"$\",\"body\",null,{\"children\":[[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"main\",null,{\"className\":\"flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white\",\"children\":[\"$\",\"div\",null,{\"className\":\"rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl\",\"children\":[[\"$\",\"p\",null,{\"className\":\"text-[11px] uppercase tracking-[0.32em] text-slate-500\",\"children\":\"OpenClaw\"}],[\"$\",\"h1\",null,{\"className\":\"mt-3 font-display text-3xl\",\"children\":\"Page not found\"}],[\"$\",\"p\",null,{\"className\":\"mt-3 max-w-md text-sm leading-6 text-slate-400\",\"children\":\"The requested mission-control route does not exist in this workspace.\"}]]}]}],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}],[\"$\",\"$L4\",null,{\"theme\":\"dark\",\"richColors\":true,\"closeButton\":true}]]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"main\",null,{\"className\":\"flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white\",\"children\":[\"$\",\"div\",null,{\"className\":\"rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl\",\"children\":[[\"$\",\"p\",null,{\"className\":\"text-[11px] uppercase tracking-[0.32em] text-slate-500\",\"children\":\"OpenClaw\"}],[\"$\",\"h1\",null,{\"className\":\"mt-3 font-display text-3xl\",\"children\":\"Page not found\"}],[\"$\",\"p\",null,{\"className\":\"mt-3 max-w-md text-sm leading-6 text-slate-400\",\"children\":\"The requested mission-control route does not exist in this workspace.\"}]]}]}],null,[\"$\",\"$L5\",null,{\"children\":[\"$\",\"$6\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@7\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$La\",null,{\"children\":[\"$\",\"$6\",null,{\"name\":\"Next.Metadata\",\"children\":\"$Lb\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$c\",[]],\"S\":true}\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"2\",{\"name\":\"theme-color\",\"content\":\"#09101c\"}]]\n"])</script><script>self.__next_f.push([1,"d:I[3941,[],\"IconMark\"]\n7:null\n"])</script><script>self.__next_f.push([1,"b:[[\"$\",\"title\",\"0\",{\"children\":\"AgentOS | OpenClaw Mission Control\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Human Control Layer for AI Agents and Companies | Built on OpenClaw.\"}],[\"$\",\"meta\",\"2\",{\"name\":\"application-name\",\"content\":\"AgentOS | Mission Control\"}],[\"$\",\"link\",\"3\",{\"rel\":\"manifest\",\"href\":\"/site.webmanifest\",\"crossOrigin\":\"$undefined\"}],[\"$\",\"meta\",\"4\",{\"property\":\"og:title\",\"content\":\"AgentOS | OpenClaw Mission Control\"}],[\"$\",\"meta\",\"5\",{\"property\":\"og:description\",\"content\":\"Human Control Layer for AI Agents and Companies | Built on OpenClaw.\"}],[\"$\",\"meta\",\"6\",{\"property\":\"og:site_name\",\"content\":\"AgentOS | Mission Control\"}],[\"$\",\"meta\",\"7\",{\"property\":\"og:image\",\"content\":\"http://localhost:3000/readme/banner.jpeg\"}],[\"$\",\"meta\",\"8\",{\"property\":\"og:image:width\",\"content\":\"1536\"}],[\"$\",\"meta\",\"9\",{\"property\":\"og:image:height\",\"content\":\"1024\"}],[\"$\",\"meta\",\"10\",{\"property\":\"og:image:alt\",\"content\":\"AgentOS mission-control interface\"}],[\"$\",\"meta\",\"11\",{\"property\":\"og:type\",\"content\":\"website\"}],[\"$\",\"meta\",\"12\",{\"name\":\"twitter:card\",\"content\":\"summary_large_image\"}],[\"$\",\"meta\",\"13\",{\"name\":\"twitter:title\",\"content\":\"AgentOS | OpenClaw Mission Control\"}],[\"$\",\"meta\",\"14\",{\"name\":\"twitter:description\",\"content\":\"Human Control Layer for AI Agents and Companies | Built on OpenClaw.\"}],[\"$\",\"meta\",\"15\",{\"name\":\"twitter:image\",\"content\":\"http://localhost:3000/readme/banner.jpeg\"}],[\"$\",\"link\",\"16\",{\"rel\":\"shortcut icon\",\"href\":\"/favicon.ico\"}],[\"$\",\"link\",\"17\",{\"rel\":\"icon\",\"href\":\"/favicon.ico\",\"sizes\":\"any\"}],[\"$\",\"link\",\"18\",{\"rel\":\"icon\",\"href\":\"/favicon-16x16.png\",\"sizes\":\"16x16\",\"type\":\"image/png\"}],[\"$\",\"link\",\"19\",{\"rel\":\"icon\",\"href\":\"/favicon-32x32.png\",\"sizes\":\"32x32\",\"type\":\"image/png\"}],[\"$\",\"link\",\"20\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-touch-icon.png\",\"sizes\":\"180x180\",\"type\":\"image/png\"}],[\"$\",\"$Ld\",\"21\",{}]]\n"])</script></body></html>
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
2
|
-
@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-right:23px;font-size:24px;font-weight:500;vertical-align:top">500</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">Internal Server Error.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-032b5b42e067a790.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[4001,[],\"\"]\n3:I[1493,[],\"\"]\n4:I[2212,[],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[2212,[],\"ViewportBoundary\"]\n9:I[2212,[],\"MetadataBoundary\"]\nb:I[6163,[],\"\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"
|
|
1
|
+
<!DOCTYPE html><!--VOlzZmzuIhPpxC4007UHA--><html id="__next_error__"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-032b5b42e067a790.js"/><script src="/_next/static/chunks/474f1956-ebf51c0dd00ff236.js" async=""></script><script src="/_next/static/chunks/26-8f7c2b7e8773b4cb.js" async=""></script><script src="/_next/static/chunks/main-app-9229332086036e25.js" async=""></script><title>500: Internal Server Error.</title><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div hidden=""><!--$--><!--/$--></div><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="line-height:48px"><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}
|
|
2
|
+
@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-right:23px;font-size:24px;font-weight:500;vertical-align:top">500</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:28px">Internal Server Error.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-032b5b42e067a790.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[4001,[],\"\"]\n3:I[1493,[],\"\"]\n4:I[2212,[],\"OutletBoundary\"]\n5:\"$Sreact.suspense\"\n7:I[2212,[],\"ViewportBoundary\"]\n9:I[2212,[],\"MetadataBoundary\"]\nb:I[6163,[],\"\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"VOlzZmzuIhPpxC4007UHA\",\"c\":[\"\",\"_global-error\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"_global-error\",{\"children\":[\"__PAGE__\",{}]}]}],[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"main\",null,{\"className\":\"flex min-h-screen items-center justify-center bg-[#050816] px-6 text-white\",\"children\":[\"$\",\"div\",null,{\"className\":\"rounded-[24px] border border-white/10 bg-white/[0.03] px-8 py-10 text-center shadow-[0_24px_80px_rgba(0,0,0,0.35)] backdrop-blur-xl\",\"children\":[[\"$\",\"p\",null,{\"className\":\"text-[11px] uppercase tracking-[0.32em] text-slate-500\",\"children\":\"OpenClaw\"}],[\"$\",\"h1\",null,{\"className\":\"mt-3 font-display text-3xl\",\"children\":\"Page not found\"}],[\"$\",\"p\",null,{\"className\":\"mt-3 max-w-md text-sm leading-6 text-slate-400\",\"children\":\"The requested mission-control route does not exist in this workspace.\"}]]}]}],[]],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[\"$\",\"html\",null,{\"id\":\"__next_error__\",\"children\":[[\"$\",\"head\",null,{\"children\":[\"$\",\"title\",null,{\"children\":\"500: Internal Server Error.\"}]}],[\"$\",\"body\",null,{\"children\":[\"$\",\"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,{\"style\":{\"lineHeight\":\"48px\"},\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}\\n@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\",\"paddingRight\":23,\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\"},\"children\":\"500\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"28px\"},\"children\":\"Internal Server Error.\"}]}]]}]}]}]]}],null,[\"$\",\"$L4\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@6\"}]}]]}],{},null,false,false]},null,false,false]},null,false,false],[\"$\",\"$1\",\"h\",{\"children\":[null,[\"$\",\"$L7\",null,{\"children\":\"$L8\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L9\",null,{\"children\":[\"$\",\"$5\",null,{\"name\":\"Next.Metadata\",\"children\":\"$La\"}]}]}],null]}],false]],\"m\":\"$undefined\",\"G\":[\"$b\",[]],\"S\":true}\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n"])</script><script>self.__next_f.push([1,"6:null\na:[]\n"])</script></body></html>
|
package/package.json
CHANGED
/package/bundle/.next/static/{OapfD2WRodYTsq1oFnTgh → VOlzZmzuIhPpxC4007UHA}/_buildManifest.js
RENAMED
|
File without changes
|
/package/bundle/.next/static/{OapfD2WRodYTsq1oFnTgh → VOlzZmzuIhPpxC4007UHA}/_ssgManifest.js
RENAMED
|
File without changes
|