@fusionkit/cli 0.1.6 → 0.1.8

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.
Files changed (47) hide show
  1. package/README.md +8 -6
  2. package/dist/commands/doctor.js +7 -3
  3. package/dist/commands/fusion.js +16 -8
  4. package/dist/fusion/env.d.ts +4 -1
  5. package/dist/fusion/env.js +1 -1
  6. package/dist/fusion/stack.d.ts +4 -0
  7. package/dist/fusion/stack.js +21 -1
  8. package/dist/fusion-config.d.ts +58 -6
  9. package/dist/fusion-config.js +152 -22
  10. package/dist/fusion-init.d.ts +1 -0
  11. package/dist/fusion-init.js +48 -4
  12. package/dist/fusion-quickstart.js +1 -0
  13. package/dist/test/cli.test.js +3 -3
  14. package/dist/test/fusion-config.test.js +64 -4
  15. package/package.json +14 -14
  16. package/scope/.next/BUILD_ID +1 -1
  17. package/scope/.next/app-build-manifest.json +14 -14
  18. package/scope/.next/app-path-routes-manifest.json +4 -4
  19. package/scope/.next/build-manifest.json +2 -2
  20. package/scope/.next/prerender-manifest.json +3 -3
  21. package/scope/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  22. package/scope/.next/server/app/_not-found.html +1 -1
  23. package/scope/.next/server/app/_not-found.rsc +1 -1
  24. package/scope/.next/server/app/api/environments/route_client-reference-manifest.js +1 -1
  25. package/scope/.next/server/app/api/ingest/route_client-reference-manifest.js +1 -1
  26. package/scope/.next/server/app/api/models/route_client-reference-manifest.js +1 -1
  27. package/scope/.next/server/app/api/replay/route_client-reference-manifest.js +1 -1
  28. package/scope/.next/server/app/api/sessions/[traceId]/route_client-reference-manifest.js +1 -1
  29. package/scope/.next/server/app/api/sessions/route_client-reference-manifest.js +1 -1
  30. package/scope/.next/server/app/api/stream/route_client-reference-manifest.js +1 -1
  31. package/scope/.next/server/app/environments/page_client-reference-manifest.js +1 -1
  32. package/scope/.next/server/app/environments.html +1 -1
  33. package/scope/.next/server/app/environments.rsc +1 -1
  34. package/scope/.next/server/app/index.html +1 -1
  35. package/scope/.next/server/app/index.rsc +1 -1
  36. package/scope/.next/server/app/models/page_client-reference-manifest.js +1 -1
  37. package/scope/.next/server/app/models.html +1 -1
  38. package/scope/.next/server/app/models.rsc +1 -1
  39. package/scope/.next/server/app/page_client-reference-manifest.js +1 -1
  40. package/scope/.next/server/app/sessions/[traceId]/page_client-reference-manifest.js +1 -1
  41. package/scope/.next/server/app-paths-manifest.json +4 -4
  42. package/scope/.next/server/functions-config-manifest.json +1 -1
  43. package/scope/.next/server/pages/404.html +1 -1
  44. package/scope/.next/server/pages/500.html +1 -1
  45. package/scope/.next/server/server-reference-manifest.json +1 -1
  46. /package/scope/.next/static/{x7wPUCpgS31-5ZHJkcKsU → DyybY5vozMobja2-GQ4Tu}/_buildManifest.js +0 -0
  47. /package/scope/.next/static/{x7wPUCpgS31-5ZHJkcKsU → DyybY5vozMobja2-GQ4Tu}/_ssgManifest.js +0 -0
@@ -199,15 +199,15 @@ test("fusion help documents the flags-before-tool contract", () => {
199
199
  assert.equal(result.status, 0);
200
200
  assert.match(result.stdout, /must precede the tool name/);
201
201
  });
