cordn8 1.0.3 → 1.0.4

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 (35) hide show
  1. package/bin/cordn8 +30 -0
  2. package/dist/commands/start.d.ts.map +1 -1
  3. package/dist/commands/start.js +73 -2
  4. package/dist/commands/start.js.map +1 -1
  5. package/dist/web/apps/web/.next/BUILD_ID +1 -1
  6. package/dist/web/apps/web/.next/app-build-manifest.json +26 -26
  7. package/dist/web/apps/web/.next/app-path-routes-manifest.json +6 -6
  8. package/dist/web/apps/web/.next/build-manifest.json +2 -2
  9. package/dist/web/apps/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  10. package/dist/web/apps/web/.next/server/app/_not-found.html +1 -1
  11. package/dist/web/apps/web/.next/server/app/_not-found.rsc +1 -1
  12. package/dist/web/apps/web/.next/server/app/api/activity/route_client-reference-manifest.js +1 -1
  13. package/dist/web/apps/web/.next/server/app/api/doctor/route_client-reference-manifest.js +1 -1
  14. package/dist/web/apps/web/.next/server/app/api/events/tail/route_client-reference-manifest.js +1 -1
  15. package/dist/web/apps/web/.next/server/app/api/insights/route_client-reference-manifest.js +1 -1
  16. package/dist/web/apps/web/.next/server/app/api/mode/route_client-reference-manifest.js +1 -1
  17. package/dist/web/apps/web/.next/server/app/api/optimizations/route_client-reference-manifest.js +1 -1
  18. package/dist/web/apps/web/.next/server/app/api/projects/route_client-reference-manifest.js +1 -1
  19. package/dist/web/apps/web/.next/server/app/api/state/route_client-reference-manifest.js +1 -1
  20. package/dist/web/apps/web/.next/server/app/api/telemetry/route_client-reference-manifest.js +1 -1
  21. package/dist/web/apps/web/.next/server/app/api/trust/history/route_client-reference-manifest.js +1 -1
  22. package/dist/web/apps/web/.next/server/app/api/trust/route_client-reference-manifest.js +1 -1
  23. package/dist/web/apps/web/.next/server/app/index.html +1 -1
  24. package/dist/web/apps/web/.next/server/app/index.rsc +1 -1
  25. package/dist/web/apps/web/.next/server/app/page_client-reference-manifest.js +1 -1
  26. package/dist/web/apps/web/.next/server/app/project/[id]/page_client-reference-manifest.js +1 -1
  27. package/dist/web/apps/web/.next/server/app/project/[id]/timeline/page_client-reference-manifest.js +1 -1
  28. package/dist/web/apps/web/.next/server/app/project/[id]/trust/page_client-reference-manifest.js +1 -1
  29. package/dist/web/apps/web/.next/server/app-paths-manifest.json +6 -6
  30. package/dist/web/apps/web/.next/server/pages/404.html +1 -1
  31. package/dist/web/apps/web/.next/server/pages/500.html +1 -1
  32. package/dist/web/package.json +2 -2
  33. package/package.json +2 -2
  34. /package/dist/web/apps/web/.next/static/{u2fVjNEB6rJuGzAjbfwHv → L8Dng3zo9fc7mhM4g9p_R}/_buildManifest.js +0 -0
  35. /package/dist/web/apps/web/.next/static/{u2fVjNEB6rJuGzAjbfwHv → L8Dng3zo9fc7mhM4g9p_R}/_ssgManifest.js +0 -0
