@agent-spaces/server 0.3.63 → 0.3.64
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/dist/adapters/claude-code-runtime/message-format.js +1 -1
- package/dist/adapters/git.js +161 -57
- package/dist/agents/agent-designer.js +66 -12
- package/dist/agents/issue-task-controller.js +1 -1
- package/dist/app.js +50 -1
- package/dist/package.json +1 -1
- package/dist/routes/agent-commands.js +72 -0
- package/dist/routes/agent-sse.js +6 -0
- package/dist/routes/agent.js +15 -1
- package/dist/routes/database.js +345 -0
- package/dist/routes/git.js +52 -1
- package/dist/routes/kanban.js +39 -0
- package/dist/services/agent-commands.js +168 -0
- package/dist/services/builtin-tools/command-tools.js +117 -0
- package/dist/services/builtin-tools/database-tools.js +578 -0
- package/dist/services/builtin-tools/index.js +5 -0
- package/dist/services/builtin-tools/input-helpers.js +26 -0
- package/dist/services/builtin-tools/issue-tools.js +209 -0
- package/dist/services/builtin-tools/kanban-tools.js +277 -0
- package/dist/services/database-vector.js +244 -0
- package/dist/services/kanban.js +50 -0
- package/dist/storage/database-store.js +365 -0
- package/dist/storage/kanban-store.js +142 -0
- package/dist/web/404.html +1 -1
- package/dist/web/__next.__PAGE__.txt +4 -4
- package/dist/web/__next._full.txt +24 -29
- package/dist/web/__next._head.txt +4 -4
- package/dist/web/__next._index.txt +14 -14
- package/dist/web/__next._tree.txt +3 -8
- package/dist/web/_next/static/chunks/0-9194nbxy_6d.js +1 -0
- package/dist/web/_next/static/chunks/{13~y-b.b9rrw4.js → 01~quun6sefgl.js} +1 -1
- package/dist/web/_next/static/chunks/04a4vsq2wknm4.js +1 -0
- package/dist/web/_next/static/chunks/04dg4l4hv11q2.js +3 -0
- package/dist/web/_next/static/chunks/04fxddw-y20~-.js +7 -0
- package/dist/web/_next/static/chunks/04w7~5ooz_pwm.js +1 -0
- package/dist/web/_next/static/chunks/05oc21sj24wtq.js +1 -0
- package/dist/web/_next/static/chunks/{0-oog4zg4_m~m.css → 062f9zqctzg.b.css} +0 -3
- package/dist/web/_next/static/chunks/{014x2qbuiszni.js → 08ckpwmmwlors.js} +3 -3
- package/dist/web/_next/static/chunks/08k~meqbd8d6v.js +1 -0
- package/dist/web/_next/static/chunks/099h96wjsdb25.js +2 -0
- package/dist/web/_next/static/chunks/09h23logvq65m.js +1 -0
- package/dist/web/_next/static/chunks/0_mvduwjsm35w.js +1 -0
- package/dist/web/_next/static/chunks/0a5y-vhf4i5id.js +3 -0
- package/dist/web/_next/static/chunks/0ake2f3x2uan4.js +24 -0
- package/dist/web/_next/static/chunks/0ck8dw_9-1cdx.js +1 -0
- package/dist/web/_next/static/chunks/0f7cb9li~3jra.js +67 -0
- package/dist/web/_next/static/chunks/0fttswpzu69qx.js +1 -0
- package/dist/web/_next/static/chunks/0ghs9on7wodrm.js +1 -0
- package/dist/web/_next/static/chunks/0ghx3j_.-gdyd.js +1 -0
- package/dist/web/_next/static/chunks/0h9cu-k6z5o08.js +1 -0
- package/dist/web/_next/static/chunks/{02c22g~xd-y30.js → 0iuf30t0rjsjv.js} +2 -2
- package/dist/web/_next/static/chunks/{046me66nilkff.js → 0jb4~3qqkw2ps.js} +1 -1
- package/dist/web/_next/static/chunks/0k4zdm72k_bfy.js +1 -0
- package/dist/web/_next/static/chunks/{0kof5qdg8c2-k.js → 0n6_4so_afuwk.js} +37 -37
- package/dist/web/_next/static/chunks/0nb8.iteznuvx.js +1 -0
- package/dist/web/_next/static/chunks/0os58q93stt7j.js +3 -0
- package/dist/web/_next/static/chunks/0s9lmk8iauou3.js +1 -0
- package/dist/web/_next/static/chunks/0sp_zbx~w0am7.js +1 -0
- package/dist/web/_next/static/chunks/0tel~zsv4z8l_.js +1 -0
- package/dist/web/_next/static/chunks/0twamv4wr_dbv.js +1 -0
- package/dist/web/_next/static/chunks/{0_udc.6.tueey.js → 0uhol5wafdbl~.js} +1 -1
- package/dist/web/_next/static/chunks/0v3a_x4vt42kx.js +5 -0
- package/dist/web/_next/static/chunks/{002-dxhags4dj.js → 0v6hte2z-32ca.js} +2 -2
- package/dist/web/_next/static/chunks/0v7q4mys.mnm..css +1 -0
- package/dist/web/_next/static/chunks/{0ogpc3f3keopc.js → 0vbqaynjq8ga..js} +2 -2
- package/dist/web/_next/static/chunks/0xbaakj0dfc0..js +1 -0
- package/dist/web/_next/static/chunks/0z~vqzbm_q371.js +1 -0
- package/dist/web/_next/static/chunks/0~3xm80~j9ddg.js +1 -0
- package/dist/web/_next/static/chunks/{0y09i51u6ixq5.js → 10l-9myrdo3x9.js} +1 -1
- package/dist/web/_next/static/chunks/12jm4gwmvq-0q.js +90 -0
- package/dist/web/_next/static/chunks/{0aa6bcdmtpekn.js → 1442stwa0gbxe.js} +1 -1
- package/dist/web/_next/static/chunks/14s37n6h0_q3x.js +16 -0
- package/dist/web/_next/static/chunks/161ik5kfyuwtd.js +1 -0
- package/dist/web/_next/static/chunks/17k~zbv0_4rep.js +1 -0
- package/dist/web/_not-found/__next._full.txt +23 -23
- package/dist/web/_not-found/__next._head.txt +4 -4
- package/dist/web/_not-found/__next._index.txt +14 -14
- package/dist/web/_not-found/__next._not-found.__PAGE__.txt +2 -2
- package/dist/web/_not-found/__next._not-found.txt +3 -3
- package/dist/web/_not-found/__next._tree.txt +3 -3
- package/dist/web/_not-found.html +1 -1
- package/dist/web/_not-found.txt +23 -23
- package/dist/web/index.html +1 -1
- package/dist/web/index.txt +24 -29
- package/dist/web/login/__next._full.txt +32 -36
- package/dist/web/login/__next._head.txt +4 -4
- package/dist/web/login/__next._index.txt +14 -14
- package/dist/web/login/__next._tree.txt +3 -8
- package/dist/web/login/__next.login.__PAGE__.txt +4 -4
- package/dist/web/login/__next.login.txt +3 -3
- package/dist/web/login.html +1 -1
- package/dist/web/login.txt +32 -36
- package/dist/web/settings/__next._full.txt +26 -31
- package/dist/web/settings/__next._head.txt +4 -4
- package/dist/web/settings/__next._index.txt +14 -14
- package/dist/web/settings/__next._tree.txt +3 -8
- package/dist/web/settings/__next.settings.__PAGE__.txt +4 -4
- package/dist/web/settings/__next.settings.txt +5 -5
- package/dist/web/settings/agents/__next._full.txt +26 -31
- package/dist/web/settings/agents/__next._head.txt +4 -4
- package/dist/web/settings/agents/__next._index.txt +14 -14
- package/dist/web/settings/agents/__next._tree.txt +3 -8
- package/dist/web/settings/agents/__next.settings.agents.__PAGE__.txt +4 -4
- package/dist/web/settings/agents/__next.settings.agents.txt +3 -3
- package/dist/web/settings/agents/__next.settings.txt +5 -5
- package/dist/web/settings/agents.html +1 -1
- package/dist/web/settings/agents.txt +26 -31
- package/dist/web/settings/mcps/__next._full.txt +26 -31
- package/dist/web/settings/mcps/__next._head.txt +4 -4
- package/dist/web/settings/mcps/__next._index.txt +14 -14
- package/dist/web/settings/mcps/__next._tree.txt +3 -8
- package/dist/web/settings/mcps/__next.settings.mcps.__PAGE__.txt +4 -4
- package/dist/web/settings/mcps/__next.settings.mcps.txt +3 -3
- package/dist/web/settings/mcps/__next.settings.txt +5 -5
- package/dist/web/settings/mcps.html +1 -1
- package/dist/web/settings/mcps.txt +26 -31
- package/dist/web/settings/models/__next._full.txt +26 -31
- package/dist/web/settings/models/__next._head.txt +4 -4
- package/dist/web/settings/models/__next._index.txt +14 -14
- package/dist/web/settings/models/__next._tree.txt +3 -8
- package/dist/web/settings/models/__next.settings.models.__PAGE__.txt +4 -4
- package/dist/web/settings/models/__next.settings.models.txt +3 -3
- package/dist/web/settings/models/__next.settings.txt +5 -5
- package/dist/web/settings/models.html +1 -1
- package/dist/web/settings/models.txt +26 -31
- package/dist/web/settings/output-styles/__next._full.txt +26 -31
- package/dist/web/settings/output-styles/__next._head.txt +4 -4
- package/dist/web/settings/output-styles/__next._index.txt +14 -14
- package/dist/web/settings/output-styles/__next._tree.txt +3 -8
- package/dist/web/settings/output-styles/__next.settings.output-styles.__PAGE__.txt +4 -4
- package/dist/web/settings/output-styles/__next.settings.output-styles.txt +3 -3
- package/dist/web/settings/output-styles/__next.settings.txt +5 -5
- package/dist/web/settings/output-styles.html +1 -1
- package/dist/web/settings/output-styles.txt +26 -31
- package/dist/web/settings/prompts/__next._full.txt +26 -31
- package/dist/web/settings/prompts/__next._head.txt +4 -4
- package/dist/web/settings/prompts/__next._index.txt +14 -14
- package/dist/web/settings/prompts/__next._tree.txt +3 -8
- package/dist/web/settings/prompts/__next.settings.prompts.__PAGE__.txt +4 -4
- package/dist/web/settings/prompts/__next.settings.prompts.txt +3 -3
- package/dist/web/settings/prompts/__next.settings.txt +5 -5
- package/dist/web/settings/prompts.html +1 -1
- package/dist/web/settings/prompts.txt +26 -31
- package/dist/web/settings/providers/__next._full.txt +26 -31
- package/dist/web/settings/providers/__next._head.txt +4 -4
- package/dist/web/settings/providers/__next._index.txt +14 -14
- package/dist/web/settings/providers/__next._tree.txt +3 -8
- package/dist/web/settings/providers/__next.settings.providers.__PAGE__.txt +4 -4
- package/dist/web/settings/providers/__next.settings.providers.txt +3 -3
- package/dist/web/settings/providers/__next.settings.txt +5 -5
- package/dist/web/settings/providers.html +1 -1
- package/dist/web/settings/providers.txt +26 -31
- package/dist/web/settings/skills/__next._full.txt +26 -31
- package/dist/web/settings/skills/__next._head.txt +4 -4
- package/dist/web/settings/skills/__next._index.txt +14 -14
- package/dist/web/settings/skills/__next._tree.txt +3 -8
- package/dist/web/settings/skills/__next.settings.skills.__PAGE__.txt +4 -4
- package/dist/web/settings/skills/__next.settings.skills.txt +3 -3
- package/dist/web/settings/skills/__next.settings.txt +5 -5
- package/dist/web/settings/skills.html +1 -1
- package/dist/web/settings/skills.txt +26 -31
- package/dist/web/settings/tools/__next._full.txt +38 -0
- package/dist/web/settings/tools/__next._head.txt +6 -0
- package/dist/web/settings/tools/__next._index.txt +15 -0
- package/dist/web/settings/tools/__next._tree.txt +3 -0
- package/dist/web/settings/tools/__next.settings.tools.__PAGE__.txt +9 -0
- package/dist/web/settings/tools/__next.settings.tools.txt +5 -0
- package/dist/web/settings/tools/__next.settings.txt +7 -0
- package/dist/web/settings/tools.html +1 -0
- package/dist/web/settings/tools.txt +38 -0
- package/dist/web/settings.html +1 -1
- package/dist/web/settings.txt +26 -31
- package/dist/web/workflows/__next._full.txt +34 -38
- package/dist/web/workflows/__next._head.txt +4 -4
- package/dist/web/workflows/__next._index.txt +14 -14
- package/dist/web/workflows/__next._tree.txt +3 -8
- package/dist/web/workflows/__next.workflows.__PAGE__.txt +4 -4
- package/dist/web/workflows/__next.workflows.txt +3 -3
- package/dist/web/workflows.html +1 -1
- package/dist/web/workflows.txt +34 -38
- package/dist/web/workspace/_/__next._full.txt +25 -29
- package/dist/web/workspace/_/__next._head.txt +4 -4
- package/dist/web/workspace/_/__next._index.txt +14 -14
- package/dist/web/workspace/_/__next._tree.txt +4 -8
- package/dist/web/workspace/_/__next.workspace.$d$id.__PAGE__.txt +3 -3
- package/dist/web/workspace/_/__next.workspace.$d$id.txt +3 -3
- package/dist/web/workspace/_/__next.workspace.txt +3 -3
- package/dist/web/workspace/_.html +1 -1
- package/dist/web/workspace/_.txt +25 -29
- package/dist/web/workspaces/__next._full.txt +24 -29
- package/dist/web/workspaces/__next._head.txt +4 -4
- package/dist/web/workspaces/__next._index.txt +14 -14
- package/dist/web/workspaces/__next._tree.txt +3 -8
- package/dist/web/workspaces/__next.workspaces.__PAGE__.txt +4 -4
- package/dist/web/workspaces/__next.workspaces.txt +3 -3
- package/dist/web/workspaces.html +1 -1
- package/dist/web/workspaces.txt +24 -29
- package/dist/ws/agent-prompt.js +45 -8
- package/dist/ws/agent-runner.js +6 -4
- package/package.json +11 -10
- package/dist/web/_next/static/chunks/0-1bfvfwifh-m.js +0 -1
- package/dist/web/_next/static/chunks/04v-pqqs-2lvp.css +0 -1
- package/dist/web/_next/static/chunks/06w~.izyfylap.js +0 -1
- package/dist/web/_next/static/chunks/09t62a89~jesc.js +0 -3
- package/dist/web/_next/static/chunks/09y_3krccdd~u.js +0 -1
- package/dist/web/_next/static/chunks/0_e~hmntdfop9.js +0 -1
- package/dist/web/_next/static/chunks/0cke33d38fnby.js +0 -90
- package/dist/web/_next/static/chunks/0cyq~8xb~r5fc.js +0 -1
- package/dist/web/_next/static/chunks/0fxa1edqr7dve.js +0 -1
- package/dist/web/_next/static/chunks/0hra80eyuu37u.js +0 -1
- package/dist/web/_next/static/chunks/0ie7y4k2ncvnn.js +0 -1
- package/dist/web/_next/static/chunks/0igc~uli58ncw.js +0 -2
- package/dist/web/_next/static/chunks/0msb2mi3hiu5_.js +0 -67
- package/dist/web/_next/static/chunks/0p1n8bvfnpl41.js +0 -1
- package/dist/web/_next/static/chunks/0s_dva~eh2yhi.js +0 -3
- package/dist/web/_next/static/chunks/0typj55ox8d5i.js +0 -1
- package/dist/web/_next/static/chunks/0w2p4ldi2aymp.js +0 -1
- package/dist/web/_next/static/chunks/0zc0xgp5ourcn.js +0 -1
- package/dist/web/_next/static/chunks/0zmhdridea1s5.js +0 -90
- package/dist/web/_next/static/chunks/10.alq.6stmld.js +0 -1
- package/dist/web/_next/static/chunks/11b3zgk1etlkw.js +0 -7
- package/dist/web/_next/static/chunks/11qp8r5dotf7d.js +0 -1
- package/dist/web/_next/static/chunks/12mxlicp247c8.js +0 -1
- package/dist/web/_next/static/chunks/135w27dd8c19s.js +0 -5
- package/dist/web/_next/static/chunks/176dc-dtokxxi.js +0 -16
- package/dist/web/_next/static/chunks/17g-0pqre.anw.js +0 -1
- package/dist/web/_next/static/media/0a7740363b4d4863-s.1110aazvokzp..woff2 +0 -0
- package/dist/web/_next/static/media/0da9c7f357bd9d4d-s.0ek5sshv8wk3m.woff2 +0 -0
- package/dist/web/_next/static/media/1b99372b3eaef0c8-s.p.0gx2haw2tmll8.woff2 +0 -0
- package/dist/web/_next/static/media/41e95f694c5c4549-s.0r1jrq7neqdsq.woff2 +0 -0
- package/dist/web/_next/static/media/5c285b27cdda1fe8-s.p.0yo6-5yoeeudq.woff2 +0 -0
- package/dist/web/_next/static/media/5f9d24ebef5d5292-s.0esuu2f5si~v8.woff2 +0 -0
- package/dist/web/_next/static/media/6c55a692938ebbbc-s.0g6rbszwfgn9y.woff2 +0 -0
- package/dist/web/_next/static/media/8e6fa89aa22d24ec-s.p.0uvzar8hswo3p.woff2 +0 -0
- package/dist/web/_next/static/media/a218039a3287bcfd-s.p.17-1enzs_j91b.woff2 +0 -0
- package/dist/web/_next/static/media/b2ea385cb5ae8625-s.0kjod.kaq1k69.woff2 +0 -0
- package/dist/web/_next/static/media/bdc7e24a509eb931-s.0apt5mko2.qn3.woff2 +0 -0
- package/dist/web/_next/static/media/c3cb240f9c892514-s.163v2i5cux7-c.woff2 +0 -0
- package/dist/web/_next/static/media/e2334d715941921e-s.p.12skym0rqknxy.woff2 +0 -0
- /package/dist/web/_next/static/{OoXAsPtrUWjC1l898FSvI → e8w3vd9Eov_LDYWj_0zsE}/_buildManifest.js +0 -0
- /package/dist/web/_next/static/{OoXAsPtrUWjC1l898FSvI → e8w3vd9Eov_LDYWj_0zsE}/_clientMiddlewareManifest.js +0 -0
- /package/dist/web/_next/static/{OoXAsPtrUWjC1l898FSvI → e8w3vd9Eov_LDYWj_0zsE}/_ssgManifest.js +0 -0
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
import { join } from 'node:path';
|
|
2
|
+
import { DatabaseSync } from 'node:sqlite';
|
|
3
|
+
import { v4 as uuid } from 'uuid';
|
|
4
|
+
import { getDataDir, ensureDir } from './json-store.js';
|
|
5
|
+
let db = null;
|
|
6
|
+
function openDb() {
|
|
7
|
+
if (db)
|
|
8
|
+
return db;
|
|
9
|
+
const dir = join(getDataDir(), 'kanban');
|
|
10
|
+
ensureDir(dir);
|
|
11
|
+
db = new DatabaseSync(join(dir, 'kanban.sqlite'));
|
|
12
|
+
db.exec(`
|
|
13
|
+
CREATE TABLE IF NOT EXISTS kanban_boards (
|
|
14
|
+
id TEXT PRIMARY KEY,
|
|
15
|
+
workspace_id TEXT NOT NULL,
|
|
16
|
+
title TEXT NOT NULL DEFAULT 'Kanban Board',
|
|
17
|
+
layout_mode TEXT NOT NULL DEFAULT 'horizontal',
|
|
18
|
+
created_at INTEGER NOT NULL,
|
|
19
|
+
updated_at INTEGER NOT NULL
|
|
20
|
+
);
|
|
21
|
+
CREATE INDEX IF NOT EXISTS idx_kanban_boards_workspace ON kanban_boards(workspace_id);
|
|
22
|
+
CREATE TABLE IF NOT EXISTS kanban_columns (
|
|
23
|
+
id TEXT PRIMARY KEY,
|
|
24
|
+
board_id TEXT NOT NULL,
|
|
25
|
+
title TEXT NOT NULL,
|
|
26
|
+
color TEXT NOT NULL DEFAULT 'sky',
|
|
27
|
+
sort_order INTEGER NOT NULL DEFAULT 0,
|
|
28
|
+
FOREIGN KEY (board_id) REFERENCES kanban_boards(id) ON DELETE CASCADE
|
|
29
|
+
);
|
|
30
|
+
CREATE INDEX IF NOT EXISTS idx_kanban_columns_board ON kanban_columns(board_id);
|
|
31
|
+
CREATE TABLE IF NOT EXISTS kanban_tasks (
|
|
32
|
+
id TEXT PRIMARY KEY,
|
|
33
|
+
board_id TEXT NOT NULL,
|
|
34
|
+
column_id TEXT NOT NULL,
|
|
35
|
+
title TEXT NOT NULL,
|
|
36
|
+
description TEXT NOT NULL DEFAULT '',
|
|
37
|
+
priority TEXT NOT NULL DEFAULT 'medium',
|
|
38
|
+
sort_order INTEGER NOT NULL DEFAULT 0,
|
|
39
|
+
due_date TEXT,
|
|
40
|
+
created_at INTEGER NOT NULL,
|
|
41
|
+
FOREIGN KEY (board_id) REFERENCES kanban_boards(id) ON DELETE CASCADE
|
|
42
|
+
);
|
|
43
|
+
CREATE INDEX IF NOT EXISTS idx_kanban_tasks_board ON kanban_tasks(board_id);
|
|
44
|
+
CREATE INDEX IF NOT EXISTS idx_kanban_tasks_column ON kanban_tasks(column_id);
|
|
45
|
+
`);
|
|
46
|
+
return db;
|
|
47
|
+
}
|
|
48
|
+
export function getBoard(workspaceId) {
|
|
49
|
+
const database = openDb();
|
|
50
|
+
const row = database.prepare('SELECT * FROM kanban_boards WHERE workspace_id = ? ORDER BY updated_at DESC').get(workspaceId);
|
|
51
|
+
if (!row)
|
|
52
|
+
return null;
|
|
53
|
+
return hydrateBoard(workspaceId, row);
|
|
54
|
+
}
|
|
55
|
+
export function listBoards(workspaceId) {
|
|
56
|
+
const database = openDb();
|
|
57
|
+
const rows = database.prepare('SELECT * FROM kanban_boards WHERE workspace_id = ? ORDER BY updated_at DESC').all(workspaceId);
|
|
58
|
+
return rows.map((row) => hydrateBoard(workspaceId, row));
|
|
59
|
+
}
|
|
60
|
+
function hydrateBoard(workspaceId, row) {
|
|
61
|
+
const database = openDb();
|
|
62
|
+
const boardId = row.id;
|
|
63
|
+
const columns = database.prepare('SELECT * FROM kanban_columns WHERE board_id = ? ORDER BY sort_order ASC').all(boardId).map(r => ({
|
|
64
|
+
id: r.id,
|
|
65
|
+
title: r.title,
|
|
66
|
+
color: r.color,
|
|
67
|
+
order: r.sort_order,
|
|
68
|
+
}));
|
|
69
|
+
const tasks = database.prepare('SELECT * FROM kanban_tasks WHERE board_id = ? ORDER BY sort_order ASC').all(boardId).map(r => ({
|
|
70
|
+
id: r.id,
|
|
71
|
+
title: r.title,
|
|
72
|
+
description: r.description,
|
|
73
|
+
priority: r.priority,
|
|
74
|
+
columnId: r.column_id,
|
|
75
|
+
order: r.sort_order,
|
|
76
|
+
createdAt: r.created_at,
|
|
77
|
+
dueDate: r.due_date || undefined,
|
|
78
|
+
}));
|
|
79
|
+
return {
|
|
80
|
+
id: boardId,
|
|
81
|
+
workspaceId,
|
|
82
|
+
title: row.title,
|
|
83
|
+
layoutMode: row.layout_mode || 'horizontal',
|
|
84
|
+
columns,
|
|
85
|
+
tasks,
|
|
86
|
+
createdAt: row.created_at,
|
|
87
|
+
updatedAt: row.updated_at,
|
|
88
|
+
};
|
|
89
|
+
}
|
|
90
|
+
export function createBoard(workspaceId, title) {
|
|
91
|
+
const database = openDb();
|
|
92
|
+
const id = uuid();
|
|
93
|
+
const now = Date.now();
|
|
94
|
+
database.prepare('INSERT INTO kanban_boards (id, workspace_id, title, layout_mode, created_at, updated_at) VALUES (?, ?, ?, ?, ?, ?)').run(id, workspaceId, title || 'Kanban Board', 'horizontal', now, now);
|
|
95
|
+
return { id, workspaceId, title: title || 'Kanban Board', layoutMode: 'horizontal', columns: [], tasks: [], createdAt: now, updatedAt: now };
|
|
96
|
+
}
|
|
97
|
+
export function updateBoard(workspaceId, updates, boardId) {
|
|
98
|
+
let board = boardId ? listBoards(workspaceId).find((item) => item.id === boardId) ?? null : getBoard(workspaceId);
|
|
99
|
+
if (!board)
|
|
100
|
+
return null;
|
|
101
|
+
const database = openDb();
|
|
102
|
+
const now = Date.now();
|
|
103
|
+
if (updates.title !== undefined) {
|
|
104
|
+
database.prepare('UPDATE kanban_boards SET title = ?, updated_at = ? WHERE workspace_id = ? AND id = ?').run(updates.title, now, workspaceId, board.id);
|
|
105
|
+
}
|
|
106
|
+
if (updates.layoutMode !== undefined) {
|
|
107
|
+
database.prepare('UPDATE kanban_boards SET layout_mode = ?, updated_at = ? WHERE workspace_id = ? AND id = ?').run(updates.layoutMode, now, workspaceId, board.id);
|
|
108
|
+
}
|
|
109
|
+
return (boardId ? listBoards(workspaceId).find((item) => item.id === board.id) : getBoard(workspaceId)) ?? null;
|
|
110
|
+
}
|
|
111
|
+
export function deleteBoard(workspaceId, boardId) {
|
|
112
|
+
const database = openDb();
|
|
113
|
+
const board = boardId
|
|
114
|
+
? database.prepare('SELECT * FROM kanban_boards WHERE workspace_id = ? AND id = ?').get(workspaceId, boardId)
|
|
115
|
+
: database.prepare('SELECT * FROM kanban_boards WHERE workspace_id = ?').get(workspaceId);
|
|
116
|
+
if (!board)
|
|
117
|
+
return false;
|
|
118
|
+
const id = board.id;
|
|
119
|
+
database.prepare('DELETE FROM kanban_tasks WHERE board_id = ?').run(id);
|
|
120
|
+
database.prepare('DELETE FROM kanban_columns WHERE board_id = ?').run(id);
|
|
121
|
+
database.prepare('DELETE FROM kanban_boards WHERE id = ? AND workspace_id = ?').run(id, workspaceId);
|
|
122
|
+
return true;
|
|
123
|
+
}
|
|
124
|
+
export function saveColumns(boardId, columns) {
|
|
125
|
+
const database = openDb();
|
|
126
|
+
database.prepare('DELETE FROM kanban_columns WHERE board_id = ?').run(boardId);
|
|
127
|
+
const stmt = database.prepare('INSERT INTO kanban_columns (id, board_id, title, color, sort_order) VALUES (?, ?, ?, ?, ?)');
|
|
128
|
+
for (const col of columns) {
|
|
129
|
+
stmt.run(col.id, boardId, col.title, col.color, col.order);
|
|
130
|
+
}
|
|
131
|
+
database.prepare('UPDATE kanban_boards SET updated_at = ? WHERE id = ?').run(Date.now(), boardId);
|
|
132
|
+
}
|
|
133
|
+
export function saveTasks(boardId, tasks) {
|
|
134
|
+
const database = openDb();
|
|
135
|
+
database.prepare('DELETE FROM kanban_tasks WHERE board_id = ?').run(boardId);
|
|
136
|
+
const stmt = database.prepare('INSERT INTO kanban_tasks (id, board_id, column_id, title, description, priority, sort_order, due_date, created_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)');
|
|
137
|
+
for (const task of tasks) {
|
|
138
|
+
stmt.run(task.id, boardId, task.columnId, task.title, task.description, task.priority, task.order, task.dueDate || null, task.createdAt);
|
|
139
|
+
}
|
|
140
|
+
database.prepare('UPDATE kanban_boards SET updated_at = ? WHERE id = ?').run(Date.now(), boardId);
|
|
141
|
+
}
|
|
142
|
+
//# sourceMappingURL=kanban-store.js.map
|
package/dist/web/404.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="" class="dm_sans_81a33cc5-module___RQdfW__variable outfit_8334a424-module__TwcMYa__variable poppins_37c4598a-module__JRG3Wq__variable h-[var(--app-content-height)] overflow-hidden antialiased"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover"/><link rel="stylesheet" href="/_next/static/chunks/0-oog4zg4_m~m.css" data-precedence="next"/><link rel="stylesheet" href="/_next/static/chunks/04v-pqqs-2lvp.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/02mf61htij8g0.js"/><script src="/_next/static/chunks/031c~uxc3ie87.js" async=""></script><script src="/_next/static/chunks/0h18ej5yf974e.js" async=""></script><script src="/_next/static/chunks/0h256h-tu4e0r.js" async=""></script><script src="/_next/static/chunks/0np.d~hc1-pmh.js" async=""></script><script src="/_next/static/chunks/turbopack-0ndm2zc_pdptk.js" async=""></script><script src="/_next/static/chunks/0ppr271hz0xoq.js" async=""></script><script src="/_next/static/chunks/0ie7y4k2ncvnn.js" async=""></script><script src="/_next/static/chunks/0~u.5r3-t7179.js" async=""></script><script src="/_next/static/chunks/002-dxhags4dj.js" async=""></script><script src="/_next/static/chunks/0fxa1edqr7dve.js" async=""></script><script src="/_next/static/chunks/0hra80eyuu37u.js" async=""></script><script src="/_next/static/chunks/0_vi1a~g4wx46.js" async=""></script><script src="/_next/static/chunks/0w2p4ldi2aymp.js" async=""></script><script src="/_next/static/chunks/0.n~yfwf4~6w-.js" async=""></script><script src="/_next/static/chunks/002_j970b9gdx.js" async=""></script><script src="/_next/static/chunks/11k-.49r~1mfm.js" async=""></script><script src="/_next/static/chunks/0-1bfvfwifh-m.js" async=""></script><script src="/_next/static/chunks/09y_3krccdd~u.js" async=""></script><script src="/_next/static/chunks/1250wo~-5dgyx.js" async=""></script><script src="/_next/static/chunks/0igc~uli58ncw.js" async=""></script><script src="/_next/static/chunks/135w27dd8c19s.js" async=""></script><script src="/_next/static/chunks/046me66nilkff.js" async=""></script><script src="/_next/static/chunks/06w~.izyfylap.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>Agent Spaces</title><meta name="description" content="Multi-agent collaborative coding workspace"/><link rel="icon" href="/favicon.ico?favicon.0~ekuj.zhggpa.ico" sizes="32x32" type="image/x-icon"/><link rel="icon" href="/favicon.ico"/><link rel="apple-touch-icon" href="/apple-touch-icon.png"/><script src="/_next/static/chunks/03~yq9q893hmn.js" noModule=""></script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script></head><body class="h-[var(--app-content-height)] overflow-hidden font-sans"><div hidden=""><!--$--><!--/$--></div><script src="/_next/static/chunks/02mf61htij8g0.js" id="_R_" async=""></script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[701341,[\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/002-dxhags4dj.js\",\"/_next/static/chunks/0fxa1edqr7dve.js\",\"/_next/static/chunks/0hra80eyuu37u.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/0w2p4ldi2aymp.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/002_j970b9gdx.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"/_next/static/chunks/09y_3krccdd~u.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0igc~uli58ncw.js\",\"/_next/static/chunks/135w27dd8c19s.js\",\"/_next/static/chunks/046me66nilkff.js\",\"/_next/static/chunks/06w~.izyfylap.js\"],\"ZoomWrapper\"]\n3:I[950396,[\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/002-dxhags4dj.js\",\"/_next/static/chunks/0fxa1edqr7dve.js\",\"/_next/static/chunks/0hra80eyuu37u.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/0w2p4ldi2aymp.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/002_j970b9gdx.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"/_next/static/chunks/09y_3krccdd~u.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0igc~uli58ncw.js\",\"/_next/static/chunks/135w27dd8c19s.js\",\"/_next/static/chunks/046me66nilkff.js\",\"/_next/static/chunks/06w~.izyfylap.js\"],\"ThemeProvider\"]\n4:I[556106,[\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/002-dxhags4dj.js\",\"/_next/static/chunks/0fxa1edqr7dve.js\",\"/_next/static/chunks/0hra80eyuu37u.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/0w2p4ldi2aymp.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/002_j970b9gdx.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"/_next/static/chunks/09y_3krccdd~u.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0igc~uli58ncw.js\",\"/_next/static/chunks/135w27dd8c19s.js\",\"/_next/static/chunks/046me66nilkff.js\",\"/_next/static/chunks/06w~.izyfylap.js\"],\"LocaleProvider\"]\n5:I[694819,[\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/002-dxhags4dj.js\",\"/_next/static/chunks/0fxa1edqr7dve.js\",\"/_next/static/chunks/0hra80eyuu37u.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/0w2p4ldi2aymp.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/002_j970b9gdx.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"/_next/static/chunks/09y_3krccdd~u.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0igc~uli58ncw.js\",\"/_next/static/chunks/135w27dd8c19s.js\",\"/_next/static/chunks/046me66nilkff.js\",\"/_next/static/chunks/06w~.izyfylap.js\"],\"ViewportInsets\"]\n6:I[177053,[\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/002-dxhags4dj.js\",\"/_next/static/chunks/0fxa1edqr7dve.js\",\"/_next/static/chunks/0hra80eyuu37u.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/0w2p4ldi2aymp.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/002_j970b9gdx.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"/_next/static/chunks/09y_3krccdd~u.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0igc~uli58ncw.js\",\"/_next/static/chunks/135w27dd8c19s.js\",\"/_next/static/chunks/046me66nilkff.js\",\"/_next/static/chunks/06w~.izyfylap.js\"],\"AuthGuard\"]\n7:I[994876,[\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/002-dxhags4dj.js\",\"/_next/static/chunks/0fxa1edqr7dve.js\",\"/_next/static/chunks/0hra80eyuu37u.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/0w2p4ldi2aymp.j"])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>self.__next_f.push([1,"s\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/002_j970b9gdx.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"/_next/static/chunks/09y_3krccdd~u.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0igc~uli58ncw.js\",\"/_next/static/chunks/135w27dd8c19s.js\",\"/_next/static/chunks/046me66nilkff.js\",\"/_next/static/chunks/06w~.izyfylap.js\"],\"AppShell\"]\n8:I[242864,[\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/002-dxhags4dj.js\",\"/_next/static/chunks/0fxa1edqr7dve.js\",\"/_next/static/chunks/0hra80eyuu37u.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/0w2p4ldi2aymp.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/002_j970b9gdx.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"/_next/static/chunks/09y_3krccdd~u.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0igc~uli58ncw.js\",\"/_next/static/chunks/135w27dd8c19s.js\",\"/_next/static/chunks/046me66nilkff.js\",\"/_next/static/chunks/06w~.izyfylap.js\"],\"default\"]\n9:I[46907,[\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/002-dxhags4dj.js\",\"/_next/static/chunks/0fxa1edqr7dve.js\",\"/_next/static/chunks/0hra80eyuu37u.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/0w2p4ldi2aymp.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/002_j970b9gdx.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"/_next/static/chunks/09y_3krccdd~u.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0igc~uli58ncw.js\",\"/_next/static/chunks/135w27dd8c19s.js\",\"/_next/static/chunks/046me66nilkff.js\",\"/_next/static/chunks/06w~.izyfylap.js\"],\"default\"]\na:I[698679,[\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/002-dxhags4dj.js\",\"/_next/static/chunks/0fxa1edqr7dve.js\",\"/_next/static/chunks/0hra80eyuu37u.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/0w2p4ldi2aymp.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/002_j970b9gdx.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"/_next/static/chunks/09y_3krccdd~u.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0igc~uli58ncw.js\",\"/_next/static/chunks/135w27dd8c19s.js\",\"/_next/static/chunks/046me66nilkff.js\",\"/_next/static/chunks/06w~.izyfylap.js\"],\"CommandPalette\"]\nb:I[360112,[\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/002-dxhags4dj.js\",\"/_next/static/chunks/0fxa1edqr7dve.js\",\"/_next/static/chunks/0hra80eyuu37u.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/0w2p4ldi2aymp.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/002_j970b9gdx.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"/_next/static/chunks/09y_3krccdd~u.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0igc~uli58ncw.js\",\"/_next/static/chunks/135w27dd8c19s.js\",\"/_next/static/chunks/046me66nilkff.js\",\"/_next/static/chunks/06w~.izyfylap.js\"],\"Toaster\"]\nc:I[984642,[\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/002-dxhags4dj.js\",\"/_next/static/chunks/0fxa1edqr7dve.js\",\"/_next/static/chunks/0hra80eyuu37u.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/0w2p4ldi2aymp.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/002_j970b9gdx.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"/_next/static/chunks/09y_3krccdd~u.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0igc~uli58ncw.js\",\"/_next/static/chunks/135w27dd8c19s.js\",\"/_next/static/chunks/046me66nilkff.js\",\"/_nex"])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>self.__next_f.push([1,"t/static/chunks/06w~.izyfylap.js\"],\"ConsolePanel\"]\n11:I[785502,[\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/002-dxhags4dj.js\",\"/_next/static/chunks/0fxa1edqr7dve.js\",\"/_next/static/chunks/0hra80eyuu37u.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/0w2p4ldi2aymp.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/002_j970b9gdx.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"/_next/static/chunks/09y_3krccdd~u.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0igc~uli58ncw.js\",\"/_next/static/chunks/135w27dd8c19s.js\",\"/_next/static/chunks/046me66nilkff.js\",\"/_next/static/chunks/06w~.izyfylap.js\"],\"default\",1]\n:HL[\"/_next/static/chunks/0-oog4zg4_m~m.css\",\"style\"]\n:HL[\"/_next/static/chunks/04v-pqqs-2lvp.css\",\"style\"]\n"])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",16],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0-oog4zg4_m~m.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/04v-pqqs-2lvp.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/0ppr271hz0xoq.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/0~u.5r3-t7179.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/chunks/002-dxhags4dj.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-4\",{\"src\":\"/_next/static/chunks/0fxa1edqr7dve.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-5\",{\"src\":\"/_next/static/chunks/0hra80eyuu37u.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-6\",{\"src\":\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-7\",{\"src\":\"/_next/static/chunks/0w2p4ldi2aymp.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-8\",{\"src\":\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-9\",{\"src\":\"/_next/static/chunks/002_j970b9gdx.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-10\",{\"src\":\"/_next/static/chunks/11k-.49r~1mfm.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-11\",{\"src\":\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-12\",{\"src\":\"/_next/static/chunks/09y_3krccdd~u.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-13\",{\"src\":\"/_next/static/chunks/1250wo~-5dgyx.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-14\",{\"src\":\"/_next/static/chunks/0igc~uli58ncw.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-15\",{\"src\":\"/_next/static/chunks/135w27dd8c19s.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-16\",{\"src\":\"/_next/static/chunks/046me66nilkff.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-17\",{\"src\":\"/_next/static/chunks/06w~.izyfylap.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"\",\"className\":\"dm_sans_81a33cc5-module___RQdfW__variable outfit_8334a424-module__TwcMYa__variable poppins_37c4598a-module__JRG3Wq__variable h-[var(--app-content-height)] overflow-hidden antialiased\",\"suppressHydrationWarning\":true,\"children\":[\"$\",\"body\",null,{\"className\":\"h-[var(--app-content-height)] overflow-hidden font-sans\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"attribute\":\"class\",\"defaultTheme\":\"system\",\"enableSystem\":true,\"disableTransitionOnChange\":true,\"children\":[\"$\",\"$L4\",null,{\"children\":[[\"$\",\"$L5\",null,{}],[\"$\",\"$L6\",null,{\"children\":[[\"$\",\"$L7\",null,{\"children\":[\"$\",\"$L8\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L9\",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\"}]}],[\"$\",\"$La\",null,{}],[\"$\",\"$Lb\",null,{\"richColors\":true,\"position\":\"bottom-right\"}]]}],[\"$\",\"$Lc\",null,{}]]}]}]}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L8\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L9\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:children:1:props:children:0:props:children:props:notFound:0:1:props:style\",\"children\":\"$Ld\"}]],null,\"$Le\"]}],{},null,false,null]},null,false,\"$@f\"]},null,false,null],\"$L10\",false]],\"m\":\"$undefined\",\"G\":[\"$11\",[\"$L12\",\"$L13\"]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"OoXAsPtrUWjC1l898FSvI\"}\n"])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>self.__next_f.push([1,"14:I[990774,[\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/002-dxhags4dj.js\",\"/_next/static/chunks/0fxa1edqr7dve.js\",\"/_next/static/chunks/0hra80eyuu37u.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/0w2p4ldi2aymp.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/002_j970b9gdx.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"/_next/static/chunks/09y_3krccdd~u.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0igc~uli58ncw.js\",\"/_next/static/chunks/135w27dd8c19s.js\",\"/_next/static/chunks/046me66nilkff.js\",\"/_next/static/chunks/06w~.izyfylap.js\"],\"OutletBoundary\"]\n15:\"$Sreact.suspense\"\n18:I[990774,[\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/002-dxhags4dj.js\",\"/_next/static/chunks/0fxa1edqr7dve.js\",\"/_next/static/chunks/0hra80eyuu37u.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/0w2p4ldi2aymp.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/002_j970b9gdx.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"/_next/static/chunks/09y_3krccdd~u.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0igc~uli58ncw.js\",\"/_next/static/chunks/135w27dd8c19s.js\",\"/_next/static/chunks/046me66nilkff.js\",\"/_next/static/chunks/06w~.izyfylap.js\"],\"ViewportBoundary\"]\n1a:I[990774,[\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/002-dxhags4dj.js\",\"/_next/static/chunks/0fxa1edqr7dve.js\",\"/_next/static/chunks/0hra80eyuu37u.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/0w2p4ldi2aymp.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/002_j970b9gdx.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"/_next/static/chunks/09y_3krccdd~u.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0igc~uli58ncw.js\",\"/_next/static/chunks/135w27dd8c19s.js\",\"/_next/static/chunks/046me66nilkff.js\",\"/_next/static/chunks/06w~.izyfylap.js\"],\"MetadataBoundary\"]\nd:[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:children:1:props:children:0:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:children:1:props:children:0:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:children:1:props:children:0:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]\ne:[\"$\",\"$L14\",null,{\"children\":[\"$\",\"$15\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@16\"}]}]\n17:[]\nf:\"$W17\"\n10:[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L18\",null,{\"children\":\"$L19\"}],[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L1a\",null,{\"children\":[\"$\",\"$15\",null,{\"name\":\"Next.Metadata\",\"children\":\"$L1b\"}]}]}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]]}]\n12:[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0-oog4zg4_m~m.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\n13:[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/04v-pqqs-2lvp.css\",\"precedence\":\"next\",\"c"])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>self.__next_f.push([1,"rossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\n"])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>self.__next_f.push([1,"19:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover\"}]]\n"])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>self.__next_f.push([1,"1c:I[946513,[\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/0ie7y4k2ncvnn.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/002-dxhags4dj.js\",\"/_next/static/chunks/0fxa1edqr7dve.js\",\"/_next/static/chunks/0hra80eyuu37u.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/0w2p4ldi2aymp.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/002_j970b9gdx.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0-1bfvfwifh-m.js\",\"/_next/static/chunks/09y_3krccdd~u.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0igc~uli58ncw.js\",\"/_next/static/chunks/135w27dd8c19s.js\",\"/_next/static/chunks/046me66nilkff.js\",\"/_next/static/chunks/06w~.izyfylap.js\"],\"IconMark\"]\n16:null\n1b:[[\"$\",\"title\",\"0\",{\"children\":\"Agent Spaces\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Multi-agent collaborative coding workspace\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.0~ekuj.zhggpa.ico\",\"sizes\":\"32x32\",\"type\":\"image/x-icon\"}],[\"$\",\"link\",\"3\",{\"rel\":\"icon\",\"href\":\"/favicon.ico\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-touch-icon.png\"}],[\"$\",\"$L1c\",\"5\",{}]]\n"])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script></body></html><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script>
|
|
1
|
+
<!DOCTYPE html><html lang="" class="h-[var(--app-content-height)] overflow-hidden antialiased"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover"/><link rel="stylesheet" href="/_next/static/chunks/062f9zqctzg.b.css" data-precedence="next"/><link rel="stylesheet" href="/_next/static/chunks/0v7q4mys.mnm..css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/02mf61htij8g0.js"/><script src="/_next/static/chunks/031c~uxc3ie87.js" async=""></script><script src="/_next/static/chunks/0h18ej5yf974e.js" async=""></script><script src="/_next/static/chunks/0h256h-tu4e0r.js" async=""></script><script src="/_next/static/chunks/0np.d~hc1-pmh.js" async=""></script><script src="/_next/static/chunks/turbopack-0ndm2zc_pdptk.js" async=""></script><script src="/_next/static/chunks/0s9lmk8iauou3.js" async=""></script><script src="/_next/static/chunks/0ppr271hz0xoq.js" async=""></script><script src="/_next/static/chunks/099h96wjsdb25.js" async=""></script><script src="/_next/static/chunks/0~u.5r3-t7179.js" async=""></script><script src="/_next/static/chunks/0jb4~3qqkw2ps.js" async=""></script><script src="/_next/static/chunks/0z~vqzbm_q371.js" async=""></script><script src="/_next/static/chunks/0_vi1a~g4wx46.js" async=""></script><script src="/_next/static/chunks/161ik5kfyuwtd.js" async=""></script><script src="/_next/static/chunks/0v6hte2z-32ca.js" async=""></script><script src="/_next/static/chunks/08k~meqbd8d6v.js" async=""></script><script src="/_next/static/chunks/0.n~yfwf4~6w-.js" async=""></script><script src="/_next/static/chunks/1250wo~-5dgyx.js" async=""></script><script src="/_next/static/chunks/0sp_zbx~w0am7.js" async=""></script><script src="/_next/static/chunks/11k-.49r~1mfm.js" async=""></script><script src="/_next/static/chunks/0twamv4wr_dbv.js" async=""></script><script src="/_next/static/chunks/0fttswpzu69qx.js" async=""></script><script src="/_next/static/chunks/0ghs9on7wodrm.js" async=""></script><script src="/_next/static/chunks/0v3a_x4vt42kx.js" async=""></script><script src="/_next/static/chunks/0~3xm80~j9ddg.js" async=""></script><script src="/_next/static/chunks/002_j970b9gdx.js" async=""></script><meta name="robots" content="noindex"/><title>Agent Spaces</title><meta name="description" content="Multi-agent collaborative coding workspace"/><link rel="icon" href="/favicon.ico?favicon.0~ekuj.zhggpa.ico" sizes="32x32" type="image/x-icon"/><link rel="icon" href="/favicon.ico"/><link rel="apple-touch-icon" href="/apple-touch-icon.png"/><script src="/_next/static/chunks/03~yq9q893hmn.js" noModule=""></script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}var f=localStorage.getItem('customFont');document.documentElement.dataset.customFont=f?'true':'false';if(f){var ff=f;try{var c=JSON.parse(localStorage.getItem('customFonts')||'[]');var cf=Array.isArray(c)&&c.find(function(x){return x&&x.name===f});if(cf&&cf.url){ff=f.replace(/\.\w+$/,'');var id='font-'+f.replace(/[^a-zA-Z0-9]/g,'-');if(!document.getElementById(id)){var s=document.createElement('style');s.id=id;s.textContent='@font-face { font-family: "'+ff.replace(/"/g,'\\22 ')+'"; src: url("'+String(cf.url).replace(/"/g,'\\22 ')+'"); }';document.head.appendChild(s)}}}catch(e){}var v=ff==='system-ui'||ff==='monospace'?ff:'"'+ff.replace(/"/g,'\\22 ')+'"';['--font-app','--font-sans','--font-heading','--font-mid','--font-mono'].forEach(function(k){document.documentElement.style.setProperty(k,v)})}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script></head><body class="h-[var(--app-content-height)] overflow-hidden font-sans"><div hidden=""><!--$--><!--/$--></div><script src="/_next/static/chunks/02mf61htij8g0.js" id="_R_" async=""></script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}var f=localStorage.getItem('customFont');document.documentElement.dataset.customFont=f?'true':'false';if(f){var ff=f;try{var c=JSON.parse(localStorage.getItem('customFonts')||'[]');var cf=Array.isArray(c)&&c.find(function(x){return x&&x.name===f});if(cf&&cf.url){ff=f.replace(/\.\w+$/,'');var id='font-'+f.replace(/[^a-zA-Z0-9]/g,'-');if(!document.getElementById(id)){var s=document.createElement('style');s.id=id;s.textContent='@font-face { font-family: "'+ff.replace(/"/g,'\\22 ')+'"; src: url("'+String(cf.url).replace(/"/g,'\\22 ')+'"); }';document.head.appendChild(s)}}}catch(e){}var v=ff==='system-ui'||ff==='monospace'?ff:'"'+ff.replace(/"/g,'\\22 ')+'"';['--font-app','--font-sans','--font-heading','--font-mid','--font-mono'].forEach(function(k){document.documentElement.style.setProperty(k,v)})}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}var f=localStorage.getItem('customFont');document.documentElement.dataset.customFont=f?'true':'false';if(f){var ff=f;try{var c=JSON.parse(localStorage.getItem('customFonts')||'[]');var cf=Array.isArray(c)&&c.find(function(x){return x&&x.name===f});if(cf&&cf.url){ff=f.replace(/\.\w+$/,'');var id='font-'+f.replace(/[^a-zA-Z0-9]/g,'-');if(!document.getElementById(id)){var s=document.createElement('style');s.id=id;s.textContent='@font-face { font-family: "'+ff.replace(/"/g,'\\22 ')+'"; src: url("'+String(cf.url).replace(/"/g,'\\22 ')+'"); }';document.head.appendChild(s)}}}catch(e){}var v=ff==='system-ui'||ff==='monospace'?ff:'"'+ff.replace(/"/g,'\\22 ')+'"';['--font-app','--font-sans','--font-heading','--font-mid','--font-mono'].forEach(function(k){document.documentElement.style.setProperty(k,v)})}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[701341,[\"/_next/static/chunks/0s9lmk8iauou3.js\",\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/099h96wjsdb25.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"/_next/static/chunks/0z~vqzbm_q371.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/161ik5kfyuwtd.js\",\"/_next/static/chunks/0v6hte2z-32ca.js\",\"/_next/static/chunks/08k~meqbd8d6v.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0twamv4wr_dbv.js\",\"/_next/static/chunks/0fttswpzu69qx.js\",\"/_next/static/chunks/0ghs9on7wodrm.js\",\"/_next/static/chunks/0v3a_x4vt42kx.js\",\"/_next/static/chunks/0~3xm80~j9ddg.js\",\"/_next/static/chunks/002_j970b9gdx.js\"],\"ZoomWrapper\"]\n3:I[950396,[\"/_next/static/chunks/0s9lmk8iauou3.js\",\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/099h96wjsdb25.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"/_next/static/chunks/0z~vqzbm_q371.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/161ik5kfyuwtd.js\",\"/_next/static/chunks/0v6hte2z-32ca.js\",\"/_next/static/chunks/08k~meqbd8d6v.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0twamv4wr_dbv.js\",\"/_next/static/chunks/0fttswpzu69qx.js\",\"/_next/static/chunks/0ghs9on7wodrm.js\",\"/_next/static/chunks/0v3a_x4vt42kx.js\",\"/_next/static/chunks/0~3xm80~j9ddg.js\",\"/_next/static/chunks/002_j970b9gdx.js\"],\"ThemeProvider\"]\n4:I[556106,[\"/_next/static/chunks/0s9lmk8iauou3.js\",\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/099h96wjsdb25.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"/_next/static/chunks/0z~vqzbm_q371.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/161ik5kfyuwtd.js\",\"/_next/static/chunks/0v6hte2z-32ca.js\",\"/_next/static/chunks/08k~meqbd8d6v.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0twamv4wr_dbv.js\",\"/_next/static/chunks/0fttswpzu69qx.js\",\"/_next/static/chunks/0ghs9on7wodrm.js\",\"/_next/static/chunks/0v3a_x4vt42kx.js\",\"/_next/static/chunks/0~3xm80~j9ddg.js\",\"/_next/static/chunks/002_j970b9gdx.js\"],\"LocaleProvider\"]\n5:I[694819,[\"/_next/static/chunks/0s9lmk8iauou3.js\",\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/099h96wjsdb25.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"/_next/static/chunks/0z~vqzbm_q371.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/161ik5kfyuwtd.js\",\"/_next/static/chunks/0v6hte2z-32ca.js\",\"/_next/static/chunks/08k~meqbd8d6v.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0twamv4wr_dbv.js\",\"/_next/static/chunks/0fttswpzu69qx.js\",\"/_next/static/chunks/0ghs9on7wodrm.js\",\"/_next/static/chunks/0v3a_x4vt42kx.js\",\"/_next/static/chunks/0~3xm80~j9ddg.js\",\"/_next/static/chunks/002_j970b9gdx.js\"],\"ViewportInsets\"]\n6:I[177053,[\"/_next/static/chunks/0s9lmk8iauou3.js\",\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/099h96wjsdb25.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"/_next/static/chunks/0z~vqzbm_q371.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/161ik5kfyuwtd.js\",\"/_next/static/chunks/0v6hte2z-32ca.js\",\"/_next/static/chunks/08k~meqbd8d6v.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0twamv4wr_dbv.js\",\"/_next/static/chunks/0fttswpzu69qx.js\",\"/_next/static/chunks/0ghs9on7wodrm.js\",\"/_next/static/chunks/0v3a_x4vt42kx.js\",\"/_next/static/chunks/0"])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}var f=localStorage.getItem('customFont');document.documentElement.dataset.customFont=f?'true':'false';if(f){var ff=f;try{var c=JSON.parse(localStorage.getItem('customFonts')||'[]');var cf=Array.isArray(c)&&c.find(function(x){return x&&x.name===f});if(cf&&cf.url){ff=f.replace(/\.\w+$/,'');var id='font-'+f.replace(/[^a-zA-Z0-9]/g,'-');if(!document.getElementById(id)){var s=document.createElement('style');s.id=id;s.textContent='@font-face { font-family: "'+ff.replace(/"/g,'\\22 ')+'"; src: url("'+String(cf.url).replace(/"/g,'\\22 ')+'"); }';document.head.appendChild(s)}}}catch(e){}var v=ff==='system-ui'||ff==='monospace'?ff:'"'+ff.replace(/"/g,'\\22 ')+'"';['--font-app','--font-sans','--font-heading','--font-mid','--font-mono'].forEach(function(k){document.documentElement.style.setProperty(k,v)})}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>self.__next_f.push([1,"~3xm80~j9ddg.js\",\"/_next/static/chunks/002_j970b9gdx.js\"],\"AuthGuard\"]\n7:I[994876,[\"/_next/static/chunks/0s9lmk8iauou3.js\",\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/099h96wjsdb25.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"/_next/static/chunks/0z~vqzbm_q371.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/161ik5kfyuwtd.js\",\"/_next/static/chunks/0v6hte2z-32ca.js\",\"/_next/static/chunks/08k~meqbd8d6v.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0twamv4wr_dbv.js\",\"/_next/static/chunks/0fttswpzu69qx.js\",\"/_next/static/chunks/0ghs9on7wodrm.js\",\"/_next/static/chunks/0v3a_x4vt42kx.js\",\"/_next/static/chunks/0~3xm80~j9ddg.js\",\"/_next/static/chunks/002_j970b9gdx.js\"],\"AppShell\"]\n8:I[242864,[\"/_next/static/chunks/0s9lmk8iauou3.js\",\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/099h96wjsdb25.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"/_next/static/chunks/0z~vqzbm_q371.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/161ik5kfyuwtd.js\",\"/_next/static/chunks/0v6hte2z-32ca.js\",\"/_next/static/chunks/08k~meqbd8d6v.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0twamv4wr_dbv.js\",\"/_next/static/chunks/0fttswpzu69qx.js\",\"/_next/static/chunks/0ghs9on7wodrm.js\",\"/_next/static/chunks/0v3a_x4vt42kx.js\",\"/_next/static/chunks/0~3xm80~j9ddg.js\",\"/_next/static/chunks/002_j970b9gdx.js\"],\"default\"]\n9:I[46907,[\"/_next/static/chunks/0s9lmk8iauou3.js\",\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/099h96wjsdb25.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"/_next/static/chunks/0z~vqzbm_q371.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/161ik5kfyuwtd.js\",\"/_next/static/chunks/0v6hte2z-32ca.js\",\"/_next/static/chunks/08k~meqbd8d6v.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0twamv4wr_dbv.js\",\"/_next/static/chunks/0fttswpzu69qx.js\",\"/_next/static/chunks/0ghs9on7wodrm.js\",\"/_next/static/chunks/0v3a_x4vt42kx.js\",\"/_next/static/chunks/0~3xm80~j9ddg.js\",\"/_next/static/chunks/002_j970b9gdx.js\"],\"default\"]\na:I[698679,[\"/_next/static/chunks/0s9lmk8iauou3.js\",\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/099h96wjsdb25.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"/_next/static/chunks/0z~vqzbm_q371.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/161ik5kfyuwtd.js\",\"/_next/static/chunks/0v6hte2z-32ca.js\",\"/_next/static/chunks/08k~meqbd8d6v.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0twamv4wr_dbv.js\",\"/_next/static/chunks/0fttswpzu69qx.js\",\"/_next/static/chunks/0ghs9on7wodrm.js\",\"/_next/static/chunks/0v3a_x4vt42kx.js\",\"/_next/static/chunks/0~3xm80~j9ddg.js\",\"/_next/static/chunks/002_j970b9gdx.js\"],\"CommandPalette\"]\nb:I[360112,[\"/_next/static/chunks/0s9lmk8iauou3.js\",\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/099h96wjsdb25.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"/_next/static/chunks/0z~vqzbm_q371.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/161ik5kfyuwtd.js\",\"/_next/static/chunks/0v6hte2z-32ca.js\",\"/_next/static/chunks/08k~meqbd8d6v.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0twamv4wr_dbv.js\",\"/_next/static/chunks/0fttswpzu69qx.js\",\"/_next/static/chunks/0ghs9on7wodrm.js\",\"/_next/static/chunks/0v3a_x4v"])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}var f=localStorage.getItem('customFont');document.documentElement.dataset.customFont=f?'true':'false';if(f){var ff=f;try{var c=JSON.parse(localStorage.getItem('customFonts')||'[]');var cf=Array.isArray(c)&&c.find(function(x){return x&&x.name===f});if(cf&&cf.url){ff=f.replace(/\.\w+$/,'');var id='font-'+f.replace(/[^a-zA-Z0-9]/g,'-');if(!document.getElementById(id)){var s=document.createElement('style');s.id=id;s.textContent='@font-face { font-family: "'+ff.replace(/"/g,'\\22 ')+'"; src: url("'+String(cf.url).replace(/"/g,'\\22 ')+'"); }';document.head.appendChild(s)}}}catch(e){}var v=ff==='system-ui'||ff==='monospace'?ff:'"'+ff.replace(/"/g,'\\22 ')+'"';['--font-app','--font-sans','--font-heading','--font-mid','--font-mono'].forEach(function(k){document.documentElement.style.setProperty(k,v)})}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>self.__next_f.push([1,"t42kx.js\",\"/_next/static/chunks/0~3xm80~j9ddg.js\",\"/_next/static/chunks/002_j970b9gdx.js\"],\"Toaster\"]\nc:I[984642,[\"/_next/static/chunks/0s9lmk8iauou3.js\",\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/099h96wjsdb25.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"/_next/static/chunks/0z~vqzbm_q371.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/161ik5kfyuwtd.js\",\"/_next/static/chunks/0v6hte2z-32ca.js\",\"/_next/static/chunks/08k~meqbd8d6v.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0twamv4wr_dbv.js\",\"/_next/static/chunks/0fttswpzu69qx.js\",\"/_next/static/chunks/0ghs9on7wodrm.js\",\"/_next/static/chunks/0v3a_x4vt42kx.js\",\"/_next/static/chunks/0~3xm80~j9ddg.js\",\"/_next/static/chunks/002_j970b9gdx.js\"],\"ConsolePanel\"]\n11:I[785502,[\"/_next/static/chunks/0s9lmk8iauou3.js\",\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/099h96wjsdb25.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"/_next/static/chunks/0z~vqzbm_q371.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/161ik5kfyuwtd.js\",\"/_next/static/chunks/0v6hte2z-32ca.js\",\"/_next/static/chunks/08k~meqbd8d6v.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0twamv4wr_dbv.js\",\"/_next/static/chunks/0fttswpzu69qx.js\",\"/_next/static/chunks/0ghs9on7wodrm.js\",\"/_next/static/chunks/0v3a_x4vt42kx.js\",\"/_next/static/chunks/0~3xm80~j9ddg.js\",\"/_next/static/chunks/002_j970b9gdx.js\"],\"default\",1]\n:HL[\"/_next/static/chunks/062f9zqctzg.b.css\",\"style\"]\n:HL[\"/_next/static/chunks/0v7q4mys.mnm..css\",\"style\"]\n"])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}var f=localStorage.getItem('customFont');document.documentElement.dataset.customFont=f?'true':'false';if(f){var ff=f;try{var c=JSON.parse(localStorage.getItem('customFonts')||'[]');var cf=Array.isArray(c)&&c.find(function(x){return x&&x.name===f});if(cf&&cf.url){ff=f.replace(/\.\w+$/,'');var id='font-'+f.replace(/[^a-zA-Z0-9]/g,'-');if(!document.getElementById(id)){var s=document.createElement('style');s.id=id;s.textContent='@font-face { font-family: "'+ff.replace(/"/g,'\\22 ')+'"; src: url("'+String(cf.url).replace(/"/g,'\\22 ')+'"); }';document.head.appendChild(s)}}}catch(e){}var v=ff==='system-ui'||ff==='monospace'?ff:'"'+ff.replace(/"/g,'\\22 ')+'"';['--font-app','--font-sans','--font-heading','--font-mid','--font-mono'].forEach(function(k){document.documentElement.style.setProperty(k,v)})}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>self.__next_f.push([1,"0:{\"P\":null,\"c\":[\"\",\"_not-found\"],\"q\":\"\",\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",16],[[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/062f9zqctzg.b.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0v7q4mys.mnm..css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-0\",{\"src\":\"/_next/static/chunks/0s9lmk8iauou3.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-1\",{\"src\":\"/_next/static/chunks/0ppr271hz0xoq.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-2\",{\"src\":\"/_next/static/chunks/099h96wjsdb25.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-3\",{\"src\":\"/_next/static/chunks/0~u.5r3-t7179.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-4\",{\"src\":\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-5\",{\"src\":\"/_next/static/chunks/0z~vqzbm_q371.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-6\",{\"src\":\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-7\",{\"src\":\"/_next/static/chunks/161ik5kfyuwtd.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-8\",{\"src\":\"/_next/static/chunks/0v6hte2z-32ca.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-9\",{\"src\":\"/_next/static/chunks/08k~meqbd8d6v.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-10\",{\"src\":\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-11\",{\"src\":\"/_next/static/chunks/1250wo~-5dgyx.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-12\",{\"src\":\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-13\",{\"src\":\"/_next/static/chunks/11k-.49r~1mfm.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-14\",{\"src\":\"/_next/static/chunks/0twamv4wr_dbv.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-15\",{\"src\":\"/_next/static/chunks/0fttswpzu69qx.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-16\",{\"src\":\"/_next/static/chunks/0ghs9on7wodrm.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-17\",{\"src\":\"/_next/static/chunks/0v3a_x4vt42kx.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-18\",{\"src\":\"/_next/static/chunks/0~3xm80~j9ddg.js\",\"async\":true,\"nonce\":\"$undefined\"}],[\"$\",\"script\",\"script-19\",{\"src\":\"/_next/static/chunks/002_j970b9gdx.js\",\"async\":true,\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"\",\"className\":\"h-[var(--app-content-height)] overflow-hidden antialiased\",\"suppressHydrationWarning\":true,\"children\":[\"$\",\"body\",null,{\"className\":\"h-[var(--app-content-height)] overflow-hidden font-sans\",\"children\":[\"$\",\"$L2\",null,{\"children\":[\"$\",\"$L3\",null,{\"attribute\":\"class\",\"defaultTheme\":\"system\",\"enableSystem\":true,\"disableTransitionOnChange\":true,\"children\":[\"$\",\"$L4\",null,{\"children\":[[\"$\",\"$L5\",null,{}],[\"$\",\"$L6\",null,{\"children\":[[\"$\",\"$L7\",null,{\"children\":[\"$\",\"$L8\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L9\",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\"}]}],[\"$\",\"$La\",null,{}],[\"$\",\"$Lb\",null,{\"richColors\":true,\"position\":\"bottom-right\"}]]}],[\"$\",\"$Lc\",null,{}]]}]}]}]}]}]]}],{\"children\":[[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L8\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L9\",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.\"}],\"$Ld\"],null,\"$Le\"]}],{},null,false,null]},null,false,\"$@f\"]},null,false,null],\"$L10\",false]],\"m\":\"$undefined\",\"G\":[\"$11\",[\"$L12\",\"$L13\"]],\"S\":true,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"e8w3vd9Eov_LDYWj_0zsE\"}\n"])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}var f=localStorage.getItem('customFont');document.documentElement.dataset.customFont=f?'true':'false';if(f){var ff=f;try{var c=JSON.parse(localStorage.getItem('customFonts')||'[]');var cf=Array.isArray(c)&&c.find(function(x){return x&&x.name===f});if(cf&&cf.url){ff=f.replace(/\.\w+$/,'');var id='font-'+f.replace(/[^a-zA-Z0-9]/g,'-');if(!document.getElementById(id)){var s=document.createElement('style');s.id=id;s.textContent='@font-face { font-family: "'+ff.replace(/"/g,'\\22 ')+'"; src: url("'+String(cf.url).replace(/"/g,'\\22 ')+'"); }';document.head.appendChild(s)}}}catch(e){}var v=ff==='system-ui'||ff==='monospace'?ff:'"'+ff.replace(/"/g,'\\22 ')+'"';['--font-app','--font-sans','--font-heading','--font-mid','--font-mono'].forEach(function(k){document.documentElement.style.setProperty(k,v)})}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>self.__next_f.push([1,"14:I[990774,[\"/_next/static/chunks/0s9lmk8iauou3.js\",\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/099h96wjsdb25.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"/_next/static/chunks/0z~vqzbm_q371.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/161ik5kfyuwtd.js\",\"/_next/static/chunks/0v6hte2z-32ca.js\",\"/_next/static/chunks/08k~meqbd8d6v.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0twamv4wr_dbv.js\",\"/_next/static/chunks/0fttswpzu69qx.js\",\"/_next/static/chunks/0ghs9on7wodrm.js\",\"/_next/static/chunks/0v3a_x4vt42kx.js\",\"/_next/static/chunks/0~3xm80~j9ddg.js\",\"/_next/static/chunks/002_j970b9gdx.js\"],\"OutletBoundary\"]\n15:\"$Sreact.suspense\"\n18:I[990774,[\"/_next/static/chunks/0s9lmk8iauou3.js\",\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/099h96wjsdb25.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"/_next/static/chunks/0z~vqzbm_q371.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/161ik5kfyuwtd.js\",\"/_next/static/chunks/0v6hte2z-32ca.js\",\"/_next/static/chunks/08k~meqbd8d6v.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0twamv4wr_dbv.js\",\"/_next/static/chunks/0fttswpzu69qx.js\",\"/_next/static/chunks/0ghs9on7wodrm.js\",\"/_next/static/chunks/0v3a_x4vt42kx.js\",\"/_next/static/chunks/0~3xm80~j9ddg.js\",\"/_next/static/chunks/002_j970b9gdx.js\"],\"ViewportBoundary\"]\n1a:I[990774,[\"/_next/static/chunks/0s9lmk8iauou3.js\",\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/099h96wjsdb25.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"/_next/static/chunks/0z~vqzbm_q371.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/161ik5kfyuwtd.js\",\"/_next/static/chunks/0v6hte2z-32ca.js\",\"/_next/static/chunks/08k~meqbd8d6v.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0twamv4wr_dbv.js\",\"/_next/static/chunks/0fttswpzu69qx.js\",\"/_next/static/chunks/0ghs9on7wodrm.js\",\"/_next/static/chunks/0v3a_x4vt42kx.js\",\"/_next/static/chunks/0~3xm80~j9ddg.js\",\"/_next/static/chunks/002_j970b9gdx.js\"],\"MetadataBoundary\"]\nd:[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:children:1:props:children:0:props:children:props:notFound:0:1:props:style\",\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:children:1:props:children:0:props:children:props:notFound:0:1:props:children:props:children:1:props:style\",\"children\":404}],[\"$\",\"div\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:children:1:props:children:0:props:children:props:notFound:0:1:props:children:props:children:2:props:style\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$0:f:0:1:0:props:children:1:props:children:props:children:props:children:props:children:props:children:1:props:children:0:props:children:props:notFound:0:1:props:children:props:children:2:props:children:props:style\",\"children\":\"This page could not be found.\"}]}]]}]}]\ne:[\"$\",\"$L14\",null,{\"children\":[\"$\",\"$15\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@16\"}]}]\n17:[]\nf:\"$W17\"\n10:[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[\"$\",\"$L18\",null,{\"children\":\"$L19\"}],[\"$\",\"div\",null"])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}var f=localStorage.getItem('customFont');document.documentElement.dataset.customFont=f?'true':'false';if(f){var ff=f;try{var c=JSON.parse(localStorage.getItem('customFonts')||'[]');var cf=Array.isArray(c)&&c.find(function(x){return x&&x.name===f});if(cf&&cf.url){ff=f.replace(/\.\w+$/,'');var id='font-'+f.replace(/[^a-zA-Z0-9]/g,'-');if(!document.getElementById(id)){var s=document.createElement('style');s.id=id;s.textContent='@font-face { font-family: "'+ff.replace(/"/g,'\\22 ')+'"; src: url("'+String(cf.url).replace(/"/g,'\\22 ')+'"); }';document.head.appendChild(s)}}}catch(e){}var v=ff==='system-ui'||ff==='monospace'?ff:'"'+ff.replace(/"/g,'\\22 ')+'"';['--font-app','--font-sans','--font-heading','--font-mid','--font-mono'].forEach(function(k){document.documentElement.style.setProperty(k,v)})}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>self.__next_f.push([1,",{\"hidden\":true,\"children\":[\"$\",\"$L1a\",null,{\"children\":[\"$\",\"$15\",null,{\"name\":\"Next.Metadata\",\"children\":\"$L1b\"}]}]}],null]}]\n12:[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/062f9zqctzg.b.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\n13:[\"$\",\"link\",\"1\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/chunks/0v7q4mys.mnm..css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]\n"])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}var f=localStorage.getItem('customFont');document.documentElement.dataset.customFont=f?'true':'false';if(f){var ff=f;try{var c=JSON.parse(localStorage.getItem('customFonts')||'[]');var cf=Array.isArray(c)&&c.find(function(x){return x&&x.name===f});if(cf&&cf.url){ff=f.replace(/\.\w+$/,'');var id='font-'+f.replace(/[^a-zA-Z0-9]/g,'-');if(!document.getElementById(id)){var s=document.createElement('style');s.id=id;s.textContent='@font-face { font-family: "'+ff.replace(/"/g,'\\22 ')+'"; src: url("'+String(cf.url).replace(/"/g,'\\22 ')+'"); }';document.head.appendChild(s)}}}catch(e){}var v=ff==='system-ui'||ff==='monospace'?ff:'"'+ff.replace(/"/g,'\\22 ')+'"';['--font-app','--font-sans','--font-heading','--font-mid','--font-mono'].forEach(function(k){document.documentElement.style.setProperty(k,v)})}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>self.__next_f.push([1,"19:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover\"}]]\n"])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}var f=localStorage.getItem('customFont');document.documentElement.dataset.customFont=f?'true':'false';if(f){var ff=f;try{var c=JSON.parse(localStorage.getItem('customFonts')||'[]');var cf=Array.isArray(c)&&c.find(function(x){return x&&x.name===f});if(cf&&cf.url){ff=f.replace(/\.\w+$/,'');var id='font-'+f.replace(/[^a-zA-Z0-9]/g,'-');if(!document.getElementById(id)){var s=document.createElement('style');s.id=id;s.textContent='@font-face { font-family: "'+ff.replace(/"/g,'\\22 ')+'"; src: url("'+String(cf.url).replace(/"/g,'\\22 ')+'"); }';document.head.appendChild(s)}}}catch(e){}var v=ff==='system-ui'||ff==='monospace'?ff:'"'+ff.replace(/"/g,'\\22 ')+'"';['--font-app','--font-sans','--font-heading','--font-mid','--font-mono'].forEach(function(k){document.documentElement.style.setProperty(k,v)})}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script><script>self.__next_f.push([1,"1c:I[946513,[\"/_next/static/chunks/0s9lmk8iauou3.js\",\"/_next/static/chunks/0ppr271hz0xoq.js\",\"/_next/static/chunks/099h96wjsdb25.js\",\"/_next/static/chunks/0~u.5r3-t7179.js\",\"/_next/static/chunks/0jb4~3qqkw2ps.js\",\"/_next/static/chunks/0z~vqzbm_q371.js\",\"/_next/static/chunks/0_vi1a~g4wx46.js\",\"/_next/static/chunks/161ik5kfyuwtd.js\",\"/_next/static/chunks/0v6hte2z-32ca.js\",\"/_next/static/chunks/08k~meqbd8d6v.js\",\"/_next/static/chunks/0.n~yfwf4~6w-.js\",\"/_next/static/chunks/1250wo~-5dgyx.js\",\"/_next/static/chunks/0sp_zbx~w0am7.js\",\"/_next/static/chunks/11k-.49r~1mfm.js\",\"/_next/static/chunks/0twamv4wr_dbv.js\",\"/_next/static/chunks/0fttswpzu69qx.js\",\"/_next/static/chunks/0ghs9on7wodrm.js\",\"/_next/static/chunks/0v3a_x4vt42kx.js\",\"/_next/static/chunks/0~3xm80~j9ddg.js\",\"/_next/static/chunks/002_j970b9gdx.js\"],\"IconMark\"]\n16:null\n1b:[[\"$\",\"title\",\"0\",{\"children\":\"Agent Spaces\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Multi-agent collaborative coding workspace\"}],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/favicon.ico?favicon.0~ekuj.zhggpa.ico\",\"sizes\":\"32x32\",\"type\":\"image/x-icon\"}],[\"$\",\"link\",\"3\",{\"rel\":\"icon\",\"href\":\"/favicon.ico\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-touch-icon.png\"}],[\"$\",\"$L1c\",\"5\",{}]]\n"])</script><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}var f=localStorage.getItem('customFont');document.documentElement.dataset.customFont=f?'true':'false';if(f){var ff=f;try{var c=JSON.parse(localStorage.getItem('customFonts')||'[]');var cf=Array.isArray(c)&&c.find(function(x){return x&&x.name===f});if(cf&&cf.url){ff=f.replace(/\.\w+$/,'');var id='font-'+f.replace(/[^a-zA-Z0-9]/g,'-');if(!document.getElementById(id)){var s=document.createElement('style');s.id=id;s.textContent='@font-face { font-family: "'+ff.replace(/"/g,'\\22 ')+'"; src: url("'+String(cf.url).replace(/"/g,'\\22 ')+'"); }';document.head.appendChild(s)}}}catch(e){}var v=ff==='system-ui'||ff==='monospace'?ff:'"'+ff.replace(/"/g,'\\22 ')+'"';['--font-app','--font-sans','--font-heading','--font-mid','--font-mono'].forEach(function(k){document.documentElement.style.setProperty(k,v)})}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script></body></html><script>(function(){try{var t=localStorage.getItem('agent-spaces-theme');var d=t==='dark'||((!t||t==='system')&&matchMedia('(prefers-color-scheme:dark)').matches);var r=d?'dark':'light';document.documentElement.classList.add(r);document.documentElement.style.colorScheme=r;var m=document.querySelector('meta[name="theme-color"]');if(!m){m=document.createElement('meta');m.name='theme-color';document.head.appendChild(m)}m.content=d?'#0f1117':'#ffffff';if(window.AgentSpacesStatusBar){window.AgentSpacesStatusBar.setTheme(r)}var f=localStorage.getItem('customFont');document.documentElement.dataset.customFont=f?'true':'false';if(f){var ff=f;try{var c=JSON.parse(localStorage.getItem('customFonts')||'[]');var cf=Array.isArray(c)&&c.find(function(x){return x&&x.name===f});if(cf&&cf.url){ff=f.replace(/\.\w+$/,'');var id='font-'+f.replace(/[^a-zA-Z0-9]/g,'-');if(!document.getElementById(id)){var s=document.createElement('style');s.id=id;s.textContent='@font-face { font-family: "'+ff.replace(/"/g,'\\22 ')+'"; src: url("'+String(cf.url).replace(/"/g,'\\22 ')+'"); }';document.head.appendChild(s)}}}catch(e){}var v=ff==='system-ui'||ff==='monospace'?ff:'"'+ff.replace(/"/g,'\\22 ')+'"';['--font-app','--font-sans','--font-heading','--font-mid','--font-mono'].forEach(function(k){document.documentElement.style.setProperty(k,v)})}}catch(e){}})()</script><script>(function(){try{var l=localStorage.getItem('agent-spaces-locale');document.documentElement.lang=(l==='en')?'en':'zh-CN'}catch(e){}})()</script>
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
1:"$Sreact.fragment"
|
|
2
|
-
2:I[487786,["/_next/static/chunks/0ppr271hz0xoq.js","/_next/static/chunks/
|
|
3
|
-
3:I[330997,["/_next/static/chunks/0ppr271hz0xoq.js","/_next/static/chunks/
|
|
4
|
-
6:I[990774,["/_next/static/chunks/0ppr271hz0xoq.js","/_next/static/chunks/
|
|
2
|
+
2:I[487786,["/_next/static/chunks/0s9lmk8iauou3.js","/_next/static/chunks/0ppr271hz0xoq.js","/_next/static/chunks/099h96wjsdb25.js","/_next/static/chunks/0~u.5r3-t7179.js","/_next/static/chunks/0jb4~3qqkw2ps.js","/_next/static/chunks/0z~vqzbm_q371.js","/_next/static/chunks/0_vi1a~g4wx46.js","/_next/static/chunks/161ik5kfyuwtd.js","/_next/static/chunks/0v6hte2z-32ca.js","/_next/static/chunks/08k~meqbd8d6v.js","/_next/static/chunks/0.n~yfwf4~6w-.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0sp_zbx~w0am7.js","/_next/static/chunks/11k-.49r~1mfm.js","/_next/static/chunks/0twamv4wr_dbv.js","/_next/static/chunks/0fttswpzu69qx.js","/_next/static/chunks/0ghs9on7wodrm.js","/_next/static/chunks/0v3a_x4vt42kx.js","/_next/static/chunks/0~3xm80~j9ddg.js","/_next/static/chunks/002_j970b9gdx.js"],"ClientPageRoot"]
|
|
3
|
+
3:I[330997,["/_next/static/chunks/0s9lmk8iauou3.js","/_next/static/chunks/0ppr271hz0xoq.js","/_next/static/chunks/099h96wjsdb25.js","/_next/static/chunks/0~u.5r3-t7179.js","/_next/static/chunks/0jb4~3qqkw2ps.js","/_next/static/chunks/0z~vqzbm_q371.js","/_next/static/chunks/0_vi1a~g4wx46.js","/_next/static/chunks/161ik5kfyuwtd.js","/_next/static/chunks/0v6hte2z-32ca.js","/_next/static/chunks/08k~meqbd8d6v.js","/_next/static/chunks/0.n~yfwf4~6w-.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0sp_zbx~w0am7.js","/_next/static/chunks/11k-.49r~1mfm.js","/_next/static/chunks/0twamv4wr_dbv.js","/_next/static/chunks/0fttswpzu69qx.js","/_next/static/chunks/0ghs9on7wodrm.js","/_next/static/chunks/0v3a_x4vt42kx.js","/_next/static/chunks/0~3xm80~j9ddg.js","/_next/static/chunks/002_j970b9gdx.js","/_next/static/chunks/0ewceguykiut5.js","/_next/static/chunks/0ctg5qmw7uu.1.js"],"default"]
|
|
4
|
+
6:I[990774,["/_next/static/chunks/0s9lmk8iauou3.js","/_next/static/chunks/0ppr271hz0xoq.js","/_next/static/chunks/099h96wjsdb25.js","/_next/static/chunks/0~u.5r3-t7179.js","/_next/static/chunks/0jb4~3qqkw2ps.js","/_next/static/chunks/0z~vqzbm_q371.js","/_next/static/chunks/0_vi1a~g4wx46.js","/_next/static/chunks/161ik5kfyuwtd.js","/_next/static/chunks/0v6hte2z-32ca.js","/_next/static/chunks/08k~meqbd8d6v.js","/_next/static/chunks/0.n~yfwf4~6w-.js","/_next/static/chunks/1250wo~-5dgyx.js","/_next/static/chunks/0sp_zbx~w0am7.js","/_next/static/chunks/11k-.49r~1mfm.js","/_next/static/chunks/0twamv4wr_dbv.js","/_next/static/chunks/0fttswpzu69qx.js","/_next/static/chunks/0ghs9on7wodrm.js","/_next/static/chunks/0v3a_x4vt42kx.js","/_next/static/chunks/0~3xm80~j9ddg.js","/_next/static/chunks/002_j970b9gdx.js"],"OutletBoundary"]
|
|
5
5
|
7:"$Sreact.suspense"
|
|
6
|
-
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0ewceguykiut5.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0ctg5qmw7uu.1.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"
|
|
6
|
+
0:{"rsc":["$","$1","c",{"children":[["$","$L2",null,{"Component":"$3","serverProvidedParams":{"searchParams":{},"params":{},"promises":["$@4","$@5"]}}],[["$","script","script-0",{"src":"/_next/static/chunks/0ewceguykiut5.js","async":true}],["$","script","script-1",{"src":"/_next/static/chunks/0ctg5qmw7uu.1.js","async":true}]],["$","$L6",null,{"children":["$","$7",null,{"name":"Next.MetadataOutlet","children":"$@8"}]}]]}],"isPartial":false,"staleTime":300,"varyParams":null,"buildId":"e8w3vd9Eov_LDYWj_0zsE"}
|
|
7
7
|
4:{}
|
|
8
8
|
5:"$0:rsc:props:children:0:props:serverProvidedParams:params"
|
|
9
9
|
8:null
|