202
- test("init scaffolds a fusionkit.json and refuses to clobber without --force", () => {
202
+ test("init scaffolds a .fusionkit/fusion.json and refuses to clobber without --force", () => {
203
203
  const fixture = makeRepo();
204
204
  try {
205
205
  const result = warrant(["init", "--repo", fixture.repo]);
206
206
  assert.equal(result.status, 0, result.stderr);
207
- const configPath = join(fixture.repo, "fusionkit.json");
207
+ const configPath = join(fixture.repo, ".fusionkit", "fusion.json");
208
208
  assert.ok(existsSync(configPath));
209
209
  const config = JSON.parse(readFileSync(configPath, "utf8"));
210
- assert.equal(config.version, "fusionkit.fusion.v1");
210
+ assert.equal(config.version, "fusionkit.fusion.v2");
211
211
  const again = warrant(["init", "--repo", fixture.repo]);
212
212
  assert.equal(again.status, 1);
213
213
  assert.match(again.stderr, /already exists/);
@@ -1,9 +1,9 @@
1
1
  import assert from "node:assert/strict";
2
- import { mkdtempSync, rmSync, writeFileSync } from "node:fs";
2
+ import { existsSync, mkdtempSync, readFileSync, rmSync, writeFileSync } from "node:fs";
3
3
  import { tmpdir } from "node:os";
4
4
  import { join } from "node:path";
5
5
  import { after, test } from "node:test";
6
- import { FUSION_CONFIG_VERSION, FusionConfigError, fusionConfigPath, loadFusionConfig, parseFusionConfig, writeFusionConfig } from "../fusion-config.js";
6
+ import { FUSION_CONFIG_VERSION, FusionConfigError, fusionConfigPath, fusionPromptPath, legacyFusionConfigPath, loadFusionConfig, parseFusionConfig, readFusionPrompts, writeFusionConfig, writeFusionPrompts } from "../fusion-config.js";
7
7
  const tmpRoots = [];
8
8
  function freshDir() {
9
9
  const dir = mkdtempSync(join(tmpdir(), "fusion-config-"));
@@ -31,6 +31,11 @@ test("parseFusionConfig accepts a valid config", () => {
31
31
  assert.equal(config.observe, true);
32
32
  assert.equal(config.port, 1234);
33
33
  });
34
+ test("parseFusionConfig upgrades a legacy v1 version in memory", () => {
35
+ const config = parseFusionConfig({ version: "fusionkit.fusion.v1", tool: "claude" }, "test");
36
+ assert.equal(config.version, FUSION_CONFIG_VERSION);
37
+ assert.equal(config.tool, "claude");
38
+ });
34
39
  test("parseFusionConfig rejects an unsupported version", () => {
35
40
  assert.throws(() => parseFusionConfig({ version: "nope" }, "test"), FusionConfigError);
36
41
  });
@@ -43,10 +48,10 @@ test("parseFusionConfig rejects a panel entry missing model", () => {
43
48
  test("parseFusionConfig rejects a non-object", () => {
44
49
  assert.throws(() => parseFusionConfig(["not", "an", "object"], "test"), FusionConfigError);
45
50
  });
46
- test("loadFusionConfig returns undefined when the file is absent", () => {
51
+ test("loadFusionConfig returns undefined when no config exists", () => {
47
52
  assert.equal(loadFusionConfig(freshDir()), undefined);
48
53
  });
49
- test("write then load round-trips the config", () => {
54
+ test("write then load round-trips the config through .fusionkit/fusion.json", () => {
50
55
  const dir = freshDir();
51
56
  const config = {
52
57
  version: FUSION_CONFIG_VERSION,
@@ -61,6 +66,7 @@ test("write then load round-trips the config", () => {
61
66
  };
62
67
  const path = writeFusionConfig(dir, config);
63
68
  assert.equal(path, fusionConfigPath(dir));
69
+ assert.ok(path.endsWith(join(".fusionkit", "fusion.json")));
64
70
  const loaded = loadFusionConfig(dir);
65
71
  assert.deepEqual(loaded, config);
66
72
  });
@@ -73,8 +79,62 @@ test("writeFusionConfig refuses to clobber without force, overwrites with it", (
73
79
  const reloaded = loadFusionConfig(dir);
74
80
  assert.equal(reloaded?.tool, "claude");
75
81
  });
82
+ test("writeFusionConfig omits the prompts field from fusion.json", () => {
83
+ const dir = freshDir();
84
+ writeFusionConfig(dir, { version: FUSION_CONFIG_VERSION, tool: "codex", prompts: { judge: "X" } });
85
+ const onDisk = JSON.parse(readFileSync(fusionConfigPath(dir), "utf8"));
86
+ assert.equal("prompts" in onDisk, false);
87
+ });
76
88
  test("loadFusionConfig surfaces invalid JSON as a FusionConfigError", () => {
77
89
  const dir = freshDir();
90
+ writeFusionConfig(dir, { version: FUSION_CONFIG_VERSION, tool: "codex" });
78
91
  writeFileSync(fusionConfigPath(dir), "{ this is not json");
79
92
  assert.throws(() => loadFusionConfig(dir), FusionConfigError);
80
93
  });
94
+ test("prompt overrides are read from .fusionkit/prompts/*.md and attached on load", () => {
95
+ const dir = freshDir();
96
+ writeFusionConfig(dir, { version: FUSION_CONFIG_VERSION, tool: "codex" });
97
+ writeFusionPrompts(dir, { judge: "CUSTOM JUDGE", "trajectory-step": "CUSTOM STEP" });
98
+ const loaded = loadFusionConfig(dir);
99
+ assert.deepEqual(loaded?.prompts, { judge: "CUSTOM JUDGE", "trajectory-step": "CUSTOM STEP" });
100
+ });
101
+ test("empty prompt files are ignored (fall back to built-in defaults)", () => {
102
+ const dir = freshDir();
103
+ writeFusionConfig(dir, { version: FUSION_CONFIG_VERSION, tool: "codex" });
104
+ writeFusionPrompts(dir, { judge: "REAL" });
105
+ // Blank out the file: an empty override means "use the built-in default".
106
+ writeFileSync(fusionPromptPath(dir, "judge"), " \n");
107
+ assert.deepEqual(readFusionPrompts(dir), {});
108
+ assert.equal(loadFusionConfig(dir)?.prompts, undefined);
109
+ });
110
+ test("writeFusionPrompts does not clobber existing files without force", () => {
111
+ const dir = freshDir();
112
+ writeFusionPrompts(dir, { judge: "FIRST" });
113
+ const second = writeFusionPrompts(dir, { judge: "SECOND" });
114
+ assert.deepEqual(second, []);
115
+ assert.equal(readFusionPrompts(dir).judge, "FIRST");
116
+ writeFusionPrompts(dir, { judge: "THIRD" }, { force: true });
117
+ assert.equal(readFusionPrompts(dir).judge, "THIRD");
118
+ });
119
+ test("loadFusionConfig auto-migrates a legacy fusionkit.json into .fusionkit/", () => {
120
+ const dir = freshDir();
121
+ const legacy = { version: FUSION_CONFIG_VERSION, tool: "claude", local: true };
122
+ writeFileSync(legacyFusionConfigPath(dir), JSON.stringify(legacy, null, 2) + "\n");
123
+ const notices = [];
124
+ const loaded = loadFusionConfig(dir, (message) => notices.push(message));
125
+ assert.equal(loaded?.tool, "claude");
126
+ assert.equal(loaded?.local, true);
127
+ // The migrated copy now exists; the legacy file is left intact as a fallback.
128
+ assert.ok(existsSync(fusionConfigPath(dir)));
129
+ assert.ok(existsSync(legacyFusionConfigPath(dir)));
130
+ assert.equal(notices.length, 1);
131
+ assert.match(notices[0] ?? "", /migrated/);
132
+ });
133
+ test("loadFusionConfig migrates a legacy v1 file and upgrades the version", () => {
134
+ const dir = freshDir();
135
+ writeFileSync(legacyFusionConfigPath(dir), JSON.stringify({ version: "fusionkit.fusion.v1", tool: "codex" }, null, 2) + "\n");
136
+ const loaded = loadFusionConfig(dir);
137
+ assert.equal(loaded?.version, FUSION_CONFIG_VERSION);
138
+ const migrated = JSON.parse(readFileSync(fusionConfigPath(dir), "utf8"));
139
+ assert.equal(migrated.version, FUSION_CONFIG_VERSION);
140
+ });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fusionkit/cli",
3
3
  "private": false,
4
- "version": "0.1.6",
4
+ "version": "0.1.8",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "git+https://github.com/velum-labs/handoffkit.git",
@@ -34,19 +34,19 @@
34
34
  },
35
35
  "dependencies": {
36
36
  "commander": "14.0.3",
37
- "@fusionkit/ensemble": "0.1.6",
38
- "@fusionkit/handoff": "0.1.6",
39
- "@fusionkit/model-gateway": "0.1.6",
40
- "@fusionkit/protocol": "0.1.6",
41
- "@fusionkit/plane": "0.1.6",
42
- "@fusionkit/runner": "0.1.6",
43
- "@fusionkit/sdk": "0.1.6",
44
- "@fusionkit/tool-cursor": "0.1.6",
45
- "@fusionkit/tool-codex": "0.1.6",
46
- "@fusionkit/tool-claude": "0.1.6",
47
- "@fusionkit/tool-opencode": "0.1.6",
48
- "@fusionkit/tools": "0.1.6",
49
- "@fusionkit/workspace": "0.1.6"
37
+ "@fusionkit/handoff": "0.1.8",
38
+ "@fusionkit/model-gateway": "0.1.8",
39
+ "@fusionkit/protocol": "0.1.8",
40
+ "@fusionkit/runner": "0.1.8",
41
+ "@fusionkit/plane": "0.1.8",
42
+ "@fusionkit/ensemble": "0.1.8",
43
+ "@fusionkit/sdk": "0.1.8",
44
+ "@fusionkit/tool-claude": "0.1.8",
45
+ "@fusionkit/tool-cursor": "0.1.8",
46
+ "@fusionkit/tool-codex": "0.1.8",
47
+ "@fusionkit/tools": "0.1.8",
48
+ "@fusionkit/tool-opencode": "0.1.8",
49
+ "@fusionkit/workspace": "0.1.8"
50
50
  },
51
51
  "optionalDependencies": {
52
52
  "portless": "0.14.0"
@@ -1 +1 @@
1
- x7wPUCpgS31-5ZHJkcKsU
1
+ DyybY5vozMobja2-GQ4Tu
@@ -17,6 +17,13 @@
17
17
  "static/chunks/989-1c7081e9fd5c9b9d.js",
18
18
  "static/chunks/app/layout-d12f7c5cc80486b4.js"
19
19
  ],
20
+ "/api/environments/route": [
21
+ "static/chunks/webpack-4501ec292abda191.js",
22
+ "static/chunks/4bd1b696-409494caf8c83275.js",
23
+ "static/chunks/255-69a4a78fac9becef.js",
24
+ "static/chunks/main-app-2a6b1f94de31f96f.js",
25
+ "static/chunks/app/api/environments/route-95e822afbebe548b.js"
26
+ ],
20
27
  "/api/models/route": [
21
28
  "static/chunks/webpack-4501ec292abda191.js",
22
29
  "static/chunks/4bd1b696-409494caf8c83275.js",
@@ -24,12 +31,12 @@
24
31
  "static/chunks/main-app-2a6b1f94de31f96f.js",
25
32
  "static/chunks/app/api/models/route-95e822afbebe548b.js"
26
33
  ],
27
- "/api/environments/route": [
34
+ "/api/ingest/route": [
28
35
  "static/chunks/webpack-4501ec292abda191.js",
29
36
  "static/chunks/4bd1b696-409494caf8c83275.js",
30
37
  "static/chunks/255-69a4a78fac9becef.js",
31
38
  "static/chunks/main-app-2a6b1f94de31f96f.js",
32
- "static/chunks/app/api/environments/route-95e822afbebe548b.js"
39
+ "static/chunks/app/api/ingest/route-95e822afbebe548b.js"
33
40
  ],
34
41
  "/api/replay/route": [
35
42
  "static/chunks/webpack-4501ec292abda191.js",
@@ -45,13 +52,6 @@
45
52
  "static/chunks/main-app-2a6b1f94de31f96f.js",
46
53
  "static/chunks/app/api/sessions/[traceId]/route-95e822afbebe548b.js"
47
54
  ],
48
- "/api/ingest/route": [
49
- "static/chunks/webpack-4501ec292abda191.js",
50
- "static/chunks/4bd1b696-409494caf8c83275.js",
51
- "static/chunks/255-69a4a78fac9becef.js",
52
- "static/chunks/main-app-2a6b1f94de31f96f.js",
53
- "static/chunks/app/api/ingest/route-95e822afbebe548b.js"
54
- ],
55
55
  "/api/sessions/route": [
56
56
  "static/chunks/webpack-4501ec292abda191.js",
57
57
  "static/chunks/4bd1b696-409494caf8c83275.js",
@@ -83,26 +83,26 @@
83
83
  "static/chunks/873-9351d1edaa9d58ef.js",
84
84
  "static/chunks/app/models/page-d9b7d19485e9a640.js"
85
85
  ],
86
- "/page": [
86
+ "/sessions/[traceId]/page": [
87
87
  "static/chunks/webpack-4501ec292abda191.js",
88
88
  "static/chunks/4bd1b696-409494caf8c83275.js",
89
89
  "static/chunks/255-69a4a78fac9becef.js",
90
90
  "static/chunks/main-app-2a6b1f94de31f96f.js",
91
91
  "static/chunks/239-1c69ce437d02745f.js",
92
92
  "static/chunks/989-1c7081e9fd5c9b9d.js",
93
+ "static/chunks/425-9a1b036b5fdd8b06.js",
93
94
  "static/chunks/22-1934dc9c2e544aa9.js",
94
- "static/chunks/app/page-57dce47ff6c00ddd.js"
95
+ "static/chunks/app/sessions/[traceId]/page-209dfd895566db6f.js"
95
96
  ],
96
- "/sessions/[traceId]/page": [
97
+ "/page": [
97
98
  "static/chunks/webpack-4501ec292abda191.js",
98
99
  "static/chunks/4bd1b696-409494caf8c83275.js",
99
100
  "static/chunks/255-69a4a78fac9becef.js",
100
101
  "static/chunks/main-app-2a6b1f94de31f96f.js",
101
102
  "static/chunks/239-1c69ce437d02745f.js",
102
103
  "static/chunks/989-1c7081e9fd5c9b9d.js",
103
- "static/chunks/425-9a1b036b5fdd8b06.js",
104
104
  "static/chunks/22-1934dc9c2e544aa9.js",
105
- "static/chunks/app/sessions/[traceId]/page-209dfd895566db6f.js"
105
+ "static/chunks/app/page-57dce47ff6c00ddd.js"
106
106
  ]
107
107
  }
108
108
  }
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "/_not-found/page": "/_not-found",
3
- "/api/models/route": "/api/models",
4
3
  "/api/environments/route": "/api/environments",
4
+ "/api/models/route": "/api/models",
5
+ "/api/ingest/route": "/api/ingest",
5
6
  "/api/replay/route": "/api/replay",
6
7
  "/api/sessions/[traceId]/route": "/api/sessions/[traceId]",
7
- "/api/ingest/route": "/api/ingest",
8
8
  "/api/sessions/route": "/api/sessions",
9
9
  "/api/stream/route": "/api/stream",
10
10
  "/environments/page": "/environments",
11
11
  "/models/page": "/models",
12
- "/page": "/",
13
- "/sessions/[traceId]/page": "/sessions/[traceId]"
12
+ "/sessions/[traceId]/page": "/sessions/[traceId]",
13
+ "/page": "/"
14
14
  }
@@ -5,8 +5,8 @@
5
5
  "devFiles": [],
6
6
  "ampDevFiles": [],
7
7
  "lowPriorityFiles": [
8
- "static/x7wPUCpgS31-5ZHJkcKsU/_buildManifest.js",
9
- "static/x7wPUCpgS31-5ZHJkcKsU/_ssgManifest.js"
8
+ "static/DyybY5vozMobja2-GQ4Tu/_buildManifest.js",
9
+ "static/DyybY5vozMobja2-GQ4Tu/_ssgManifest.js"
10
10
  ],
11
11
  "rootMainFiles": [
12
12
  "static/chunks/webpack-4501ec292abda191.js",
@@ -102,8 +102,8 @@
102
102
  "dynamicRoutes": {},
103
103
  "notFoundRoutes": [],
104
104
  "preview": {
105
- "previewModeId": "9594f04790760323f1e2923ec24b2404",
106
- "previewModeSigningKey": "281238373f342e329fe0b57d64f2d25dd33871bf9a620ea29ef66276a15f8ec5",
107
- "previewModeEncryptionKey": "a673bd91681e4c5f8b9cd3b04ac5d5dd4d03a041430c0ade96730587eef1ac9f"
105
+ "previewModeId": "a30ff62c9203489c5f585889ac990ac6",
106
+ "previewModeSigningKey": "4cf08b8f1bf3083ef78ff8a679e6b84484c33d48d361e58d5985974a1d897092",
107
+ "previewModeEncryptionKey": "e5b78724406aebe7939070a5314ec053e72a4f0996d59aa0343d5226d3dd0834"
108
108
  }
109
109
  }
@@ -1 +1 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_not-found/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"9766":{"*":{"id":"77526","name":"*","chunks":[],"async":false}},"11509":{"*":{"id":"94466","name":"*","chunks":[],"async":false}},"15278":{"*":{"id":"78922","name":"*","chunks":[],"async":false}},"17989":{"*":{"id":"68495","name":"*","chunks":[],"async":false}},"24431":{"*":{"id":"12263","name":"*","chunks":[],"async":false}},"31327":{"*":{"id":"33069","name":"*","chunks":[],"async":false}},"37373":{"*":{"id":"72400","name":"*","chunks":[],"async":false}},"54664":{"*":{"id":"8044","name":"*","chunks":[],"async":false}},"57150":{"*":{"id":"54160","name":"*","chunks":[],"async":false}},"63886":{"*":{"id":"75170","name":"*","chunks":[],"async":false}},"64441":{"*":{"id":"75780","name":"*","chunks":[],"async":false}},"72417":{"*":{"id":"10371","name":"*","chunks":[],"async":false}},"80622":{"*":{"id":"82146","name":"*","chunks":[],"async":false}},"81959":{"*":{"id":"31603","name":"*","chunks":[],"async":false}},"82180":{"*":{"id":"36736","name":"*","chunks":[],"async":false}},"98924":{"*":{"id":"29234","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/builtin/global-error.js":{"id":57150,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":57150,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/client-page.js":{"id":81959,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/client-page.js":{"id":81959,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/client-segment.js":{"id":17989,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/client-segment.js":{"id":17989,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":63886,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":63886,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/layout-router.js":{"id":9766,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/layout-router.js":{"id":9766,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":15278,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":15278,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/render-from-template-context.js":{"id":98924,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":98924,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/lib/framework/boundary-components.js":{"id":24431,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":24431,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":80622,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":80622,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/components/scope/sidebar-nav.tsx":{"id":31327,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/components/ui/separator.tsx":{"id":54664,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/components/ui/tooltip.tsx":{"id":82180,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-sans\"}],\"variableName\":\"geist\"}":{"id":70127,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-mono\"}],\"variableName\":\"geistMono\"}":{"id":44176,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/globals.css":{"id":41290,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/environments/page.tsx":{"id":11509,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/models/page.tsx":{"id":64441,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/page.tsx":{"id":72417,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","22","static/chunks/22-1934dc9c2e544aa9.js","974","static/chunks/app/page-57dce47ff6c00ddd.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/sessions/[traceId]/page.tsx":{"id":37373,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/handoffkit/handoffkit/apps/scope/":[],"/home/runner/work/handoffkit/handoffkit/apps/scope/app/layout":[{"inlined":false,"path":"static/css/d57be8dcbceccbc1.css"}],"/home/runner/work/handoffkit/handoffkit/apps/scope/app/page":[],"/home/runner/work/handoffkit/handoffkit/apps/scope/app/_not-found/page":[]},"rscModuleMapping":{"9766":{"*":{"id":"6060","name":"*","chunks":[],"async":false}},"11509":{"*":{"id":"86851","name":"*","chunks":[],"async":false}},"15278":{"*":{"id":"7184","name":"*","chunks":[],"async":false}},"17989":{"*":{"id":"36893","name":"*","chunks":[],"async":false}},"24431":{"*":{"id":"73041","name":"*","chunks":[],"async":false}},"31327":{"*":{"id":"36755","name":"*","chunks":[],"async":false}},"37373":{"*":{"id":"66381","name":"*","chunks":[],"async":false}},"41290":{"*":{"id":"82704","name":"*","chunks":[],"async":false}},"54664":{"*":{"id":"54814","name":"*","chunks":[],"async":false}},"57150":{"*":{"id":"81170","name":"*","chunks":[],"async":false}},"63886":{"*":{"id":"89748","name":"*","chunks":[],"async":false}},"64441":{"*":{"id":"21399","name":"*","chunks":[],"async":false}},"72417":{"*":{"id":"17742","name":"*","chunks":[],"async":false}},"80622":{"*":{"id":"51384","name":"*","chunks":[],"async":false}},"81959":{"*":{"id":"23597","name":"*","chunks":[],"async":false}},"82180":{"*":{"id":"76786","name":"*","chunks":[],"async":false}},"98924":{"*":{"id":"69576","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}}
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_not-found/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"9766":{"*":{"id":"77526","name":"*","chunks":[],"async":false}},"11509":{"*":{"id":"94466","name":"*","chunks":[],"async":false}},"15278":{"*":{"id":"78922","name":"*","chunks":[],"async":false}},"17989":{"*":{"id":"68495","name":"*","chunks":[],"async":false}},"24431":{"*":{"id":"12263","name":"*","chunks":[],"async":false}},"31327":{"*":{"id":"33069","name":"*","chunks":[],"async":false}},"37373":{"*":{"id":"72400","name":"*","chunks":[],"async":false}},"54664":{"*":{"id":"8044","name":"*","chunks":[],"async":false}},"57150":{"*":{"id":"54160","name":"*","chunks":[],"async":false}},"63886":{"*":{"id":"75170","name":"*","chunks":[],"async":false}},"64441":{"*":{"id":"75780","name":"*","chunks":[],"async":false}},"72417":{"*":{"id":"10371","name":"*","chunks":[],"async":false}},"80622":{"*":{"id":"82146","name":"*","chunks":[],"async":false}},"81959":{"*":{"id":"31603","name":"*","chunks":[],"async":false}},"82180":{"*":{"id":"36736","name":"*","chunks":[],"async":false}},"98924":{"*":{"id":"29234","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/builtin/global-error.js":{"id":57150,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":57150,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/client-page.js":{"id":81959,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/client-page.js":{"id":81959,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/client-segment.js":{"id":17989,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/client-segment.js":{"id":17989,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":63886,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":63886,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/layout-router.js":{"id":9766,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/layout-router.js":{"id":9766,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":15278,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":15278,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/render-from-template-context.js":{"id":98924,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":98924,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/lib/framework/boundary-components.js":{"id":24431,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":24431,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":80622,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":80622,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/components/scope/sidebar-nav.tsx":{"id":31327,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/components/ui/separator.tsx":{"id":54664,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/components/ui/tooltip.tsx":{"id":82180,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-sans\"}],\"variableName\":\"geist\"}":{"id":70127,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-mono\"}],\"variableName\":\"geistMono\"}":{"id":44176,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/globals.css":{"id":41290,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/environments/page.tsx":{"id":11509,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/models/page.tsx":{"id":64441,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/sessions/[traceId]/page.tsx":{"id":37373,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/page.tsx":{"id":72417,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","22","static/chunks/22-1934dc9c2e544aa9.js","974","static/chunks/app/page-57dce47ff6c00ddd.js"],"async":false}},"entryCSSFiles":{"/home/runner/work/handoffkit/handoffkit/apps/scope/":[],"/home/runner/work/handoffkit/handoffkit/apps/scope/app/layout":[{"inlined":false,"path":"static/css/d57be8dcbceccbc1.css"}],"/home/runner/work/handoffkit/handoffkit/apps/scope/app/page":[],"/home/runner/work/handoffkit/handoffkit/apps/scope/app/_not-found/page":[]},"rscModuleMapping":{"9766":{"*":{"id":"6060","name":"*","chunks":[],"async":false}},"11509":{"*":{"id":"86851","name":"*","chunks":[],"async":false}},"15278":{"*":{"id":"7184","name":"*","chunks":[],"async":false}},"17989":{"*":{"id":"36893","name":"*","chunks":[],"async":false}},"24431":{"*":{"id":"73041","name":"*","chunks":[],"async":false}},"31327":{"*":{"id":"36755","name":"*","chunks":[],"async":false}},"37373":{"*":{"id":"66381","name":"*","chunks":[],"async":false}},"41290":{"*":{"id":"82704","name":"*","chunks":[],"async":false}},"54664":{"*":{"id":"54814","name":"*","chunks":[],"async":false}},"57150":{"*":{"id":"81170","name":"*","chunks":[],"async":false}},"63886":{"*":{"id":"89748","name":"*","chunks":[],"async":false}},"64441":{"*":{"id":"21399","name":"*","chunks":[],"async":false}},"72417":{"*":{"id":"17742","name":"*","chunks":[],"async":false}},"80622":{"*":{"id":"51384","name":"*","chunks":[],"async":false}},"81959":{"*":{"id":"23597","name":"*","chunks":[],"async":false}},"82180":{"*":{"id":"76786","name":"*","chunks":[],"async":false}},"98924":{"*":{"id":"69576","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}}
@@ -1 +1 @@
1
- <!DOCTYPE html><!--x7wPUCpgS31_5ZHJkcKsU--><html lang="en" class="dark __variable_246ccd __variable_c29908"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/22a5144ee8d83bca-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/7d4881bb7e1bf84d-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/d57be8dcbceccbc1.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-4501ec292abda191.js"/><script src="/_next/static/chunks/4bd1b696-409494caf8c83275.js" async=""></script><script src="/_next/static/chunks/255-69a4a78fac9becef.js" async=""></script><script src="/_next/static/chunks/main-app-2a6b1f94de31f96f.js" async=""></script><script src="/_next/static/chunks/239-1c69ce437d02745f.js" async=""></script><script src="/_next/static/chunks/989-1c7081e9fd5c9b9d.js" async=""></script><script src="/_next/static/chunks/app/layout-d12f7c5cc80486b4.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>scope — fusion observability</title><meta name="description" content="Live observability for the FusionKit + HandoffKit + Cursorkit stack"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="antialiased"><div hidden=""><!--$--><!--/$--></div><div class="flex h-screen overflow-hidden"><aside class="bg-sidebar text-sidebar-foreground flex w-60 shrink-0 flex-col overflow-y-auto border-r p-5"><div class="flex items-center gap-2"><span class="bg-primary inline-block size-2.5 rounded-full"></span><div><div class="text-base font-semibold tracking-tight">scope</div><div class="text-muted-foreground text-xs">fusion observability</div></div></div><div data-orientation="horizontal" role="none" data-slot="separator" class="shrink-0 bg-border data-horizontal:h-px data-horizontal:w-full data-vertical:w-px data-vertical:self-stretch my-5"></div><nav class="flex flex-col gap-1"><a class="rounded-md px-3 py-2 text-sm font-medium transition-colors text-muted-foreground hover:bg-accent hover:text-foreground" href="/">Sessions</a><a class="rounded-md px-3 py-2 text-sm font-medium transition-colors text-muted-foreground hover:bg-accent hover:text-foreground" href="/models">Models</a><a class="rounded-md px-3 py-2 text-sm font-medium transition-colors text-muted-foreground hover:bg-accent hover:text-foreground" href="/environments">Environments</a></nav><div class="text-muted-foreground mt-auto pt-8 text-[11px] leading-relaxed">Tails the fusion-trace event spine across FusionKit, HandoffKit, and Cursorkit.</div></aside><main class="min-w-0 flex-1 overflow-x-hidden overflow-y-auto"><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--></main></div><script src="/_next/static/chunks/webpack-4501ec292abda191.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[82180,[\"239\",\"static/chunks/239-1c69ce437d02745f.js\",\"989\",\"static/chunks/989-1c7081e9fd5c9b9d.js\",\"177\",\"static/chunks/app/layout-d12f7c5cc80486b4.js\"],\"TooltipProvider\"]\n3:I[54664,[\"239\",\"static/chunks/239-1c69ce437d02745f.js\",\"989\",\"static/chunks/989-1c7081e9fd5c9b9d.js\",\"177\",\"static/chunks/app/layout-d12f7c5cc80486b4.js\"],\"Separator\"]\n4:I[31327,[\"239\",\"static/chunks/239-1c69ce437d02745f.js\",\"989\",\"static/chunks/989-1c7081e9fd5c9b9d.js\",\"177\",\"static/chunks/app/layout-d12f7c5cc80486b4.js\"],\"SidebarNav\"]\n5:I[9766,[],\"\"]\n6:I[98924,[],\"\"]\n7:I[24431,[],\"OutletBoundary\"]\n9:I[15278,[],\"AsyncMetadataOutlet\"]\nb:I[24431,[],\"ViewportBoundary\"]\nd:I[24431,[],\"MetadataBoundary\"]\ne:\"$Sreact.suspense\"\n10:I[57150,[],\"\"]\n:HL[\"/_next/static/media/22a5144ee8d83bca-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/7d4881bb7e1bf84d-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/d57be8dcbceccbc1.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"x7wPUCpgS31-5ZHJkcKsU\",\"p\":\"\",\"c\":[\"\",\"_not-found\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/d57be8dcbceccbc1.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark __variable_246ccd __variable_c29908\",\"children\":[\"$\",\"body\",null,{\"className\":\"antialiased\",\"children\":[\"$\",\"$L2\",null,{\"delayDuration\":200,\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-screen overflow-hidden\",\"children\":[[\"$\",\"aside\",null,{\"className\":\"bg-sidebar text-sidebar-foreground flex w-60 shrink-0 flex-col overflow-y-auto border-r p-5\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex items-center gap-2\",\"children\":[[\"$\",\"span\",null,{\"className\":\"bg-primary inline-block size-2.5 rounded-full\"}],[\"$\",\"div\",null,{\"children\":[[\"$\",\"div\",null,{\"className\":\"text-base font-semibold tracking-tight\",\"children\":\"scope\"}],[\"$\",\"div\",null,{\"className\":\"text-muted-foreground text-xs\",\"children\":\"fusion observability\"}]]}]]}],[\"$\",\"$L3\",null,{\"className\":\"my-5\"}],[\"$\",\"$L4\",null,{}],[\"$\",\"div\",null,{\"className\":\"text-muted-foreground mt-auto pt-8 text-[11px] leading-relaxed\",\"children\":\"Tails the fusion-trace event spine across FusionKit, HandoffKit, and Cursorkit.\"}]]}],[\"$\",\"main\",null,{\"className\":\"min-w-0 flex-1 overflow-x-hidden overflow-y-auto\",\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"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.\"}]}]]}]}]],null,[\"$\",\"$L7\",null,{\"children\":[\"$L8\",[\"$\",\"$L9\",null,{\"promise\":\"$@a\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[[\"$\",\"$Lb\",null,{\"children\":\"$Lc\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$Ld\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$e\",null,{\"fallback\":null,\"children\":\"$Lf\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$10\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"c:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n8:null\n"])</script><script>self.__next_f.push([1,"a:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"scope — fusion observability\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Live observability for the FusionKit + HandoffKit + Cursorkit stack\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"f:\"$a:metadata\"\n"])</script></body></html>
1
+ <!DOCTYPE html><!--DyybY5vozMobja2_GQ4Tu--><html lang="en" class="dark __variable_246ccd __variable_c29908"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="preload" href="/_next/static/media/22a5144ee8d83bca-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="preload" href="/_next/static/media/7d4881bb7e1bf84d-s.p.woff2" as="font" crossorigin="" type="font/woff2"/><link rel="stylesheet" href="/_next/static/css/d57be8dcbceccbc1.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-4501ec292abda191.js"/><script src="/_next/static/chunks/4bd1b696-409494caf8c83275.js" async=""></script><script src="/_next/static/chunks/255-69a4a78fac9becef.js" async=""></script><script src="/_next/static/chunks/main-app-2a6b1f94de31f96f.js" async=""></script><script src="/_next/static/chunks/239-1c69ce437d02745f.js" async=""></script><script src="/_next/static/chunks/989-1c7081e9fd5c9b9d.js" async=""></script><script src="/_next/static/chunks/app/layout-d12f7c5cc80486b4.js" async=""></script><meta name="robots" content="noindex"/><meta name="next-size-adjust" content=""/><title>404: This page could not be found.</title><title>scope — fusion observability</title><meta name="description" content="Live observability for the FusionKit + HandoffKit + Cursorkit stack"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="antialiased"><div hidden=""><!--$--><!--/$--></div><div class="flex h-screen overflow-hidden"><aside class="bg-sidebar text-sidebar-foreground flex w-60 shrink-0 flex-col overflow-y-auto border-r p-5"><div class="flex items-center gap-2"><span class="bg-primary inline-block size-2.5 rounded-full"></span><div><div class="text-base font-semibold tracking-tight">scope</div><div class="text-muted-foreground text-xs">fusion observability</div></div></div><div data-orientation="horizontal" role="none" data-slot="separator" class="shrink-0 bg-border data-horizontal:h-px data-horizontal:w-full data-vertical:w-px data-vertical:self-stretch my-5"></div><nav class="flex flex-col gap-1"><a class="rounded-md px-3 py-2 text-sm font-medium transition-colors text-muted-foreground hover:bg-accent hover:text-foreground" href="/">Sessions</a><a class="rounded-md px-3 py-2 text-sm font-medium transition-colors text-muted-foreground hover:bg-accent hover:text-foreground" href="/models">Models</a><a class="rounded-md px-3 py-2 text-sm font-medium transition-colors text-muted-foreground hover:bg-accent hover:text-foreground" href="/environments">Environments</a></nav><div class="text-muted-foreground mt-auto pt-8 text-[11px] leading-relaxed">Tails the fusion-trace event spine across FusionKit, HandoffKit, and Cursorkit.</div></aside><main class="min-w-0 flex-1 overflow-x-hidden overflow-y-auto"><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--></main></div><script src="/_next/static/chunks/webpack-4501ec292abda191.js" id="_R_" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"1:\"$Sreact.fragment\"\n2:I[82180,[\"239\",\"static/chunks/239-1c69ce437d02745f.js\",\"989\",\"static/chunks/989-1c7081e9fd5c9b9d.js\",\"177\",\"static/chunks/app/layout-d12f7c5cc80486b4.js\"],\"TooltipProvider\"]\n3:I[54664,[\"239\",\"static/chunks/239-1c69ce437d02745f.js\",\"989\",\"static/chunks/989-1c7081e9fd5c9b9d.js\",\"177\",\"static/chunks/app/layout-d12f7c5cc80486b4.js\"],\"Separator\"]\n4:I[31327,[\"239\",\"static/chunks/239-1c69ce437d02745f.js\",\"989\",\"static/chunks/989-1c7081e9fd5c9b9d.js\",\"177\",\"static/chunks/app/layout-d12f7c5cc80486b4.js\"],\"SidebarNav\"]\n5:I[9766,[],\"\"]\n6:I[98924,[],\"\"]\n7:I[24431,[],\"OutletBoundary\"]\n9:I[15278,[],\"AsyncMetadataOutlet\"]\nb:I[24431,[],\"ViewportBoundary\"]\nd:I[24431,[],\"MetadataBoundary\"]\ne:\"$Sreact.suspense\"\n10:I[57150,[],\"\"]\n:HL[\"/_next/static/media/22a5144ee8d83bca-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/media/7d4881bb7e1bf84d-s.p.woff2\",\"font\",{\"crossOrigin\":\"\",\"type\":\"font/woff2\"}]\n:HL[\"/_next/static/css/d57be8dcbceccbc1.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"DyybY5vozMobja2-GQ4Tu\",\"p\":\"\",\"c\":[\"\",\"_not-found\"],\"i\":false,\"f\":[[[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],[\"\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/d57be8dcbceccbc1.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"className\":\"dark __variable_246ccd __variable_c29908\",\"children\":[\"$\",\"body\",null,{\"className\":\"antialiased\",\"children\":[\"$\",\"$L2\",null,{\"delayDuration\":200,\"children\":[\"$\",\"div\",null,{\"className\":\"flex h-screen overflow-hidden\",\"children\":[[\"$\",\"aside\",null,{\"className\":\"bg-sidebar text-sidebar-foreground flex w-60 shrink-0 flex-col overflow-y-auto border-r p-5\",\"children\":[[\"$\",\"div\",null,{\"className\":\"flex items-center gap-2\",\"children\":[[\"$\",\"span\",null,{\"className\":\"bg-primary inline-block size-2.5 rounded-full\"}],[\"$\",\"div\",null,{\"children\":[[\"$\",\"div\",null,{\"className\":\"text-base font-semibold tracking-tight\",\"children\":\"scope\"}],[\"$\",\"div\",null,{\"className\":\"text-muted-foreground text-xs\",\"children\":\"fusion observability\"}]]}]]}],[\"$\",\"$L3\",null,{\"className\":\"my-5\"}],[\"$\",\"$L4\",null,{}],[\"$\",\"div\",null,{\"className\":\"text-muted-foreground mt-auto pt-8 text-[11px] leading-relaxed\",\"children\":\"Tails the fusion-trace event spine across FusionKit, HandoffKit, and Cursorkit.\"}]]}],[\"$\",\"main\",null,{\"className\":\"min-w-0 flex-1 overflow-x-hidden overflow-y-auto\",\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]]}]}]}]}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__PAGE__\",[\"$\",\"$1\",\"c\",{\"children\":[[[\"$\",\"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.\"}]}]]}]}]],null,[\"$\",\"$L7\",null,{\"children\":[\"$L8\",[\"$\",\"$L9\",null,{\"promise\":\"$@a\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[[\"$\",\"$Lb\",null,{\"children\":\"$Lc\"}],[\"$\",\"meta\",null,{\"name\":\"next-size-adjust\",\"content\":\"\"}]],[\"$\",\"$Ld\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$e\",null,{\"fallback\":null,\"children\":\"$Lf\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$10\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"c:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n8:null\n"])</script><script>self.__next_f.push([1,"a:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"scope — fusion observability\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Live observability for the FusionKit + HandoffKit + Cursorkit stack\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"f:\"$a:metadata\"\n"])</script></body></html>
@@ -13,7 +13,7 @@ e:"$Sreact.suspense"
13
13
  :HL["/_next/static/media/22a5144ee8d83bca-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
14
14
  :HL["/_next/static/media/7d4881bb7e1bf84d-s.p.woff2","font",{"crossOrigin":"","type":"font/woff2"}]
15
15
  :HL["/_next/static/css/d57be8dcbceccbc1.css","style"]
16
- 0:{"P":null,"b":"x7wPUCpgS31-5ZHJkcKsU","p":"","c":["","_not-found"],"i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/d57be8dcbceccbc1.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark __variable_246ccd __variable_c29908","children":["$","body",null,{"className":"antialiased","children":["$","$L2",null,{"delayDuration":200,"children":["$","div",null,{"className":"flex h-screen overflow-hidden","children":[["$","aside",null,{"className":"bg-sidebar text-sidebar-foreground flex w-60 shrink-0 flex-col overflow-y-auto border-r p-5","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","span",null,{"className":"bg-primary inline-block size-2.5 rounded-full"}],["$","div",null,{"children":[["$","div",null,{"className":"text-base font-semibold tracking-tight","children":"scope"}],["$","div",null,{"className":"text-muted-foreground text-xs","children":"fusion observability"}]]}]]}],["$","$L3",null,{"className":"my-5"}],["$","$L4",null,{}],["$","div",null,{"className":"text-muted-foreground mt-auto pt-8 text-[11px] leading-relaxed","children":"Tails the fusion-trace event spine across FusionKit, HandoffKit, and Cursorkit."}]]}],["$","main",null,{"className":"min-w-0 flex-1 overflow-x-hidden overflow-y-auto","children":["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]}]]}],{"children":["/_not-found",["$","$1","c",{"children":[null,["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[[["$","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."}]}]]}]}]],null,["$","$L7",null,{"children":["$L8",["$","$L9",null,{"promise":"$@a"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],[["$","$Lb",null,{"children":"$Lc"}],["$","meta",null,{"name":"next-size-adjust","content":""}]],["$","$Ld",null,{"children":["$","div",null,{"hidden":true,"children":["$","$e",null,{"fallback":null,"children":"$Lf"}]}]}]]}],false]],"m":"$undefined","G":["$10",[]],"s":false,"S":true}
16
+ 0:{"P":null,"b":"DyybY5vozMobja2-GQ4Tu","p":"","c":["","_not-found"],"i":false,"f":[[["",{"children":["/_not-found",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",["$","$1","c",{"children":[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/d57be8dcbceccbc1.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","className":"dark __variable_246ccd __variable_c29908","children":["$","body",null,{"className":"antialiased","children":["$","$L2",null,{"delayDuration":200,"children":["$","div",null,{"className":"flex h-screen overflow-hidden","children":[["$","aside",null,{"className":"bg-sidebar text-sidebar-foreground flex w-60 shrink-0 flex-col overflow-y-auto border-r p-5","children":[["$","div",null,{"className":"flex items-center gap-2","children":[["$","span",null,{"className":"bg-primary inline-block size-2.5 rounded-full"}],["$","div",null,{"children":[["$","div",null,{"className":"text-base font-semibold tracking-tight","children":"scope"}],["$","div",null,{"className":"text-muted-foreground text-xs","children":"fusion observability"}]]}]]}],["$","$L3",null,{"className":"my-5"}],["$","$L4",null,{}],["$","div",null,{"className":"text-muted-foreground mt-auto pt-8 text-[11px] leading-relaxed","children":"Tails the fusion-trace event spine across FusionKit, HandoffKit, and Cursorkit."}]]}],["$","main",null,{"className":"min-w-0 flex-1 overflow-x-hidden overflow-y-auto","children":["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]}]]}]}]}]}]]}],{"children":["/_not-found",["$","$1","c",{"children":[null,["$","$L5",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__PAGE__",["$","$1","c",{"children":[[["$","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."}]}]]}]}]],null,["$","$L7",null,{"children":["$L8",["$","$L9",null,{"promise":"$@a"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],[["$","$Lb",null,{"children":"$Lc"}],["$","meta",null,{"name":"next-size-adjust","content":""}]],["$","$Ld",null,{"children":["$","div",null,{"hidden":true,"children":["$","$e",null,{"fallback":null,"children":"$Lf"}]}]}]]}],false]],"m":"$undefined","G":["$10",[]],"s":false,"S":true}
17
17
  c:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
18
18
  8:null
19
19
  a:{"metadata":[["$","title","0",{"children":"scope — fusion observability"}],["$","meta","1",{"name":"description","content":"Live observability for the FusionKit + HandoffKit + Cursorkit stack"}]],"error":null,"digest":"$undefined"}
@@ -1 +1 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/environments/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"9766":{"*":{"id":"77526","name":"*","chunks":[],"async":false}},"11509":{"*":{"id":"94466","name":"*","chunks":[],"async":false}},"15278":{"*":{"id":"78922","name":"*","chunks":[],"async":false}},"17989":{"*":{"id":"68495","name":"*","chunks":[],"async":false}},"24431":{"*":{"id":"12263","name":"*","chunks":[],"async":false}},"31327":{"*":{"id":"33069","name":"*","chunks":[],"async":false}},"37373":{"*":{"id":"72400","name":"*","chunks":[],"async":false}},"54664":{"*":{"id":"8044","name":"*","chunks":[],"async":false}},"57150":{"*":{"id":"54160","name":"*","chunks":[],"async":false}},"63886":{"*":{"id":"75170","name":"*","chunks":[],"async":false}},"64441":{"*":{"id":"75780","name":"*","chunks":[],"async":false}},"72417":{"*":{"id":"10371","name":"*","chunks":[],"async":false}},"80622":{"*":{"id":"82146","name":"*","chunks":[],"async":false}},"81959":{"*":{"id":"31603","name":"*","chunks":[],"async":false}},"82180":{"*":{"id":"36736","name":"*","chunks":[],"async":false}},"98924":{"*":{"id":"29234","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/builtin/global-error.js":{"id":57150,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":57150,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/client-page.js":{"id":81959,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/client-page.js":{"id":81959,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/client-segment.js":{"id":17989,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/client-segment.js":{"id":17989,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":63886,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":63886,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/layout-router.js":{"id":9766,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/layout-router.js":{"id":9766,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":15278,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":15278,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/render-from-template-context.js":{"id":98924,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":98924,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/lib/framework/boundary-components.js":{"id":24431,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":24431,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":80622,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":80622,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/components/scope/sidebar-nav.tsx":{"id":31327,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/components/ui/separator.tsx":{"id":54664,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/components/ui/tooltip.tsx":{"id":82180,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-sans\"}],\"variableName\":\"geist\"}":{"id":70127,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-mono\"}],\"variableName\":\"geistMono\"}":{"id":44176,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/globals.css":{"id":41290,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/environments/page.tsx":{"id":11509,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/models/page.tsx":{"id":64441,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/page.tsx":{"id":72417,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","22","static/chunks/22-1934dc9c2e544aa9.js","974","static/chunks/app/page-57dce47ff6c00ddd.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/sessions/[traceId]/page.tsx":{"id":37373,"name":"*","chunks":[],"async":false}},"entryCSSFiles":{"/home/runner/work/handoffkit/handoffkit/apps/scope/":[],"/home/runner/work/handoffkit/handoffkit/apps/scope/app/layout":[{"inlined":false,"path":"static/css/d57be8dcbceccbc1.css"}],"/home/runner/work/handoffkit/handoffkit/apps/scope/app/page":[],"/home/runner/work/handoffkit/handoffkit/apps/scope/app/api/environments/route":[]},"rscModuleMapping":{"9766":{"*":{"id":"6060","name":"*","chunks":[],"async":false}},"11509":{"*":{"id":"86851","name":"*","chunks":[],"async":false}},"15278":{"*":{"id":"7184","name":"*","chunks":[],"async":false}},"17989":{"*":{"id":"36893","name":"*","chunks":[],"async":false}},"24431":{"*":{"id":"73041","name":"*","chunks":[],"async":false}},"31327":{"*":{"id":"36755","name":"*","chunks":[],"async":false}},"37373":{"*":{"id":"66381","name":"*","chunks":[],"async":false}},"41290":{"*":{"id":"82704","name":"*","chunks":[],"async":false}},"54664":{"*":{"id":"54814","name":"*","chunks":[],"async":false}},"57150":{"*":{"id":"81170","name":"*","chunks":[],"async":false}},"63886":{"*":{"id":"89748","name":"*","chunks":[],"async":false}},"64441":{"*":{"id":"21399","name":"*","chunks":[],"async":false}},"72417":{"*":{"id":"17742","name":"*","chunks":[],"async":false}},"80622":{"*":{"id":"51384","name":"*","chunks":[],"async":false}},"81959":{"*":{"id":"23597","name":"*","chunks":[],"async":false}},"82180":{"*":{"id":"76786","name":"*","chunks":[],"async":false}},"98924":{"*":{"id":"69576","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}}
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/environments/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"9766":{"*":{"id":"77526","name":"*","chunks":[],"async":false}},"11509":{"*":{"id":"94466","name":"*","chunks":[],"async":false}},"15278":{"*":{"id":"78922","name":"*","chunks":[],"async":false}},"17989":{"*":{"id":"68495","name":"*","chunks":[],"async":false}},"24431":{"*":{"id":"12263","name":"*","chunks":[],"async":false}},"31327":{"*":{"id":"33069","name":"*","chunks":[],"async":false}},"37373":{"*":{"id":"72400","name":"*","chunks":[],"async":false}},"54664":{"*":{"id":"8044","name":"*","chunks":[],"async":false}},"57150":{"*":{"id":"54160","name":"*","chunks":[],"async":false}},"63886":{"*":{"id":"75170","name":"*","chunks":[],"async":false}},"64441":{"*":{"id":"75780","name":"*","chunks":[],"async":false}},"72417":{"*":{"id":"10371","name":"*","chunks":[],"async":false}},"80622":{"*":{"id":"82146","name":"*","chunks":[],"async":false}},"81959":{"*":{"id":"31603","name":"*","chunks":[],"async":false}},"82180":{"*":{"id":"36736","name":"*","chunks":[],"async":false}},"98924":{"*":{"id":"29234","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/builtin/global-error.js":{"id":57150,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":57150,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/client-page.js":{"id":81959,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/client-page.js":{"id":81959,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/client-segment.js":{"id":17989,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/client-segment.js":{"id":17989,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":63886,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":63886,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/layout-router.js":{"id":9766,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/layout-router.js":{"id":9766,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":15278,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":15278,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/client/components/render-from-template-context.js":{"id":98924,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":98924,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/lib/framework/boundary-components.js":{"id":24431,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":24431,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":80622,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":80622,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/components/scope/sidebar-nav.tsx":{"id":31327,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/components/ui/separator.tsx":{"id":54664,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/components/ui/tooltip.tsx":{"id":82180,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-sans\"}],\"variableName\":\"geist\"}":{"id":70127,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/node_modules/next/font/google/target.css?{\"path\":\"app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"subsets\":[\"latin\"],\"variable\":\"--font-mono\"}],\"variableName\":\"geistMono\"}":{"id":44176,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/globals.css":{"id":41290,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","177","static/chunks/app/layout-d12f7c5cc80486b4.js"],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/environments/page.tsx":{"id":11509,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/models/page.tsx":{"id":64441,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/sessions/[traceId]/page.tsx":{"id":37373,"name":"*","chunks":[],"async":false},"/home/runner/work/handoffkit/handoffkit/apps/scope/app/page.tsx":{"id":72417,"name":"*","chunks":["239","static/chunks/239-1c69ce437d02745f.js","989","static/chunks/989-1c7081e9fd5c9b9d.js","22","static/chunks/22-1934dc9c2e544aa9.js","974","static/chunks/app/page-57dce47ff6c00ddd.js"],"async":false}},"entryCSSFiles":{"/home/runner/work/handoffkit/handoffkit/apps/scope/":[],"/home/runner/work/handoffkit/handoffkit/apps/scope/app/layout":[{"inlined":false,"path":"static/css/d57be8dcbceccbc1.css"}],"/home/runner/work/handoffkit/handoffkit/apps/scope/app/page":[],"/home/runner/work/handoffkit/handoffkit/apps/scope/app/api/environments/route":[]},"rscModuleMapping":{"9766":{"*":{"id":"6060","name":"*","chunks":[],"async":false}},"11509":{"*":{"id":"86851","name":"*","chunks":[],"async":false}},"15278":{"*":{"id":"7184","name":"*","chunks":[],"async":false}},"17989":{"*":{"id":"36893","name":"*","chunks":[],"async":false}},"24431":{"*":{"id":"73041","name":"*","chunks":[],"async":false}},"31327":{"*":{"id":"36755","name":"*","chunks":[],"async":false}},"37373":{"*":{"id":"66381","name":"*","chunks":[],"async":false}},"41290":{"*":{"id":"82704","name":"*","chunks":[],"async":false}},"54664":{"*":{"id":"54814","name":"*","chunks":[],"async":false}},"57150":{"*":{"id":"81170","name":"*","chunks":[],"async":false}},"63886":{"*":{"id":"89748","name":"*","chunks":[],"async":false}},"64441":{"*":{"id":"21399","name":"*","chunks":[],"async":false}},"72417":{"*":{"id":"17742","name":"*","chunks":[],"async":false}},"80622":{"*":{"id":"51384","name":"*","chunks":[],"async":false}},"81959":{"*":{"id":"23597","name":"*","chunks":[],"async":false}},"82180":{"*":{"id":"76786","name":"*","chunks":[],"async":false}},"98924":{"*":{"id":"69576","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{}}