package/bin/cordn8 ADDED
@@ -0,0 +1,30 @@
1
+ #!/bin/sh
2
+ # V1.0.4: macOS MallocStackLogging warning suppression.
3
+ #
4
+ # When MallocStackLogging is set in the user's environment (often left
5
+ # over from Xcode Instruments or a debugger config), libsystem_malloc.dylib
6
+ # emits warnings on every Node process startup, BEFORE any JavaScript
7
+ # runs. We can't suppress the parent warning from inside JS — it's already
8
+ # fired by the time __filename loads.
9
+ #
10
+ # This shell wrapper runs first, scrubs the env vars, then exec's node on
11
+ # the actual JS entrypoint. Result: zero MallocStackLogging warnings on
12
+ # macOS regardless of what the user has set globally.
13
+ #
14
+ # Resolves $0 through symlinks since npm typically symlinks the bin into
15
+ # /usr/local/bin/cordn8 → <pkg>/bin/cordn8.
16
+
17
+ unset MallocStackLogging MallocStackLoggingNoCompact MallocStackLoggingDirectory
18
+
19
+ # Resolve symlinks portably (no GNU readlink -f dependency)
20
+ SCRIPT_PATH="$0"
21
+ while [ -L "$SCRIPT_PATH" ]; do
22
+ LINK_TARGET="$(readlink "$SCRIPT_PATH")"
23
+ case "$LINK_TARGET" in
24
+ /*) SCRIPT_PATH="$LINK_TARGET" ;;
25
+ *) SCRIPT_PATH="$(dirname "$SCRIPT_PATH")/$LINK_TARGET" ;;
26
+ esac
27
+ done
28
+ SCRIPT_DIR="$(cd "$(dirname "$SCRIPT_PATH")" && pwd)"
29
+
30
+ exec node "$SCRIPT_DIR/../dist/cli.js" "$@"
@@ -1 +1 @@
1
- {"version":3,"file":"start.d.ts","sourceRoot":"","sources":["../../src/commands/start.ts"],"names":[],"mappings":"AAMA,wBAAsB,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC,CA0C9C"}
1
+ {"version":3,"file":"start.d.ts","sourceRoot":"","sources":["../../src/commands/start.ts"],"names":[],"mappings":"AA4BA,wBAAsB,QAAQ,IAAI,OAAO,CAAC,IAAI,CAAC,CA0F9C"}
@@ -6,15 +6,46 @@ const init_1 = require("./init");
6
6
  const send_1 = require("./send");
7
7
  const status_1 = require("./status");
8
8
  const logger_1 = require("../utils/logger");
9
+ const project_1 = require("../discovery/project");
10
+ const config_1 = require("../storage/config");
11
+ /**
12
+ * V1.0.4: list registered agents in this project. Used by:
13
+ * - the Send wizard to populate a real recipient dropdown (replacing the
14
+ * `default: 'Agent'` placeholder that landed messages with nobody)
15
+ * - the wizard menu to detect the "no agents registered yet" state and
16
+ * nudge new users to register one before sending
17
+ */
18
+ async function listRegisteredAgents() {
19
+ try {
20
+ const root = (0, project_1.discoverProjectRoot)();
21
+ const config = await (0, config_1.loadConfig)(root);
22
+ if (!config)
23
+ return [];
24
+ return (config.channel.agents || [])
25
+ .filter(a => a.is_active !== false)
26
+ .map(a => a.name);
27
+ }
28
+ catch {
29
+ return [];
30
+ }
31
+ }
9
32
  async function runStart() {
10
33
  logger_1.logger.title('Cordn8 Interactive Wizard');
11
34
  logger_1.logger.info('Welcome! This wizard will guide you through the basics of Cordn8.\n');
12
35
  let keepGoing = true;
13
36
  while (keepGoing) {
37
+ const registered = await listRegisteredAgents();
14
38
  const action = await (0, prompts_1.select)({
15
39
  message: 'What would you like to do?',
16
40
  choices: [
17
41
  { name: 'Initialize a new project', value: 'init', description: 'Setup Cordn8 in this directory' },
42
+ {
43
+ name: registered.length === 0
44
+ ? 'Register an agent (start here — no agents yet)'
45
+ : `Register another agent (${registered.length} registered: ${registered.join(', ')})`,
46
+ value: 'register',
47
+ description: 'Add Hermes / NVIDIA NIM / Anthropic / Antigravity'
48
+ },
18
49
  { name: 'Send a message', value: 'send', description: 'Add a new message to the agent channel' },
19
50
  { name: 'Check status', value: 'status', description: 'View the current state of the channel' },
20
51
  { name: 'Exit', value: 'exit', description: 'Leave the wizard' }
@@ -24,16 +55,56 @@ async function runStart() {
24
55
  case 'init':
25
56
  await (0, init_1.runInit)();
26
57
  break;
27
- case 'send':
58
+ case 'register': {
59
+ const adapterChoice = await (0, prompts_1.select)({
60
+ message: 'Which adapter would you like to register?',
61
+ choices: [
62
+ { name: 'NVIDIA NIM (free tier — easiest first agent)', value: 'nvidia-nim', description: 'Cloud LLM via build.nvidia.com' },
63
+ { name: 'Anthropic (Claude API key required)', value: 'anthropic', description: 'Anthropic Messages API' },
64
+ { name: 'Hermes (local CLI subprocess)', value: 'hermes', description: 'Requires `hermes` binary on PATH' },
65
+ { name: 'Antigravity (IDE integration)', value: 'antigravity', description: 'For Google Antigravity IDE users' },
66
+ { name: 'Cancel', value: 'cancel', description: 'Back to main menu' }
67
+ ]
68
+ });
69
+ if (adapterChoice === 'cancel')
70
+ break;
71
+ logger_1.logger.info(`\nTo register the ${adapterChoice} adapter, run:\n`);
72
+ logger_1.logger.info(` cordn8 install ${adapterChoice}\n`);
73
+ logger_1.logger.info(`That command will prompt you for a name, model selection, and API key (where applicable),`);
74
+ logger_1.logger.info(`then save the registration to .cordn8/config.json.\n`);
75
+ logger_1.logger.info(`After registration, return to this wizard and "Send a message" — your new agent will appear in the dropdown.`);
76
+ break;
77
+ }
78
+ case 'send': {
79
+ if (registered.length === 0) {
80
+ logger_1.logger.warn('No agents registered yet. Pick "Register an agent" from the main menu first.');
81
+ break;
82
+ }
28
83
  const message = await (0, prompts_1.input)({ message: 'What is the message content?' });
29
84
  if (!message) {
30
85
  logger_1.logger.warn('Message content cannot be empty.');
31
86
  break;
32
87
  }
33
- const to = await (0, prompts_1.input)({ message: 'Who should this be sent to (e.g. Claude, Antigravity, Human)?', default: 'Agent' });
88
+ // V1.0.4: dropdown of registered agents instead of free-text "Agent"
89
+ // placeholder. If the user wants to send to a virtual recipient
90
+ // (Human Orchestrator / All), they can pick "Other..." and type.
91
+ const choices = [
92
+ ...registered.map(a => ({ name: a, value: a })),
93
+ { name: 'Human Orchestrator (you)', value: 'Human Orchestrator' },
94
+ { name: 'All (broadcast)', value: 'All' },
95
+ { name: 'Other... (type a custom recipient)', value: '__custom__' }
96
+ ];
97
+ const picked = await (0, prompts_1.select)({
98
+ message: 'Who should this be sent to?',
99
+ choices
100
+ });
101
+ const to = picked === '__custom__'
102
+ ? await (0, prompts_1.input)({ message: 'Enter the recipient name:' })
103
+ : picked;
34
104
  const ref = await (0, prompts_1.input)({ message: 'What is the task reference?', default: 'GENERAL' });
35
105
  await (0, send_1.runSend)(message, to, ref, 'Human', 'normal');
36
106
  break;
107
+ }
37
108
  case 'status':
38
109
  await (0, status_1.runStatus)({});
39
110
  break;
@@ -1 +1 @@
1
- {"version":3,"file":"start.js","sourceRoot":"","sources":["../../src/commands/start.ts"],"names":[],"mappings":";;AAMA,4BA0CC;AAhDD,+CAAkD;AAClD,iCAAiC;AACjC,iCAAiC;AACjC,qCAAqC;AACrC,4CAAyC;AAElC,KAAK,UAAU,QAAQ;IAC5B,eAAM,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC;IAC1C,eAAM,CAAC,IAAI,CAAC,qEAAqE,CAAC,CAAC;IAEnF,IAAI,SAAS,GAAG,IAAI,CAAC;IACrB,OAAO,SAAS,EAAE,CAAC;QACjB,MAAM,MAAM,GAAG,MAAM,IAAA,gBAAM,EAAC;YAC1B,OAAO,EAAE,4BAA4B;YACrC,OAAO,EAAE;gBACP,EAAE,IAAI,EAAE,0BAA0B,EAAE,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,gCAAgC,EAAE;gBAClG,EAAE,IAAI,EAAE,gBAAgB,EAAE,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,wCAAwC,EAAE;gBAChG,EAAE,IAAI,EAAE,cAAc,EAAE,KAAK,EAAE,QAAQ,EAAE,WAAW,EAAE,uCAAuC,EAAE;gBAC/F,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,kBAAkB,EAAE;aACjE;SACF,CAAC,CAAC;QAEH,QAAQ,MAAM,EAAE,CAAC;YACf,KAAK,MAAM;gBACT,MAAM,IAAA,cAAO,GAAE,CAAC;gBAChB,MAAM;YACR,KAAK,MAAM;gBACT,MAAM,OAAO,GAAG,MAAM,IAAA,eAAK,EAAC,EAAE,OAAO,EAAE,8BAA8B,EAAE,CAAC,CAAC;gBACzE,IAAI,CAAC,OAAO,EAAE,CAAC;oBACb,eAAM,CAAC,IAAI,CAAC,kCAAkC,CAAC,CAAC;oBAChD,MAAM;gBACR,CAAC;gBACD,MAAM,EAAE,GAAG,MAAM,IAAA,eAAK,EAAC,EAAE,OAAO,EAAE,+DAA+D,EAAE,OAAO,EAAE,OAAO,EAAE,CAAC,CAAC;gBACvH,MAAM,GAAG,GAAG,MAAM,IAAA,eAAK,EAAC,EAAE,OAAO,EAAE,6BAA6B,EAAE,OAAO,EAAE,SAAS,EAAE,CAAC,CAAC;gBACxF,MAAM,IAAA,cAAO,EAAC,OAAO,EAAE,EAAE,EAAE,GAAG,EAAE,OAAO,EAAE,QAAQ,CAAC,CAAC;gBACnD,MAAM;YACR,KAAK,QAAQ;gBACX,MAAM,IAAA,kBAAS,EAAC,EAAE,CAAC,CAAC;gBACpB,MAAM;YACR,KAAK,MAAM;gBACT,SAAS,GAAG,KAAK,CAAC;gBAClB,MAAM;QACV,CAAC;QAED,IAAI,SAAS,EAAE,CAAC;YACd,OAAO,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC;QACzB,CAAC;IACH,CAAC;AACH,CAAC"}
1
+ {"version":3,"file":"start.js","sourceRoot":"","sources":["../../src/commands/start.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- u2fVjNEB6rJuGzAjbfwHv
1
+ L8Dng3zo9fc7mhM4g9p_R
@@ -15,13 +15,6 @@
15
15
  "static/css/14975a7b7b64da8e.css",
16
16
  "static/chunks/app/layout-0cdab3fd9e23ba4c.js"
17
17
  ],
18
- "/api/doctor/route": [
19
- "static/chunks/webpack-0cfe6f51555ca84e.js",
20
- "static/chunks/87c73c54-24122e7b92478d00.js",
21
- "static/chunks/18-2d765459f0cd2fba.js",
22
- "static/chunks/main-app-020a8356b9a34059.js",
23
- "static/chunks/app/api/doctor/route-e9697f89c223105e.js"
24
- ],
25
18
  "/api/insights/route": [
26
19
  "static/chunks/webpack-0cfe6f51555ca84e.js",
27
20
  "static/chunks/87c73c54-24122e7b92478d00.js",
@@ -29,19 +22,19 @@
29
22
  "static/chunks/main-app-020a8356b9a34059.js",
30
23
  "static/chunks/app/api/insights/route-e9697f89c223105e.js"
31
24
  ],
32
- "/api/activity/route": [
25
+ "/api/mode/route": [
33
26
  "static/chunks/webpack-0cfe6f51555ca84e.js",
34
27
  "static/chunks/87c73c54-24122e7b92478d00.js",
35
28
  "static/chunks/18-2d765459f0cd2fba.js",
36
29
  "static/chunks/main-app-020a8356b9a34059.js",
37
- "static/chunks/app/api/activity/route-e9697f89c223105e.js"
30
+ "static/chunks/app/api/mode/route-e9697f89c223105e.js"
38
31
  ],
39
- "/api/mode/route": [
32
+ "/api/doctor/route": [
40
33
  "static/chunks/webpack-0cfe6f51555ca84e.js",
41
34
  "static/chunks/87c73c54-24122e7b92478d00.js",
42
35
  "static/chunks/18-2d765459f0cd2fba.js",
43
36
  "static/chunks/main-app-020a8356b9a34059.js",
44
- "static/chunks/app/api/mode/route-e9697f89c223105e.js"
37
+ "static/chunks/app/api/doctor/route-e9697f89c223105e.js"
45
38
  ],
46
39
  "/api/optimizations/route": [
47
40
  "static/chunks/webpack-0cfe6f51555ca84e.js",
@@ -64,13 +57,6 @@
64
57
  "static/chunks/main-app-020a8356b9a34059.js",
65
58
  "static/chunks/app/api/telemetry/route-e9697f89c223105e.js"
66
59
  ],
67
- "/api/trust/route": [
68
- "static/chunks/webpack-0cfe6f51555ca84e.js",
69
- "static/chunks/87c73c54-24122e7b92478d00.js",
70
- "static/chunks/18-2d765459f0cd2fba.js",
71
- "static/chunks/main-app-020a8356b9a34059.js",
72
- "static/chunks/app/api/trust/route-e9697f89c223105e.js"
73
- ],
74
60
  "/api/state/route": [
75
61
  "static/chunks/webpack-0cfe6f51555ca84e.js",
76
62
  "static/chunks/87c73c54-24122e7b92478d00.js",
@@ -78,28 +64,26 @@
78
64
  "static/chunks/main-app-020a8356b9a34059.js",
79
65
  "static/chunks/app/api/state/route-e9697f89c223105e.js"
80
66
  ],
81
- "/api/trust/history/route": [
67
+ "/api/trust/route": [
82
68
  "static/chunks/webpack-0cfe6f51555ca84e.js",
83
69
  "static/chunks/87c73c54-24122e7b92478d00.js",
84
70
  "static/chunks/18-2d765459f0cd2fba.js",
85
71
  "static/chunks/main-app-020a8356b9a34059.js",
86
- "static/chunks/app/api/trust/history/route-e9697f89c223105e.js"
72
+ "static/chunks/app/api/trust/route-e9697f89c223105e.js"
87
73
  ],
88
- "/api/events/tail/route": [
74
+ "/api/trust/history/route": [
89
75
  "static/chunks/webpack-0cfe6f51555ca84e.js",
90
76
  "static/chunks/87c73c54-24122e7b92478d00.js",
91
77
  "static/chunks/18-2d765459f0cd2fba.js",
92
78
  "static/chunks/main-app-020a8356b9a34059.js",
93
- "static/chunks/app/api/events/tail/route-e9697f89c223105e.js"
79
+ "static/chunks/app/api/trust/history/route-e9697f89c223105e.js"
94
80
  ],
95
- "/project/[id]/timeline/page": [
81
+ "/api/activity/route": [
96
82
  "static/chunks/webpack-0cfe6f51555ca84e.js",
97
83
  "static/chunks/87c73c54-24122e7b92478d00.js",
98
84
  "static/chunks/18-2d765459f0cd2fba.js",
99
85
  "static/chunks/main-app-020a8356b9a34059.js",
100
- "static/chunks/664-6d821dc1aacb6b48.js",
101
- "static/chunks/698-912814bbf660e476.js",
102
- "static/chunks/app/project/[id]/timeline/page-03f688512352a656.js"
86
+ "static/chunks/app/api/activity/route-e9697f89c223105e.js"
103
87
  ],
104
88
  "/project/[id]/page": [
105
89
  "static/chunks/webpack-0cfe6f51555ca84e.js",
@@ -121,6 +105,15 @@
121
105
  "static/chunks/697-8b8d92b1e58038f0.js",
122
106
  "static/chunks/app/project/[id]/trust/page-b969c1e10974506e.js"
123
107
  ],
108
+ "/project/[id]/timeline/page": [
109
+ "static/chunks/webpack-0cfe6f51555ca84e.js",
110
+ "static/chunks/87c73c54-24122e7b92478d00.js",
111
+ "static/chunks/18-2d765459f0cd2fba.js",
112
+ "static/chunks/main-app-020a8356b9a34059.js",
113
+ "static/chunks/664-6d821dc1aacb6b48.js",
114
+ "static/chunks/698-912814bbf660e476.js",
115
+ "static/chunks/app/project/[id]/timeline/page-03f688512352a656.js"
116
+ ],
124
117
  "/page": [
125
118
  "static/chunks/webpack-0cfe6f51555ca84e.js",
126
119
  "static/chunks/87c73c54-24122e7b92478d00.js",
@@ -129,6 +122,13 @@
129
122
  "static/chunks/664-6d821dc1aacb6b48.js",
130
123
  "static/chunks/996-6cfe2ba4b763d87e.js",
131
124
  "static/chunks/app/page-debd48cf78d2c597.js"
125
+ ],
126
+ "/api/events/tail/route": [
127
+ "static/chunks/webpack-0cfe6f51555ca84e.js",
128
+ "static/chunks/87c73c54-24122e7b92478d00.js",
129
+ "static/chunks/18-2d765459f0cd2fba.js",
130
+ "static/chunks/main-app-020a8356b9a34059.js",
131
+ "static/chunks/app/api/events/tail/route-e9697f89c223105e.js"
132
132
  ]
133
133
  }
134
134
  }
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "/_not-found/page": "/_not-found",
3
- "/api/doctor/route": "/api/doctor",
4
3
  "/api/insights/route": "/api/insights",
5
- "/api/activity/route": "/api/activity",
6
4
  "/api/mode/route": "/api/mode",
5
+ "/api/doctor/route": "/api/doctor",
7
6
  "/api/optimizations/route": "/api/optimizations",
8
7
  "/api/projects/route": "/api/projects",
9
8
  "/api/telemetry/route": "/api/telemetry",
10
- "/api/trust/route": "/api/trust",
11
9
  "/api/state/route": "/api/state",
10
+ "/api/trust/route": "/api/trust",
12
11
  "/api/trust/history/route": "/api/trust/history",
13
- "/api/events/tail/route": "/api/events/tail",
14
- "/project/[id]/timeline/page": "/project/[id]/timeline",
12
+ "/api/activity/route": "/api/activity",
15
13
  "/project/[id]/page": "/project/[id]",
16
14
  "/project/[id]/trust/page": "/project/[id]/trust",
17
- "/page": "/"
15
+ "/project/[id]/timeline/page": "/project/[id]/timeline",
16
+ "/page": "/",
17
+ "/api/events/tail/route": "/api/events/tail"
18
18
  }
@@ -5,8 +5,8 @@
5
5
  "devFiles": [],
6
6
  "ampDevFiles": [],
7
7
  "lowPriorityFiles": [
8
- "static/u2fVjNEB6rJuGzAjbfwHv/_buildManifest.js",
9
- "static/u2fVjNEB6rJuGzAjbfwHv/_ssgManifest.js"
8
+ "static/L8Dng3zo9fc7mhM4g9p_R/_buildManifest.js",
9
+ "static/L8Dng3zo9fc7mhM4g9p_R/_ssgManifest.js"
10
10
  ],
11
11
  "rootMainFiles": [
12
12
  "static/chunks/webpack-0cfe6f51555ca84e.js",
@@ -1 +1 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_not-found/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"25":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"430":{"*":{"id":"45800","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"1059":{"*":{"id":"53702","name":"*","chunks":[],"async":false}},"3990":{"*":{"id":"79974","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"48365","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"47569","name":"*","chunks":[],"async":false}},"9691":{"*":{"id":"8705","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/builtin/global-error.js":{"id":4431,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":4431,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/client-page.js":{"id":1012,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/client-page.js":{"id":1012,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/client-segment.js":{"id":540,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/client-segment.js":{"id":540,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/layout-router.js":{"id":5341,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/layout-router.js":{"id":5341,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":7158,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":7158,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/render-from-template-context.js":{"id":25,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":25,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/lib/framework/boundary-components.js":{"id":5104,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":5104,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6505,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6505,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/globals.css":{"id":8761,"name":"*","chunks":["177","static/chunks/app/layout-0cdab3fd9e23ba4c.js"],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/timeline/page.tsx":{"id":9691,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/page.tsx":{"id":430,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/trust/page.tsx":{"id":3990,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/page.tsx":{"id":1059,"name":"*","chunks":["664","static/chunks/664-6d821dc1aacb6b48.js","996","static/chunks/996-6cfe2ba4b763d87e.js","974","static/chunks/app/page-debd48cf78d2c597.js"],"async":false}},"entryCSSFiles":{"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/":[],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/layout":[{"inlined":false,"path":"static/css/14975a7b7b64da8e.css"}],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/page":[],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/_not-found/page":[]},"rscModuleMapping":{"25":{"*":{"id":"72041","name":"*","chunks":[],"async":false}},"430":{"*":{"id":"457","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"88248","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"56542","name":"*","chunks":[],"async":false}},"1059":{"*":{"id":"17129","name":"*","chunks":[],"async":false}},"3990":{"*":{"id":"17800","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"58671","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"95094","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"49743","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"96231","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"67487","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"10959","name":"*","chunks":[],"async":false}},"8761":{"*":{"id":"14276","name":"*","chunks":[],"async":false}},"9691":{"*":{"id":"14427","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"25":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"48365","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"47569","name":"*","chunks":[],"async":false}}}}
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/_not-found/page"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"25":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"430":{"*":{"id":"45800","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"1059":{"*":{"id":"53702","name":"*","chunks":[],"async":false}},"3990":{"*":{"id":"79974","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"48365","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"47569","name":"*","chunks":[],"async":false}},"9691":{"*":{"id":"8705","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/builtin/global-error.js":{"id":4431,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":4431,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/client-page.js":{"id":1012,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/client-page.js":{"id":1012,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/client-segment.js":{"id":540,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/client-segment.js":{"id":540,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/layout-router.js":{"id":5341,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/layout-router.js":{"id":5341,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":7158,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":7158,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/render-from-template-context.js":{"id":25,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":25,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/lib/framework/boundary-components.js":{"id":5104,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":5104,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6505,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6505,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/globals.css":{"id":8761,"name":"*","chunks":["177","static/chunks/app/layout-0cdab3fd9e23ba4c.js"],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/page.tsx":{"id":430,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/trust/page.tsx":{"id":3990,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/timeline/page.tsx":{"id":9691,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/page.tsx":{"id":1059,"name":"*","chunks":["664","static/chunks/664-6d821dc1aacb6b48.js","996","static/chunks/996-6cfe2ba4b763d87e.js","974","static/chunks/app/page-debd48cf78d2c597.js"],"async":false}},"entryCSSFiles":{"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/":[],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/layout":[{"inlined":false,"path":"static/css/14975a7b7b64da8e.css"}],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/page":[],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/_not-found/page":[]},"rscModuleMapping":{"25":{"*":{"id":"72041","name":"*","chunks":[],"async":false}},"430":{"*":{"id":"457","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"88248","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"56542","name":"*","chunks":[],"async":false}},"1059":{"*":{"id":"17129","name":"*","chunks":[],"async":false}},"3990":{"*":{"id":"17800","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"58671","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"95094","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"49743","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"96231","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"67487","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"10959","name":"*","chunks":[],"async":false}},"8761":{"*":{"id":"14276","name":"*","chunks":[],"async":false}},"9691":{"*":{"id":"14427","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"25":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"48365","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"47569","name":"*","chunks":[],"async":false}}}}
@@ -1 +1 @@
1
- <!DOCTYPE html><!--u2fVjNEB6rJuGzAjbfwHv--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/14975a7b7b64da8e.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-0cfe6f51555ca84e.js"/><script src="/_next/static/chunks/87c73c54-24122e7b92478d00.js" async=""></script><script src="/_next/static/chunks/18-2d765459f0cd2fba.js" async=""></script><script src="/_next/static/chunks/main-app-020a8356b9a34059.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>Cordn8 Dashboard</title><meta name="description" content="Local-first multi-agent coordination dashboard"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="font-sans antialiased bg-ocean-dark text-slate-100 min-h-screen"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-0cfe6f51555ca84e.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[5341,[],\"\"]\n3:I[25,[],\"\"]\n4:I[5104,[],\"OutletBoundary\"]\n6:I[7158,[],\"AsyncMetadataOutlet\"]\n8:I[5104,[],\"ViewportBoundary\"]\na:I[5104,[],\"MetadataBoundary\"]\nb:\"$Sreact.suspense\"\nd:I[4431,[],\"\"]\n:HL[\"/_next/static/css/14975a7b7b64da8e.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"u2fVjNEB6rJuGzAjbfwHv\",\"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/14975a7b7b64da8e.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"className\":\"font-sans antialiased bg-ocean-dark text-slate-100 min-h-screen\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__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,[\"$\",\"$L4\",null,{\"children\":[\"$L5\",[\"$\",\"$L6\",null,{\"promise\":\"$@7\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],null],[\"$\",\"$La\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$b\",null,{\"fallback\":null,\"children\":\"$Lc\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$d\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n5:null\n"])</script><script>self.__next_f.push([1,"7:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Cordn8 Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Local-first multi-agent coordination dashboard\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"c:\"$7:metadata\"\n"])</script></body></html>
1
+ <!DOCTYPE html><!--L8Dng3zo9fc7mhM4g9p_R--><html lang="en"><head><meta charSet="utf-8"/><meta name="viewport" content="width=device-width, initial-scale=1"/><link rel="stylesheet" href="/_next/static/css/14975a7b7b64da8e.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-0cfe6f51555ca84e.js"/><script src="/_next/static/chunks/87c73c54-24122e7b92478d00.js" async=""></script><script src="/_next/static/chunks/18-2d765459f0cd2fba.js" async=""></script><script src="/_next/static/chunks/main-app-020a8356b9a34059.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>Cordn8 Dashboard</title><meta name="description" content="Local-first multi-agent coordination dashboard"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body class="font-sans antialiased bg-ocean-dark text-slate-100 min-h-screen"><div hidden=""><!--$--><!--/$--></div><div style="font-family:system-ui,&quot;Segoe UI&quot;,Roboto,Helvetica,Arial,sans-serif,&quot;Apple Color Emoji&quot;,&quot;Segoe UI Emoji&quot;;height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/webpack-0cfe6f51555ca84e.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[5341,[],\"\"]\n3:I[25,[],\"\"]\n4:I[5104,[],\"OutletBoundary\"]\n6:I[7158,[],\"AsyncMetadataOutlet\"]\n8:I[5104,[],\"ViewportBoundary\"]\na:I[5104,[],\"MetadataBoundary\"]\nb:\"$Sreact.suspense\"\nd:I[4431,[],\"\"]\n:HL[\"/_next/static/css/14975a7b7b64da8e.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"0:{\"P\":null,\"b\":\"L8Dng3zo9fc7mhM4g9p_R\",\"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/14975a7b7b64da8e.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"className\":\"font-sans antialiased bg-ocean-dark text-slate-100 min-h-screen\",\"children\":[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]}]}]]}],{\"children\":[\"/_not-found\",[\"$\",\"$1\",\"c\",{\"children\":[null,[\"$\",\"$L2\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L3\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\"}]]}],{\"children\":[\"__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,[\"$\",\"$L4\",null,{\"children\":[\"$L5\",[\"$\",\"$L6\",null,{\"promise\":\"$@7\"}]]}]]}],{},null,false]},null,false]},null,false],[\"$\",\"$1\",\"h\",{\"children\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],[[\"$\",\"$L8\",null,{\"children\":\"$L9\"}],null],[\"$\",\"$La\",null,{\"children\":[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$b\",null,{\"fallback\":null,\"children\":\"$Lc\"}]}]}]]}],false]],\"m\":\"$undefined\",\"G\":[\"$d\",[]],\"s\":false,\"S\":true}\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"}],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}]]\n5:null\n"])</script><script>self.__next_f.push([1,"7:{\"metadata\":[[\"$\",\"title\",\"0\",{\"children\":\"Cordn8 Dashboard\"}],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Local-first multi-agent coordination dashboard\"}]],\"error\":null,\"digest\":\"$undefined\"}\n"])</script><script>self.__next_f.push([1,"c:\"$7:metadata\"\n"])</script></body></html>
@@ -8,7 +8,7 @@ a:I[5104,[],"MetadataBoundary"]
8
8
  b:"$Sreact.suspense"
9
9
  d:I[4431,[],""]
10
10
  :HL["/_next/static/css/14975a7b7b64da8e.css","style"]
11
- 0:{"P":null,"b":"u2fVjNEB6rJuGzAjbfwHv","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/14975a7b7b64da8e.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"font-sans antialiased bg-ocean-dark text-slate-100 min-h-screen","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":["/_not-found",["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__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,["$","$L4",null,{"children":["$L5",["$","$L6",null,{"promise":"$@7"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],[["$","$L8",null,{"children":"$L9"}],null],["$","$La",null,{"children":["$","div",null,{"hidden":true,"children":["$","$b",null,{"fallback":null,"children":"$Lc"}]}]}]]}],false]],"m":"$undefined","G":["$d",[]],"s":false,"S":true}
11
+ 0:{"P":null,"b":"L8Dng3zo9fc7mhM4g9p_R","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/14975a7b7b64da8e.css","precedence":"next","crossOrigin":"$undefined","nonce":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"className":"font-sans antialiased bg-ocean-dark text-slate-100 min-h-screen","children":["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]}]}]]}],{"children":["/_not-found",["$","$1","c",{"children":[null,["$","$L2",null,{"parallelRouterKey":"children","error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L3",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","forbidden":"$undefined","unauthorized":"$undefined"}]]}],{"children":["__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,["$","$L4",null,{"children":["$L5",["$","$L6",null,{"promise":"$@7"}]]}]]}],{},null,false]},null,false]},null,false],["$","$1","h",{"children":[["$","meta",null,{"name":"robots","content":"noindex"}],[["$","$L8",null,{"children":"$L9"}],null],["$","$La",null,{"children":["$","div",null,{"hidden":true,"children":["$","$b",null,{"fallback":null,"children":"$Lc"}]}]}]]}],false]],"m":"$undefined","G":["$d",[]],"s":false,"S":true}
12
12
  9:[["$","meta","0",{"charSet":"utf-8"}],["$","meta","1",{"name":"viewport","content":"width=device-width, initial-scale=1"}]]
13
13
  5:null
14
14
  7:{"metadata":[["$","title","0",{"children":"Cordn8 Dashboard"}],["$","meta","1",{"name":"description","content":"Local-first multi-agent coordination dashboard"}]],"error":null,"digest":"$undefined"}
@@ -1 +1 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/activity/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"25":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"430":{"*":{"id":"45800","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"1059":{"*":{"id":"53702","name":"*","chunks":[],"async":false}},"3990":{"*":{"id":"79974","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"48365","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"47569","name":"*","chunks":[],"async":false}},"9691":{"*":{"id":"8705","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/builtin/global-error.js":{"id":4431,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":4431,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/client-page.js":{"id":1012,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/client-page.js":{"id":1012,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/client-segment.js":{"id":540,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/client-segment.js":{"id":540,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/layout-router.js":{"id":5341,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/layout-router.js":{"id":5341,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":7158,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":7158,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/render-from-template-context.js":{"id":25,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":25,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/lib/framework/boundary-components.js":{"id":5104,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":5104,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6505,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6505,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/globals.css":{"id":8761,"name":"*","chunks":["177","static/chunks/app/layout-0cdab3fd9e23ba4c.js"],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/timeline/page.tsx":{"id":9691,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/page.tsx":{"id":430,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/trust/page.tsx":{"id":3990,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/page.tsx":{"id":1059,"name":"*","chunks":["664","static/chunks/664-6d821dc1aacb6b48.js","996","static/chunks/996-6cfe2ba4b763d87e.js","974","static/chunks/app/page-debd48cf78d2c597.js"],"async":false}},"entryCSSFiles":{"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/":[],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/layout":[{"inlined":false,"path":"static/css/14975a7b7b64da8e.css"}],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/page":[],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/api/activity/route":[]},"rscModuleMapping":{"25":{"*":{"id":"72041","name":"*","chunks":[],"async":false}},"430":{"*":{"id":"457","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"88248","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"56542","name":"*","chunks":[],"async":false}},"1059":{"*":{"id":"17129","name":"*","chunks":[],"async":false}},"3990":{"*":{"id":"17800","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"58671","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"95094","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"49743","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"96231","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"67487","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"10959","name":"*","chunks":[],"async":false}},"8761":{"*":{"id":"14276","name":"*","chunks":[],"async":false}},"9691":{"*":{"id":"14427","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"25":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"48365","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"47569","name":"*","chunks":[],"async":false}}}}
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/activity/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"25":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"430":{"*":{"id":"45800","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"1059":{"*":{"id":"53702","name":"*","chunks":[],"async":false}},"3990":{"*":{"id":"79974","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"48365","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"47569","name":"*","chunks":[],"async":false}},"9691":{"*":{"id":"8705","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/builtin/global-error.js":{"id":4431,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":4431,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/client-page.js":{"id":1012,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/client-page.js":{"id":1012,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/client-segment.js":{"id":540,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/client-segment.js":{"id":540,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/layout-router.js":{"id":5341,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/layout-router.js":{"id":5341,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":7158,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":7158,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/render-from-template-context.js":{"id":25,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":25,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/lib/framework/boundary-components.js":{"id":5104,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":5104,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6505,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6505,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/globals.css":{"id":8761,"name":"*","chunks":["177","static/chunks/app/layout-0cdab3fd9e23ba4c.js"],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/page.tsx":{"id":430,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/trust/page.tsx":{"id":3990,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/timeline/page.tsx":{"id":9691,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/page.tsx":{"id":1059,"name":"*","chunks":["664","static/chunks/664-6d821dc1aacb6b48.js","996","static/chunks/996-6cfe2ba4b763d87e.js","974","static/chunks/app/page-debd48cf78d2c597.js"],"async":false}},"entryCSSFiles":{"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/":[],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/layout":[{"inlined":false,"path":"static/css/14975a7b7b64da8e.css"}],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/page":[],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/api/activity/route":[]},"rscModuleMapping":{"25":{"*":{"id":"72041","name":"*","chunks":[],"async":false}},"430":{"*":{"id":"457","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"88248","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"56542","name":"*","chunks":[],"async":false}},"1059":{"*":{"id":"17129","name":"*","chunks":[],"async":false}},"3990":{"*":{"id":"17800","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"58671","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"95094","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"49743","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"96231","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"67487","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"10959","name":"*","chunks":[],"async":false}},"8761":{"*":{"id":"14276","name":"*","chunks":[],"async":false}},"9691":{"*":{"id":"14427","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"25":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"48365","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"47569","name":"*","chunks":[],"async":false}}}}
@@ -1 +1 @@
1
- globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/doctor/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"25":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"430":{"*":{"id":"45800","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"1059":{"*":{"id":"53702","name":"*","chunks":[],"async":false}},"3990":{"*":{"id":"79974","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"48365","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"47569","name":"*","chunks":[],"async":false}},"9691":{"*":{"id":"8705","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/builtin/global-error.js":{"id":4431,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":4431,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/client-page.js":{"id":1012,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/client-page.js":{"id":1012,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/client-segment.js":{"id":540,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/client-segment.js":{"id":540,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/layout-router.js":{"id":5341,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/layout-router.js":{"id":5341,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":7158,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":7158,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/render-from-template-context.js":{"id":25,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":25,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/lib/framework/boundary-components.js":{"id":5104,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":5104,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6505,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6505,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/globals.css":{"id":8761,"name":"*","chunks":["177","static/chunks/app/layout-0cdab3fd9e23ba4c.js"],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/timeline/page.tsx":{"id":9691,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/page.tsx":{"id":430,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/trust/page.tsx":{"id":3990,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/page.tsx":{"id":1059,"name":"*","chunks":["664","static/chunks/664-6d821dc1aacb6b48.js","996","static/chunks/996-6cfe2ba4b763d87e.js","974","static/chunks/app/page-debd48cf78d2c597.js"],"async":false}},"entryCSSFiles":{"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/":[],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/layout":[{"inlined":false,"path":"static/css/14975a7b7b64da8e.css"}],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/page":[],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/api/doctor/route":[]},"rscModuleMapping":{"25":{"*":{"id":"72041","name":"*","chunks":[],"async":false}},"430":{"*":{"id":"457","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"88248","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"56542","name":"*","chunks":[],"async":false}},"1059":{"*":{"id":"17129","name":"*","chunks":[],"async":false}},"3990":{"*":{"id":"17800","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"58671","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"95094","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"49743","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"96231","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"67487","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"10959","name":"*","chunks":[],"async":false}},"8761":{"*":{"id":"14276","name":"*","chunks":[],"async":false}},"9691":{"*":{"id":"14427","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"25":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"48365","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"47569","name":"*","chunks":[],"async":false}}}}
1
+ globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/doctor/route"]={"moduleLoading":{"prefix":"/_next/"},"ssrModuleMapping":{"25":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"430":{"*":{"id":"45800","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"1059":{"*":{"id":"53702","name":"*","chunks":[],"async":false}},"3990":{"*":{"id":"79974","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"48365","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"47569","name":"*","chunks":[],"async":false}},"9691":{"*":{"id":"8705","name":"*","chunks":[],"async":false}}},"edgeSSRModuleMapping":{},"clientModules":{"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/builtin/global-error.js":{"id":4431,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/builtin/global-error.js":{"id":4431,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/client-page.js":{"id":1012,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/client-page.js":{"id":1012,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/client-segment.js":{"id":540,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/client-segment.js":{"id":540,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/http-access-fallback/error-boundary.js":{"id":5293,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/layout-router.js":{"id":5341,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/layout-router.js":{"id":5341,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/metadata/async-metadata.js":{"id":7158,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/metadata/async-metadata.js":{"id":7158,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/client/components/render-from-template-context.js":{"id":25,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/client/components/render-from-template-context.js":{"id":25,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/lib/framework/boundary-components.js":{"id":5104,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/lib/framework/boundary-components.js":{"id":5104,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/lib/metadata/generate/icon-mark.js":{"id":6505,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/node_modules/next/dist/esm/lib/metadata/generate/icon-mark.js":{"id":6505,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/globals.css":{"id":8761,"name":"*","chunks":["177","static/chunks/app/layout-0cdab3fd9e23ba4c.js"],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/page.tsx":{"id":430,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/trust/page.tsx":{"id":3990,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/project/[id]/timeline/page.tsx":{"id":9691,"name":"*","chunks":[],"async":false},"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/page.tsx":{"id":1059,"name":"*","chunks":["664","static/chunks/664-6d821dc1aacb6b48.js","996","static/chunks/996-6cfe2ba4b763d87e.js","974","static/chunks/app/page-debd48cf78d2c597.js"],"async":false}},"entryCSSFiles":{"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/":[],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/layout":[{"inlined":false,"path":"static/css/14975a7b7b64da8e.css"}],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/page":[],"/Users/dwiz/Documents/Codex/2026-04-30/the-v1-node-js-scaffold-for/Cordn8/apps/web/src/app/api/doctor/route":[]},"rscModuleMapping":{"25":{"*":{"id":"72041","name":"*","chunks":[],"async":false}},"430":{"*":{"id":"457","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"88248","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"56542","name":"*","chunks":[],"async":false}},"1059":{"*":{"id":"17129","name":"*","chunks":[],"async":false}},"3990":{"*":{"id":"17800","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"58671","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"95094","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"49743","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"96231","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"67487","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"10959","name":"*","chunks":[],"async":false}},"8761":{"*":{"id":"14276","name":"*","chunks":[],"async":false}},"9691":{"*":{"id":"14427","name":"*","chunks":[],"async":false}}},"edgeRscModuleMapping":{"25":{"*":{"id":"42747","name":"*","chunks":[],"async":false}},"540":{"*":{"id":"56186","name":"*","chunks":[],"async":false}},"1012":{"*":{"id":"64596","name":"*","chunks":[],"async":false}},"4431":{"*":{"id":"48365","name":"*","chunks":[],"async":false}},"5104":{"*":{"id":"56676","name":"*","chunks":[],"async":false}},"5293":{"*":{"id":"67805","name":"*","chunks":[],"async":false}},"5341":{"*":{"id":"27561","name":"*","chunks":[],"async":false}},"6505":{"*":{"id":"97225","name":"*","chunks":[],"async":false}},"7158":{"*":{"id":"47569","name":"*","chunks":[],"async":false}}}}