cordn8 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/send.d.ts.map +1 -1
- package/dist/commands/send.js +31 -0
- package/dist/commands/send.js.map +1 -1
- package/dist/web/apps/web/.next/BUILD_ID +1 -1
- package/dist/web/apps/web/.next/app-build-manifest.json +22 -22
- package/dist/web/apps/web/.next/app-path-routes-manifest.json +5 -5
- package/dist/web/apps/web/.next/build-manifest.json +2 -2
- package/dist/web/apps/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
- package/dist/web/apps/web/.next/server/app/_not-found.html +1 -1
- package/dist/web/apps/web/.next/server/app/_not-found.rsc +1 -1
- package/dist/web/apps/web/.next/server/app/api/activity/route_client-reference-manifest.js +1 -1
- package/dist/web/apps/web/.next/server/app/api/doctor/route_client-reference-manifest.js +1 -1
- package/dist/web/apps/web/.next/server/app/api/events/tail/route_client-reference-manifest.js +1 -1
- package/dist/web/apps/web/.next/server/app/api/insights/route_client-reference-manifest.js +1 -1
- package/dist/web/apps/web/.next/server/app/api/mode/route_client-reference-manifest.js +1 -1
- package/dist/web/apps/web/.next/server/app/api/optimizations/route_client-reference-manifest.js +1 -1
- package/dist/web/apps/web/.next/server/app/api/projects/route_client-reference-manifest.js +1 -1
- package/dist/web/apps/web/.next/server/app/api/state/route_client-reference-manifest.js +1 -1
- package/dist/web/apps/web/.next/server/app/api/telemetry/route_client-reference-manifest.js +1 -1
- package/dist/web/apps/web/.next/server/app/api/trust/history/route_client-reference-manifest.js +1 -1
- package/dist/web/apps/web/.next/server/app/api/trust/route_client-reference-manifest.js +1 -1
- package/dist/web/apps/web/.next/server/app/index.html +1 -1
- package/dist/web/apps/web/.next/server/app/index.rsc +1 -1
- package/dist/web/apps/web/.next/server/app/page_client-reference-manifest.js +1 -1
- package/dist/web/apps/web/.next/server/app/project/[id]/page_client-reference-manifest.js +1 -1
- package/dist/web/apps/web/.next/server/app/project/[id]/timeline/page_client-reference-manifest.js +1 -1
- package/dist/web/apps/web/.next/server/app/project/[id]/trust/page_client-reference-manifest.js +1 -1
- package/dist/web/apps/web/.next/server/app-paths-manifest.json +5 -5
- package/dist/web/apps/web/.next/server/pages/404.html +1 -1
- package/dist/web/apps/web/.next/server/pages/500.html +1 -1
- package/dist/web/package.json +2 -2
- package/package.json +2 -2
- /package/dist/web/apps/web/.next/static/{jD73UDFdIPOwat5FjEab4 → u2fVjNEB6rJuGzAjbfwHv}/_buildManifest.js +0 -0
- /package/dist/web/apps/web/.next/static/{jD73UDFdIPOwat5FjEab4 → u2fVjNEB6rJuGzAjbfwHv}/_ssgManifest.js +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"send.d.ts","sourceRoot":"","sources":["../../src/commands/send.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"send.d.ts","sourceRoot":"","sources":["../../src/commands/send.ts"],"names":[],"mappings":"AAMA,wBAAsB,OAAO,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,GAAG,EAAE,MAAM,EAAE,IAAI,GAAE,MAA6B,EAAE,cAAc,GAAE,MAAiB,GAAG,OAAO,CAAC,IAAI,CAAC,CAsD7J"}
|
package/dist/commands/send.js
CHANGED
|
@@ -4,6 +4,7 @@ exports.runSend = runSend;
|
|
|
4
4
|
const logger_1 = require("../utils/logger");
|
|
5
5
|
const project_1 = require("../discovery/project");
|
|
6
6
|
const index_1 = require("../index");
|
|
7
|
+
const config_1 = require("../storage/config");
|
|
7
8
|
async function runSend(content, to, ref, from = 'Human Orchestrator', criticalityRaw = 'normal') {
|
|
8
9
|
const root = (0, project_1.discoverProjectRoot)();
|
|
9
10
|
const normCrit = criticalityRaw.toLowerCase();
|
|
@@ -11,6 +12,36 @@ async function runSend(content, to, ref, from = 'Human Orchestrator', criticalit
|
|
|
11
12
|
logger_1.logger.error(`Invalid criticality '${criticalityRaw}'. Valid values are: normal, high.`);
|
|
12
13
|
process.exit(1);
|
|
13
14
|
}
|
|
15
|
+
// V1.0.3: validate recipient against registered agents. The previous
|
|
16
|
+
// behavior accepted any string for `to`, so a typo or generic word like
|
|
17
|
+
// 'Agent' silently posted a message to nobody — sender saw success,
|
|
18
|
+
// no agent recognized themselves, message sat PENDING forever.
|
|
19
|
+
// Multi-recipient TO ('Claude, Antigravity') is supported by the writer,
|
|
20
|
+
// so we split + check each name.
|
|
21
|
+
const config = await (0, config_1.loadConfig)(root);
|
|
22
|
+
const known = new Set();
|
|
23
|
+
if (config) {
|
|
24
|
+
for (const a of config.channel.agents || []) {
|
|
25
|
+
known.add(a.name);
|
|
26
|
+
// 'Human Orchestrator' is a virtual recipient (HO reads the channel
|
|
27
|
+
// out-of-band). Allow it even though it's not in the registry.
|
|
28
|
+
}
|
|
29
|
+
known.add('Human Orchestrator');
|
|
30
|
+
known.add('Human'); // common short alias the wizard accepts
|
|
31
|
+
known.add('All'); // broadcast convention
|
|
32
|
+
}
|
|
33
|
+
if (config && known.size > 0) {
|
|
34
|
+
const recipients = to.split(',').map(s => s.trim()).filter(Boolean);
|
|
35
|
+
const unknown = recipients.filter(r => !known.has(r));
|
|
36
|
+
if (unknown.length > 0) {
|
|
37
|
+
const registered = (config.channel.agents || []).map(a => a.name).join(', ') || '(none)';
|
|
38
|
+
logger_1.logger.error(`Unknown recipient${unknown.length > 1 ? 's' : ''}: ${unknown.join(', ')}. ` +
|
|
39
|
+
`Registered agents: ${registered}. ` +
|
|
40
|
+
`Use 'cordn8 agent add <name> <adapter>' to register a new agent, ` +
|
|
41
|
+
`or 'Human Orchestrator' / 'All' as virtual recipients.`);
|
|
42
|
+
process.exit(1);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
14
45
|
try {
|
|
15
46
|
const msg = await index_1.cordn8.sendMessage({
|
|
16
47
|
from,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"send.js","sourceRoot":"","sources":["../../src/commands/send.ts"],"names":[],"mappings":";;
|
|
1
|
+
{"version":3,"file":"send.js","sourceRoot":"","sources":["../../src/commands/send.ts"],"names":[],"mappings":";;AAMA,0BAsDC;AA5DD,4CAAyC;AACzC,kDAA2D;AAC3D,oCAAkC;AAClC,8CAA+C;AAGxC,KAAK,UAAU,OAAO,CAAC,OAAe,EAAE,EAAU,EAAE,GAAW,EAAE,OAAe,oBAAoB,EAAE,iBAAyB,QAAQ;IAC5I,MAAM,IAAI,GAAG,IAAA,6BAAmB,GAAE,CAAC;IAEnC,MAAM,QAAQ,GAAG,cAAc,CAAC,WAAW,EAAE,CAAC;IAC9C,IAAI,QAAQ,KAAK,QAAQ,IAAI,QAAQ,KAAK,MAAM,EAAE,CAAC;QACjD,eAAM,CAAC,KAAK,CAAC,wBAAwB,cAAc,oCAAoC,CAAC,CAAC;QACzF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;IAClB,CAAC;IAED,qEAAqE;IACrE,wEAAwE;IACxE,oEAAoE;IACpE,+DAA+D;IAC/D,yEAAyE;IACzE,iCAAiC;IACjC,MAAM,MAAM,GAAG,MAAM,IAAA,mBAAU,EAAC,IAAI,CAAC,CAAC;IACtC,MAAM,KAAK,GAAG,IAAI,GAAG,EAAU,CAAC;IAChC,IAAI,MAAM,EAAE,CAAC;QACX,KAAK,MAAM,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,MAAM,IAAI,EAAE,EAAE,CAAC;YAC5C,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;YAClB,oEAAoE;YACpE,+DAA+D;QACjE,CAAC;QACD,KAAK,CAAC,GAAG,CAAC,oBAAoB,CAAC,CAAC;QAChC,KAAK,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC,CAAE,wCAAwC;QAC7D,KAAK,CAAC,GAAG,CAAC,KAAK,CAAC,CAAC,CAAI,uBAAuB;IAC9C,CAAC;IACD,IAAI,MAAM,IAAI,KAAK,CAAC,IAAI,GAAG,CAAC,EAAE,CAAC;QAC7B,MAAM,UAAU,GAAG,EAAE,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,CAAC;QACpE,MAAM,OAAO,GAAG,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;QACtD,IAAI,OAAO,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACvB,MAAM,UAAU,GAAG,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,IAAI,EAAE,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,QAAQ,CAAC;YACzF,eAAM,CAAC,KAAK,CACV,oBAAoB,OAAO,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,KAAK,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI;gBAC5E,sBAAsB,UAAU,IAAI;gBACpC,mEAAmE;gBACnE,wDAAwD,CACzD,CAAC;YACF,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QAClB,CAAC;IACH,CAAC;IAED,IAAI,CAAC;QACH,MAAM,GAAG,GAAG,MAAM,cAAM,CAAC,WAAW,CAAC;YACnC,IAAI;YACJ,EAAE;YACF,QAAQ,EAAE,GAAG;YACb,OAAO;YACP,WAAW,EAAE,QAA6B;SAC3C,EAAE,IAAI,CAAC,CAAC;QACT,eAAM,CAAC,OAAO,CAAC,kCAAkC,GAAG,CAAC,MAAM,EAAE,CAAC,CAAC;IACjE,CAAC;IAAC,OAAO,GAAG,EAAE,CAAC;QACb,eAAM,CAAC,KAAK,CAAC,2BAA2B,GAAG,EAAE,CAAC,CAAC;IACjD,CAAC;AACH,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
u2fVjNEB6rJuGzAjbfwHv
|
|
@@ -22,19 +22,19 @@
|
|
|
22
22
|
"static/chunks/main-app-020a8356b9a34059.js",
|
|
23
23
|
"static/chunks/app/api/doctor/route-e9697f89c223105e.js"
|
|
24
24
|
],
|
|
25
|
-
"/api/
|
|
25
|
+
"/api/insights/route": [
|
|
26
26
|
"static/chunks/webpack-0cfe6f51555ca84e.js",
|
|
27
27
|
"static/chunks/87c73c54-24122e7b92478d00.js",
|
|
28
28
|
"static/chunks/18-2d765459f0cd2fba.js",
|
|
29
29
|
"static/chunks/main-app-020a8356b9a34059.js",
|
|
30
|
-
"static/chunks/app/api/
|
|
30
|
+
"static/chunks/app/api/insights/route-e9697f89c223105e.js"
|
|
31
31
|
],
|
|
32
|
-
"/api/
|
|
32
|
+
"/api/activity/route": [
|
|
33
33
|
"static/chunks/webpack-0cfe6f51555ca84e.js",
|
|
34
34
|
"static/chunks/87c73c54-24122e7b92478d00.js",
|
|
35
35
|
"static/chunks/18-2d765459f0cd2fba.js",
|
|
36
36
|
"static/chunks/main-app-020a8356b9a34059.js",
|
|
37
|
-
"static/chunks/app/api/
|
|
37
|
+
"static/chunks/app/api/activity/route-e9697f89c223105e.js"
|
|
38
38
|
],
|
|
39
39
|
"/api/mode/route": [
|
|
40
40
|
"static/chunks/webpack-0cfe6f51555ca84e.js",
|
|
@@ -64,26 +64,26 @@
|
|
|
64
64
|
"static/chunks/main-app-020a8356b9a34059.js",
|
|
65
65
|
"static/chunks/app/api/telemetry/route-e9697f89c223105e.js"
|
|
66
66
|
],
|
|
67
|
-
"/api/trust/
|
|
67
|
+
"/api/trust/route": [
|
|
68
68
|
"static/chunks/webpack-0cfe6f51555ca84e.js",
|
|
69
69
|
"static/chunks/87c73c54-24122e7b92478d00.js",
|
|
70
70
|
"static/chunks/18-2d765459f0cd2fba.js",
|
|
71
71
|
"static/chunks/main-app-020a8356b9a34059.js",
|
|
72
|
-
"static/chunks/app/api/trust/
|
|
72
|
+
"static/chunks/app/api/trust/route-e9697f89c223105e.js"
|
|
73
73
|
],
|
|
74
|
-
"/api/
|
|
74
|
+
"/api/state/route": [
|
|
75
75
|
"static/chunks/webpack-0cfe6f51555ca84e.js",
|
|
76
76
|
"static/chunks/87c73c54-24122e7b92478d00.js",
|
|
77
77
|
"static/chunks/18-2d765459f0cd2fba.js",
|
|
78
78
|
"static/chunks/main-app-020a8356b9a34059.js",
|
|
79
|
-
"static/chunks/app/api/
|
|
79
|
+
"static/chunks/app/api/state/route-e9697f89c223105e.js"
|
|
80
80
|
],
|
|
81
|
-
"/api/
|
|
81
|
+
"/api/trust/history/route": [
|
|
82
82
|
"static/chunks/webpack-0cfe6f51555ca84e.js",
|
|
83
83
|
"static/chunks/87c73c54-24122e7b92478d00.js",
|
|
84
84
|
"static/chunks/18-2d765459f0cd2fba.js",
|
|
85
85
|
"static/chunks/main-app-020a8356b9a34059.js",
|
|
86
|
-
"static/chunks/app/api/
|
|
86
|
+
"static/chunks/app/api/trust/history/route-e9697f89c223105e.js"
|
|
87
87
|
],
|
|
88
88
|
"/api/events/tail/route": [
|
|
89
89
|
"static/chunks/webpack-0cfe6f51555ca84e.js",
|
|
@@ -92,43 +92,43 @@
|
|
|
92
92
|
"static/chunks/main-app-020a8356b9a34059.js",
|
|
93
93
|
"static/chunks/app/api/events/tail/route-e9697f89c223105e.js"
|
|
94
94
|
],
|
|
95
|
-
"/page": [
|
|
95
|
+
"/project/[id]/timeline/page": [
|
|
96
96
|
"static/chunks/webpack-0cfe6f51555ca84e.js",
|
|
97
97
|
"static/chunks/87c73c54-24122e7b92478d00.js",
|
|
98
98
|
"static/chunks/18-2d765459f0cd2fba.js",
|
|
99
99
|
"static/chunks/main-app-020a8356b9a34059.js",
|
|
100
100
|
"static/chunks/664-6d821dc1aacb6b48.js",
|
|
101
|
-
"static/chunks/
|
|
102
|
-
"static/chunks/app/page-
|
|
101
|
+
"static/chunks/698-912814bbf660e476.js",
|
|
102
|
+
"static/chunks/app/project/[id]/timeline/page-03f688512352a656.js"
|
|
103
103
|
],
|
|
104
|
-
"/project/[id]/
|
|
104
|
+
"/project/[id]/page": [
|
|
105
105
|
"static/chunks/webpack-0cfe6f51555ca84e.js",
|
|
106
106
|
"static/chunks/87c73c54-24122e7b92478d00.js",
|
|
107
107
|
"static/chunks/18-2d765459f0cd2fba.js",
|
|
108
108
|
"static/chunks/main-app-020a8356b9a34059.js",
|
|
109
109
|
"static/chunks/664-6d821dc1aacb6b48.js",
|
|
110
|
+
"static/chunks/698-912814bbf660e476.js",
|
|
110
111
|
"static/chunks/697-8b8d92b1e58038f0.js",
|
|
111
|
-
"static/chunks/
|
|
112
|
+
"static/chunks/683-fc51c4bd2b16f5df.js",
|
|
113
|
+
"static/chunks/app/project/[id]/page-f3851732780d2d3a.js"
|
|
112
114
|
],
|
|
113
|
-
"/project/[id]/page": [
|
|
115
|
+
"/project/[id]/trust/page": [
|
|
114
116
|
"static/chunks/webpack-0cfe6f51555ca84e.js",
|
|
115
117
|
"static/chunks/87c73c54-24122e7b92478d00.js",
|
|
116
118
|
"static/chunks/18-2d765459f0cd2fba.js",
|
|
117
119
|
"static/chunks/main-app-020a8356b9a34059.js",
|
|
118
120
|
"static/chunks/664-6d821dc1aacb6b48.js",
|
|
119
|
-
"static/chunks/698-912814bbf660e476.js",
|
|
120
121
|
"static/chunks/697-8b8d92b1e58038f0.js",
|
|
121
|
-
"static/chunks/
|
|
122
|
-
"static/chunks/app/project/[id]/page-f3851732780d2d3a.js"
|
|
122
|
+
"static/chunks/app/project/[id]/trust/page-b969c1e10974506e.js"
|
|
123
123
|
],
|
|
124
|
-
"/
|
|
124
|
+
"/page": [
|
|
125
125
|
"static/chunks/webpack-0cfe6f51555ca84e.js",
|
|
126
126
|
"static/chunks/87c73c54-24122e7b92478d00.js",
|
|
127
127
|
"static/chunks/18-2d765459f0cd2fba.js",
|
|
128
128
|
"static/chunks/main-app-020a8356b9a34059.js",
|
|
129
129
|
"static/chunks/664-6d821dc1aacb6b48.js",
|
|
130
|
-
"static/chunks/
|
|
131
|
-
"static/chunks/app/
|
|
130
|
+
"static/chunks/996-6cfe2ba4b763d87e.js",
|
|
131
|
+
"static/chunks/app/page-debd48cf78d2c597.js"
|
|
132
132
|
]
|
|
133
133
|
}
|
|
134
134
|
}
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"/_not-found/page": "/_not-found",
|
|
3
3
|
"/api/doctor/route": "/api/doctor",
|
|
4
|
-
"/api/activity/route": "/api/activity",
|
|
5
4
|
"/api/insights/route": "/api/insights",
|
|
5
|
+
"/api/activity/route": "/api/activity",
|
|
6
6
|
"/api/mode/route": "/api/mode",
|
|
7
7
|
"/api/optimizations/route": "/api/optimizations",
|
|
8
8
|
"/api/projects/route": "/api/projects",
|
|
9
9
|
"/api/telemetry/route": "/api/telemetry",
|
|
10
|
-
"/api/trust/history/route": "/api/trust/history",
|
|
11
10
|
"/api/trust/route": "/api/trust",
|
|
12
11
|
"/api/state/route": "/api/state",
|
|
12
|
+
"/api/trust/history/route": "/api/trust/history",
|
|
13
13
|
"/api/events/tail/route": "/api/events/tail",
|
|
14
|
-
"/page": "/",
|
|
15
|
-
"/project/[id]/trust/page": "/project/[id]/trust",
|
|
14
|
+
"/project/[id]/timeline/page": "/project/[id]/timeline",
|
|
16
15
|
"/project/[id]/page": "/project/[id]",
|
|
17
|
-
"/project/[id]/
|
|
16
|
+
"/project/[id]/trust/page": "/project/[id]/trust",
|
|
17
|
+
"/page": "/"
|
|
18
18
|
}
|
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"devFiles": [],
|
|
6
6
|
"ampDevFiles": [],
|
|
7
7
|
"lowPriorityFiles": [
|
|
8
|
-
"static/
|
|
9
|
-
"static/
|
|
8
|
+
"static/u2fVjNEB6rJuGzAjbfwHv/_buildManifest.js",
|
|
9
|
+
"static/u2fVjNEB6rJuGzAjbfwHv/_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/page.tsx":{"id":
|
|
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 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><!--
|
|
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,"Segoe UI",Roboto,Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";height:100vh;text-align:center;display:flex;flex-direction:column;align-items:center;justify-content:center"><div><style>body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}</style><h1 class="next-error-h1" style="display:inline-block;margin:0 20px 0 0;padding:0 23px 0 0;font-size:24px;font-weight:500;vertical-align:top;line-height:49px">404</h1><div style="display:inline-block"><h2 style="font-size:14px;font-weight:400;line-height:49px;margin:0">This page could not be found.</h2></div></div></div><!--$--><!--/$--><script src="/_next/static/chunks/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>
|
|
@@ -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":"
|
|
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}
|
|
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/page.tsx":{"id":
|
|
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 +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/page.tsx":{"id":
|
|
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}}}}
|
package/dist/web/apps/web/.next/server/app/api/events/tail/route_client-reference-manifest.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/events/tail/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/page.tsx":{"id":
|
|
1
|
+
globalThis.__RSC_MANIFEST=(globalThis.__RSC_MANIFEST||{});globalThis.__RSC_MANIFEST["/api/events/tail/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/events/tail/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}}}}
|