@agent-relay/dashboard 2.0.57 → 2.0.59
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/index.d.ts +2 -19
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -22
- package/dist/index.js.map +1 -1
- package/out/404.html +1 -1
- package/out/about.html +1 -1
- package/out/about.txt +1 -1
- package/out/app/onboarding.html +1 -1
- package/out/app/onboarding.txt +1 -1
- package/out/app.html +1 -1
- package/out/app.txt +1 -1
- package/out/blog/go-to-bed-wake-up-to-a-finished-product.html +1 -1
- package/out/blog/go-to-bed-wake-up-to-a-finished-product.txt +1 -1
- package/out/blog.html +1 -1
- package/out/blog.txt +1 -1
- package/out/careers.html +1 -1
- package/out/careers.txt +1 -1
- package/out/changelog.html +1 -1
- package/out/changelog.txt +1 -1
- package/out/cloud/link.html +1 -1
- package/out/cloud/link.txt +1 -1
- package/out/complete-profile.html +1 -1
- package/out/complete-profile.txt +1 -1
- package/out/connect-repos.html +1 -1
- package/out/connect-repos.txt +1 -1
- package/out/contact.html +1 -1
- package/out/contact.txt +1 -1
- package/out/docs.html +1 -1
- package/out/docs.txt +1 -1
- package/out/history.html +1 -1
- package/out/history.txt +1 -1
- package/out/index.html +1 -1
- package/out/index.txt +1 -1
- package/out/login.html +1 -1
- package/out/login.txt +1 -1
- package/out/metrics.html +1 -1
- package/out/metrics.txt +1 -1
- package/out/pricing.html +1 -1
- package/out/pricing.txt +1 -1
- package/out/privacy.html +1 -1
- package/out/privacy.txt +1 -1
- package/out/providers/setup/claude.html +1 -1
- package/out/providers/setup/claude.txt +1 -1
- package/out/providers/setup/codex.html +1 -1
- package/out/providers/setup/codex.txt +1 -1
- package/out/providers/setup/cursor.html +1 -1
- package/out/providers/setup/cursor.txt +1 -1
- package/out/providers.html +1 -1
- package/out/providers.txt +1 -1
- package/out/security.html +1 -1
- package/out/security.txt +1 -1
- package/out/signup.html +1 -1
- package/out/signup.txt +1 -1
- package/out/terms.html +1 -1
- package/out/terms.txt +1 -1
- package/package.json +1 -2
- /package/out/_next/static/{QS-NFfJUw1w3081kmWJg9 → vqqAzuICuRIakU1wIp0AV}/_buildManifest.js +0 -0
- /package/out/_next/static/{QS-NFfJUw1w3081kmWJg9 → vqqAzuICuRIakU1wIp0AV}/_ssgManifest.js +0 -0
package/dist/index.d.ts
CHANGED
|
@@ -1,25 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @agent-relay/dashboard
|
|
3
3
|
*
|
|
4
|
-
* Web dashboard for Agent Relay with visual agent coordination.
|
|
4
|
+
* Web dashboard UI for Agent Relay with visual agent coordination.
|
|
5
5
|
*
|
|
6
|
-
* This package provides
|
|
7
|
-
* - Static Next.js UI files (in `out/` directory)
|
|
8
|
-
* - Server functionality via re-exports from @agent-relay/dashboard-server
|
|
9
|
-
*
|
|
10
|
-
* @example
|
|
11
|
-
* // Start the dashboard server (used by CLI)
|
|
12
|
-
* import { startDashboard } from '@agent-relay/dashboard';
|
|
13
|
-
* const port = await startDashboard({
|
|
14
|
-
* port: 3888,
|
|
15
|
-
* dataDir: '/path/to/data',
|
|
16
|
-
* teamDir: '/path/to/team',
|
|
17
|
-
* });
|
|
18
|
-
*
|
|
19
|
-
* @example
|
|
20
|
-
* // Start a standalone proxy server
|
|
21
|
-
* import { startServer } from '@agent-relay/dashboard';
|
|
22
|
-
* const server = await startServer({ port: 3888 });
|
|
6
|
+
* This package provides static Next.js UI files (in `out/` directory).
|
|
23
7
|
*
|
|
24
8
|
* @example
|
|
25
9
|
* // Get the path to dashboard static files
|
|
@@ -27,5 +11,4 @@
|
|
|
27
11
|
* console.log(dashboardDir); // /path/to/node_modules/@agent-relay/dashboard/out
|
|
28
12
|
*/
|
|
29
13
|
export declare const dashboardDir: string;
|
|
30
|
-
export { startDashboard, startServer, createServer, type DashboardOptions, type ProxyServerOptions, type DashboardServer, type DashboardServerOptions, type ServerContext, type AgentState, type ChannelRecord, type ThreadMetadata, } from '@agent-relay/dashboard-server';
|
|
31
14
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAQH,eAAO,MAAM,YAAY,QAA8B,CAAC"}
|
package/dist/index.js
CHANGED
|
@@ -1,25 +1,9 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* @agent-relay/dashboard
|
|
3
3
|
*
|
|
4
|
-
* Web dashboard for Agent Relay with visual agent coordination.
|
|
4
|
+
* Web dashboard UI for Agent Relay with visual agent coordination.
|
|
5
5
|
*
|
|
6
|
-
* This package provides
|
|
7
|
-
* - Static Next.js UI files (in `out/` directory)
|
|
8
|
-
* - Server functionality via re-exports from @agent-relay/dashboard-server
|
|
9
|
-
*
|
|
10
|
-
* @example
|
|
11
|
-
* // Start the dashboard server (used by CLI)
|
|
12
|
-
* import { startDashboard } from '@agent-relay/dashboard';
|
|
13
|
-
* const port = await startDashboard({
|
|
14
|
-
* port: 3888,
|
|
15
|
-
* dataDir: '/path/to/data',
|
|
16
|
-
* teamDir: '/path/to/team',
|
|
17
|
-
* });
|
|
18
|
-
*
|
|
19
|
-
* @example
|
|
20
|
-
* // Start a standalone proxy server
|
|
21
|
-
* import { startServer } from '@agent-relay/dashboard';
|
|
22
|
-
* const server = await startServer({ port: 3888 });
|
|
6
|
+
* This package provides static Next.js UI files (in `out/` directory).
|
|
23
7
|
*
|
|
24
8
|
* @example
|
|
25
9
|
* // Get the path to dashboard static files
|
|
@@ -32,8 +16,4 @@ import path from 'path';
|
|
|
32
16
|
// This allows other packages to find the dashboard UI files
|
|
33
17
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
34
18
|
export const dashboardDir = path.join(__dirname, 'out');
|
|
35
|
-
// Re-export all server functionality from dashboard-server
|
|
36
|
-
export {
|
|
37
|
-
// Main entry points
|
|
38
|
-
startDashboard, startServer, createServer, } from '@agent-relay/dashboard-server';
|
|
39
19
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AACpC,OAAO,IAAI,MAAM,MAAM,CAAC;AAExB,2DAA2D;AAC3D,4DAA4D;AAC5D,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AAC/D,MAAM,CAAC,MAAM,YAAY,GAAG,IAAI,CAAC,IAAI,CAAC,SAAS,EAAE,KAAK,CAAC,CAAC"}
|
package/out/404.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><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/ad96af0f7a47b705.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-dd93b81e2659669c.js"/><script src="/_next/static/chunks/1dd3208c-40ab0fc0f60392b8.js" async=""></script><script src="/_next/static/chunks/528-d375bc8b46912d2c.js" async=""></script><script src="/_next/static/chunks/main-app-7f73a939a312a228.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><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-dd93b81e2659669c.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/ad96af0f7a47b705.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[1815,[],\"\"]\n4:I[5092,[],\"\"]\n5:I[2023,[],\"\"]\nb:I[1584,[],\"\"]\n6:{\"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\"}\n7:{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"}\n8:{\"display\":\"inline-block\"}\n9:{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0}\nc:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"
|
|
1
|
+
<!DOCTYPE html><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/ad96af0f7a47b705.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-dd93b81e2659669c.js"/><script src="/_next/static/chunks/1dd3208c-40ab0fc0f60392b8.js" async=""></script><script src="/_next/static/chunks/528-d375bc8b46912d2c.js" async=""></script><script src="/_next/static/chunks/main-app-7f73a939a312a228.js" async=""></script><meta name="robots" content="noindex"/><title>404: This page could not be found.</title><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><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-dd93b81e2659669c.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/ad96af0f7a47b705.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[1815,[],\"\"]\n4:I[5092,[],\"\"]\n5:I[2023,[],\"\"]\nb:I[1584,[],\"\"]\n6:{\"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\"}\n7:{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"}\n8:{\"display\":\"inline-block\"}\n9:{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0}\nc:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"vqqAzuICuRIakU1wIp0AV\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"_not-found\"],\"initialTree\":[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"/_not-found\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[[\"$\",\"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],null],null]},[null,[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"/_not-found\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/ad96af0f7a47b705.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L4\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L5\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":\"$6\",\"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\":\"$7\",\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":\"$8\",\"children\":[\"$\",\"h2\",null,{\"style\":\"$9\",\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[[\"$\",\"meta\",null,{\"name\":\"robots\",\"content\":\"noindex\"}],\"$La\"],\"globalErrorComponent\":\"$b\",\"missingSlots\":\"$Wc\"}]\n"])</script><script>self.__next_f.push([1,"a:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Agent Relay Dashboard\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Fleet control dashboard for Agent Relay\"}]]\n3:null\n"])</script></body></html>
|
package/out/about.html
CHANGED
|
@@ -6,4 +6,4 @@
|
|
|
6
6
|
transition-all duration-300
|
|
7
7
|
drop-shadow-[0_0_8px_rgba(0,217,255,0.3)]
|
|
8
8
|
|
|
9
|
-
" aria-label="Agent Relay Logo" role="img"><path d="M30 80 L 50 20 L 70 80" stroke="#00d9ff" stroke-width="5" stroke-linejoin="round" stroke-linecap="round" fill="none"></path><line x1="40" y1="50" x2="60" y2="50" stroke="#00d9ff" stroke-width="5" stroke-linecap="round"></line><path d="M50 20 L 50 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" opacity="0.7"></path><path d="M50 20 C 80 20 80 50 50 50 L 80 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" fill="none" opacity="0.7"></path></svg><span class="logo-text">Agent Relay</span></a><p>Orchestrate AI agents like a symphony.</p></div><div class="footer-links"><div class="footer-column"><h4>Product</h4><a href="/#features">Features</a><a href="/pricing">Pricing</a><a href="https://docs.agent-relay.com/">Documentation</a><a href="/changelog">Changelog</a></div><div class="footer-column"><h4>Company</h4><a href="/about">About</a><a href="/blog">Blog</a><a href="/careers">Careers</a><a href="/contact">Contact</a></div><div class="footer-column"><h4>Legal</h4><a href="/privacy">Privacy</a><a href="/terms">Terms</a><a href="/security">Security</a></div></div></div><div class="footer-bottom"><p>© 2026 Agent Relay. All rights reserved.</p><div class="social-links"><a href="https://github.com/AgentWorkforce/relay" aria-label="GitHub"><svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z"></path></svg></a><a href="https://twitter.com/agent_relay" aria-label="Twitter"><svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"></path></svg></a></div></div></footer></div><script src="/_next/static/chunks/webpack-dd93b81e2659669c.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/ad96af0f7a47b705.css\",\"style\"]\n2:HL[\"/_next/static/css/7519fcf229687c83.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"3:I[1815,[],\"\"]\n5:I[5428,[],\"ClientPageRoot\"]\n6:I[1705,[\"695\",\"static/chunks/695-e794284f76ffbce7.js\",\"301\",\"static/chunks/app/about/page-fff7c6457683f243.js\"],\"default\",1]\n7:I[5092,[],\"\"]\n8:I[2023,[],\"\"]\na:I[1584,[],\"\"]\nb:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L3\",null,{\"buildId\":\"
|
|
9
|
+
" aria-label="Agent Relay Logo" role="img"><path d="M30 80 L 50 20 L 70 80" stroke="#00d9ff" stroke-width="5" stroke-linejoin="round" stroke-linecap="round" fill="none"></path><line x1="40" y1="50" x2="60" y2="50" stroke="#00d9ff" stroke-width="5" stroke-linecap="round"></line><path d="M50 20 L 50 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" opacity="0.7"></path><path d="M50 20 C 80 20 80 50 50 50 L 80 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" fill="none" opacity="0.7"></path></svg><span class="logo-text">Agent Relay</span></a><p>Orchestrate AI agents like a symphony.</p></div><div class="footer-links"><div class="footer-column"><h4>Product</h4><a href="/#features">Features</a><a href="/pricing">Pricing</a><a href="https://docs.agent-relay.com/">Documentation</a><a href="/changelog">Changelog</a></div><div class="footer-column"><h4>Company</h4><a href="/about">About</a><a href="/blog">Blog</a><a href="/careers">Careers</a><a href="/contact">Contact</a></div><div class="footer-column"><h4>Legal</h4><a href="/privacy">Privacy</a><a href="/terms">Terms</a><a href="/security">Security</a></div></div></div><div class="footer-bottom"><p>© 2026 Agent Relay. All rights reserved.</p><div class="social-links"><a href="https://github.com/AgentWorkforce/relay" aria-label="GitHub"><svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z"></path></svg></a><a href="https://twitter.com/agent_relay" aria-label="Twitter"><svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"></path></svg></a></div></div></footer></div><script src="/_next/static/chunks/webpack-dd93b81e2659669c.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/ad96af0f7a47b705.css\",\"style\"]\n2:HL[\"/_next/static/css/7519fcf229687c83.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"3:I[1815,[],\"\"]\n5:I[5428,[],\"ClientPageRoot\"]\n6:I[1705,[\"695\",\"static/chunks/695-e794284f76ffbce7.js\",\"301\",\"static/chunks/app/about/page-fff7c6457683f243.js\"],\"default\",1]\n7:I[5092,[],\"\"]\n8:I[2023,[],\"\"]\na:I[1584,[],\"\"]\nb:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L3\",null,{\"buildId\":\"vqqAzuICuRIakU1wIp0AV\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"about\"],\"initialTree\":[\"\",{\"children\":[\"about\",{\"children\":[\"__PAGE__\",{}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"about\",{\"children\":[\"__PAGE__\",{},[[\"$L4\",[\"$\",\"$L5\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$6\"}],[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/7519fcf229687c83.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]]],null],null]},[null,[\"$\",\"$L7\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"about\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L8\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/ad96af0f7a47b705.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L7\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L8\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L9\"],\"globalErrorComponent\":\"$a\",\"missingSlots\":\"$Wb\"}]\n"])</script><script>self.__next_f.push([1,"9:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Agent Relay Dashboard\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Fleet control dashboard for Agent Relay\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n4:null\n"])</script></body></html>
|
package/out/about.txt
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
3:I[1705,["695","static/chunks/695-e794284f76ffbce7.js","301","static/chunks/app/about/page-fff7c6457683f243.js"],"default",1]
|
|
3
3
|
4:I[5092,[],""]
|
|
4
4
|
5:I[2023,[],""]
|
|
5
|
-
0:["
|
|
5
|
+
0:["vqqAzuICuRIakU1wIp0AV",[[["",{"children":["about",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",{"children":["about",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/7519fcf229687c83.css","precedence":"next","crossOrigin":"$undefined"}]]],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","about","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/ad96af0f7a47b705.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L6",null]]]]
|
|
6
6
|
6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Agent Relay Dashboard"}],["$","meta","3",{"name":"description","content":"Fleet control dashboard for Agent Relay"}],["$","link","4",{"rel":"apple-touch-icon","href":"/apple-icon.png?9e7a840704165ca6","type":"image/png","sizes":"256x256"}]]
|
|
7
7
|
1:null
|
package/out/app/onboarding.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><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/ad96af0f7a47b705.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-dd93b81e2659669c.js"/><script src="/_next/static/chunks/1dd3208c-40ab0fc0f60392b8.js" async=""></script><script src="/_next/static/chunks/528-d375bc8b46912d2c.js" async=""></script><script src="/_next/static/chunks/main-app-7f73a939a312a228.js" async=""></script><script src="/_next/static/chunks/app/app/onboarding/page-129abc5da2e67971.js" async=""></script><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><link rel="apple-touch-icon" href="/apple-icon.png?9e7a840704165ca6" type="image/png" sizes="256x256"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><!--$!--><template data-dgst="BAILOUT_TO_CLIENT_SIDE_RENDERING"></template><div class="min-h-screen bg-gradient-to-br from-[#0a0a0f] via-[#0d1117] to-[#0a0a0f] flex items-center justify-center"><div class="text-center"><svg class="w-8 h-8 text-accent-cyan animate-spin mx-auto" fill="none" viewBox="0 0 24 24"><circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle><path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z"></path></svg><p class="mt-4 text-text-muted">Loading...</p></div></div><!--/$--><script src="/_next/static/chunks/webpack-dd93b81e2659669c.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/ad96af0f7a47b705.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[1815,[],\"\"]\n4:I[5428,[],\"ClientPageRoot\"]\n5:I[7657,[\"615\",\"static/chunks/app/app/onboarding/page-129abc5da2e67971.js\"],\"default\",1]\n6:I[5092,[],\"\"]\n7:I[2023,[],\"\"]\n9:I[1584,[],\"\"]\na:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"
|
|
1
|
+
<!DOCTYPE html><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/ad96af0f7a47b705.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-dd93b81e2659669c.js"/><script src="/_next/static/chunks/1dd3208c-40ab0fc0f60392b8.js" async=""></script><script src="/_next/static/chunks/528-d375bc8b46912d2c.js" async=""></script><script src="/_next/static/chunks/main-app-7f73a939a312a228.js" async=""></script><script src="/_next/static/chunks/app/app/onboarding/page-129abc5da2e67971.js" async=""></script><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><link rel="apple-touch-icon" href="/apple-icon.png?9e7a840704165ca6" type="image/png" sizes="256x256"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><!--$!--><template data-dgst="BAILOUT_TO_CLIENT_SIDE_RENDERING"></template><div class="min-h-screen bg-gradient-to-br from-[#0a0a0f] via-[#0d1117] to-[#0a0a0f] flex items-center justify-center"><div class="text-center"><svg class="w-8 h-8 text-accent-cyan animate-spin mx-auto" fill="none" viewBox="0 0 24 24"><circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle><path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z"></path></svg><p class="mt-4 text-text-muted">Loading...</p></div></div><!--/$--><script src="/_next/static/chunks/webpack-dd93b81e2659669c.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/ad96af0f7a47b705.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[1815,[],\"\"]\n4:I[5428,[],\"ClientPageRoot\"]\n5:I[7657,[\"615\",\"static/chunks/app/app/onboarding/page-129abc5da2e67971.js\"],\"default\",1]\n6:I[5092,[],\"\"]\n7:I[2023,[],\"\"]\n9:I[1584,[],\"\"]\na:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"vqqAzuICuRIakU1wIp0AV\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"app\",\"onboarding\"],\"initialTree\":[\"\",{\"children\":[\"app\",{\"children\":[\"onboarding\",{\"children\":[\"__PAGE__\",{}]}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"app\",{\"children\":[\"onboarding\",{\"children\":[\"__PAGE__\",{},[[\"$L3\",[\"$\",\"$L4\",null,{\"props\":{\"params\":{},\"searchParams\":{}},\"Component\":\"$5\"}],null],null],null]},[null,[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"app\",\"children\",\"onboarding\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[null,[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"app\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/ad96af0f7a47b705.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L6\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L8\"],\"globalErrorComponent\":\"$9\",\"missingSlots\":\"$Wa\"}]\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Agent Relay Dashboard\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Fleet control dashboard for Agent Relay\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n3:null\n"])</script></body></html>
|
package/out/app/onboarding.txt
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
3:I[7657,["615","static/chunks/app/app/onboarding/page-129abc5da2e67971.js"],"default",1]
|
|
3
3
|
4:I[5092,[],""]
|
|
4
4
|
5:I[2023,[],""]
|
|
5
|
-
0:["
|
|
5
|
+
0:["vqqAzuICuRIakU1wIp0AV",[[["",{"children":["app",{"children":["onboarding",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],["",{"children":["app",{"children":["onboarding",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","app","children","onboarding","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","app","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/ad96af0f7a47b705.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L6",null]]]]
|
|
6
6
|
6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Agent Relay Dashboard"}],["$","meta","3",{"name":"description","content":"Fleet control dashboard for Agent Relay"}],["$","link","4",{"rel":"apple-touch-icon","href":"/apple-icon.png?9e7a840704165ca6","type":"image/png","sizes":"256x256"}]]
|
|
7
7
|
1:null
|
package/out/app.html
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
<!DOCTYPE html><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/ad96af0f7a47b705.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-dd93b81e2659669c.js"/><script src="/_next/static/chunks/1dd3208c-40ab0fc0f60392b8.js" async=""></script><script src="/_next/static/chunks/528-d375bc8b46912d2c.js" async=""></script><script src="/_next/static/chunks/main-app-7f73a939a312a228.js" async=""></script><script src="/_next/static/chunks/ab6c8a12-0a58072fbb505134.js" async=""></script><script src="/_next/static/chunks/202-6cfbf8339f05e5ef.js" async=""></script><script src="/_next/static/chunks/11-9a2993a37266dcb3.js" async=""></script><script src="/_next/static/chunks/118-b821e49d30a9f6af.js" async=""></script><script src="/_next/static/chunks/994-e927457424324a78.js" async=""></script><script src="/_next/static/chunks/722-6cffbc5120f31e24.js" async=""></script><script src="/_next/static/chunks/873-604131545363afd2.js" async=""></script><script src="/_next/static/chunks/259-b560f20df53128e5.js" async=""></script><script src="/_next/static/chunks/app/app/%5B%5B...slug%5D%5D/page-a528040db9d1fec0.js" async=""></script><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><link rel="apple-touch-icon" href="/apple-icon.png?9e7a840704165ca6" type="image/png" sizes="256x256"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div class="min-h-screen bg-gradient-to-br from-[#0a0a0f] via-[#0d1117] to-[#0a0a0f] flex items-center justify-center"><div class="text-center"><svg class="w-8 h-8 text-accent-cyan animate-spin mx-auto" fill="none" viewBox="0 0 24 24"><circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle><path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z"></path></svg><p class="mt-4 text-text-muted">Loading...</p></div></div><script src="/_next/static/chunks/webpack-dd93b81e2659669c.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/ad96af0f7a47b705.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[1815,[],\"\"]\n4:I[8704,[\"440\",\"static/chunks/ab6c8a12-0a58072fbb505134.js\",\"202\",\"static/chunks/202-6cfbf8339f05e5ef.js\",\"11\",\"static/chunks/11-9a2993a37266dcb3.js\",\"118\",\"static/chunks/118-b821e49d30a9f6af.js\",\"994\",\"static/chunks/994-e927457424324a78.js\",\"722\",\"static/chunks/722-6cffbc5120f31e24.js\",\"873\",\"static/chunks/873-604131545363afd2.js\",\"259\",\"static/chunks/259-b560f20df53128e5.js\",\"614\",\"static/chunks/app/app/%5B%5B...slug%5D%5D/page-a528040db9d1fec0.js\"],\"default\"]\n5:I[5092,[],\"\"]\n7:I[2023,[],\"\"]\n9:I[1584,[],\"\"]\n6:[\"slug\",\"\",\"oc\"]\na:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"
|
|
1
|
+
<!DOCTYPE html><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/ad96af0f7a47b705.css" data-precedence="next"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack-dd93b81e2659669c.js"/><script src="/_next/static/chunks/1dd3208c-40ab0fc0f60392b8.js" async=""></script><script src="/_next/static/chunks/528-d375bc8b46912d2c.js" async=""></script><script src="/_next/static/chunks/main-app-7f73a939a312a228.js" async=""></script><script src="/_next/static/chunks/ab6c8a12-0a58072fbb505134.js" async=""></script><script src="/_next/static/chunks/202-6cfbf8339f05e5ef.js" async=""></script><script src="/_next/static/chunks/11-9a2993a37266dcb3.js" async=""></script><script src="/_next/static/chunks/118-b821e49d30a9f6af.js" async=""></script><script src="/_next/static/chunks/994-e927457424324a78.js" async=""></script><script src="/_next/static/chunks/722-6cffbc5120f31e24.js" async=""></script><script src="/_next/static/chunks/873-604131545363afd2.js" async=""></script><script src="/_next/static/chunks/259-b560f20df53128e5.js" async=""></script><script src="/_next/static/chunks/app/app/%5B%5B...slug%5D%5D/page-a528040db9d1fec0.js" async=""></script><title>Agent Relay Dashboard</title><meta name="description" content="Fleet control dashboard for Agent Relay"/><link rel="apple-touch-icon" href="/apple-icon.png?9e7a840704165ca6" type="image/png" sizes="256x256"/><script src="/_next/static/chunks/polyfills-42372ed130431b0a.js" noModule=""></script></head><body><div class="min-h-screen bg-gradient-to-br from-[#0a0a0f] via-[#0d1117] to-[#0a0a0f] flex items-center justify-center"><div class="text-center"><svg class="w-8 h-8 text-accent-cyan animate-spin mx-auto" fill="none" viewBox="0 0 24 24"><circle class="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" stroke-width="4"></circle><path class="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4z"></path></svg><p class="mt-4 text-text-muted">Loading...</p></div></div><script src="/_next/static/chunks/webpack-dd93b81e2659669c.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/ad96af0f7a47b705.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"2:I[1815,[],\"\"]\n4:I[8704,[\"440\",\"static/chunks/ab6c8a12-0a58072fbb505134.js\",\"202\",\"static/chunks/202-6cfbf8339f05e5ef.js\",\"11\",\"static/chunks/11-9a2993a37266dcb3.js\",\"118\",\"static/chunks/118-b821e49d30a9f6af.js\",\"994\",\"static/chunks/994-e927457424324a78.js\",\"722\",\"static/chunks/722-6cffbc5120f31e24.js\",\"873\",\"static/chunks/873-604131545363afd2.js\",\"259\",\"static/chunks/259-b560f20df53128e5.js\",\"614\",\"static/chunks/app/app/%5B%5B...slug%5D%5D/page-a528040db9d1fec0.js\"],\"default\"]\n5:I[5092,[],\"\"]\n7:I[2023,[],\"\"]\n9:I[1584,[],\"\"]\n6:[\"slug\",\"\",\"oc\"]\na:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L2\",null,{\"buildId\":\"vqqAzuICuRIakU1wIp0AV\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"app\"],\"initialTree\":[\"\",{\"children\":[\"app\",{\"children\":[[\"slug\",\"\",\"oc\"],{\"children\":[\"__PAGE__\",{}]}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"app\",{\"children\":[[\"slug\",\"\",\"oc\"],{\"children\":[\"__PAGE__\",{},[[\"$L3\",[\"$\",\"$L4\",null,{}],null],null],null]},[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"app\",\"children\",\"$6\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"app\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/ad96af0f7a47b705.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L7\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L8\"],\"globalErrorComponent\":\"$9\",\"missingSlots\":\"$Wa\"}]\n"])</script><script>self.__next_f.push([1,"8:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Agent Relay Dashboard\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Fleet control dashboard for Agent Relay\"}],[\"$\",\"link\",\"4\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n3:null\n"])</script></body></html>
|
package/out/app.txt
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
3:I[5092,[],""]
|
|
3
3
|
5:I[2023,[],""]
|
|
4
4
|
4:["slug","","oc"]
|
|
5
|
-
0:["
|
|
5
|
+
0:["vqqAzuICuRIakU1wIp0AV",[[["",{"children":["app",{"children":[["slug","","oc"],{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],["",{"children":["app",{"children":[["slug","","oc"],{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{}],null],null],null]},[null,["$","$L3",null,{"parallelRouterKey":"children","segmentPath":["children","app","children","$4","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[null,["$","$L3",null,{"parallelRouterKey":"children","segmentPath":["children","app","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/ad96af0f7a47b705.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","children":["$","body",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}]],null],null],["$L6",null]]]]
|
|
6
6
|
6:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"Agent Relay Dashboard"}],["$","meta","3",{"name":"description","content":"Fleet control dashboard for Agent Relay"}],["$","link","4",{"rel":"apple-touch-icon","href":"/apple-icon.png?9e7a840704165ca6","type":"image/png","sizes":"256x256"}]]
|
|
7
7
|
1:null
|
|
@@ -35,4 +35,4 @@ await client.send('Worker', 'Hello from my app');</code></pr
|
|
|
35
35
|
transition-all duration-300
|
|
36
36
|
drop-shadow-[0_0_8px_rgba(0,217,255,0.3)]
|
|
37
37
|
|
|
38
|
-
" aria-label="Agent Relay Logo" role="img"><path d="M30 80 L 50 20 L 70 80" stroke="#00d9ff" stroke-width="5" stroke-linejoin="round" stroke-linecap="round" fill="none"></path><line x1="40" y1="50" x2="60" y2="50" stroke="#00d9ff" stroke-width="5" stroke-linecap="round"></line><path d="M50 20 L 50 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" opacity="0.7"></path><path d="M50 20 C 80 20 80 50 50 50 L 80 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" fill="none" opacity="0.7"></path></svg><span class="logo-text">Agent Relay</span></a><p>Orchestrate AI agents like a symphony.</p></div><div class="footer-links"><div class="footer-column"><h4>Product</h4><a href="/#features">Features</a><a href="/pricing">Pricing</a><a href="https://docs.agent-relay.com/">Documentation</a><a href="/changelog">Changelog</a></div><div class="footer-column"><h4>Company</h4><a href="/about">About</a><a href="/blog">Blog</a><a href="/careers">Careers</a><a href="/contact">Contact</a></div><div class="footer-column"><h4>Legal</h4><a href="/privacy">Privacy</a><a href="/terms">Terms</a><a href="/security">Security</a></div></div></div><div class="footer-bottom"><p>© 2026 Agent Relay. All rights reserved.</p><div class="social-links"><a href="https://github.com/AgentWorkforce/relay" aria-label="GitHub"><svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z"></path></svg></a><a href="https://twitter.com/agent_relay" aria-label="Twitter"><svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"></path></svg></a></div></div></footer></div><script src="/_next/static/chunks/webpack-dd93b81e2659669c.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/ad96af0f7a47b705.css\",\"style\"]\n2:HL[\"/_next/static/css/7519fcf229687c83.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"3:I[1815,[],\"\"]\n5:I[5092,[],\"\"]\n6:I[2023,[],\"\"]\n8:I[1584,[],\"\"]\n9:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L3\",null,{\"buildId\":\"QS-NFfJUw1w3081kmWJg9\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"blog\",\"go-to-bed-wake-up-to-a-finished-product\"],\"initialTree\":[\"\",{\"children\":[\"blog\",{\"children\":[\"go-to-bed-wake-up-to-a-finished-product\",{\"children\":[\"__PAGE__\",{}]}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"blog\",{\"children\":[\"go-to-bed-wake-up-to-a-finished-product\",{\"children\":[\"__PAGE__\",{},[[\"$L4\",[\"$\",\"div\",null,{\"className\":\"landing-page static-page\",\"children\":[[\"$\",\"div\",null,{\"className\":\"landing-bg\",\"children\":[[\"$\",\"div\",null,{\"className\":\"grid-bg\",\"children\":[[\"$\",\"div\",null,{\"className\":\"grid-lines\"}],[\"$\",\"div\",null,{\"className\":\"grid-glow\"}]]}],[\"$\",\"div\",null,{\"className\":\"glow-orbs\",\"children\":[[\"$\",\"div\",null,{\"className\":\"orb orb-1\"}],[\"$\",\"div\",null,{\"className\":\"orb orb-2\"}],[\"$\",\"div\",null,{\"className\":\"orb orb-3\"}]]}]]}],[\"$\",\"nav\",null,{\"className\":\"nav scrolled\",\"children\":[\"$\",\"div\",null,{\"className\":\"nav-inner\",\"children\":[[\"$\",\"a\",null,{\"href\":\"/\",\"className\":\"nav-logo\",\"children\":[[\"$\",\"svg\",null,{\"width\":28,\"height\":28,\"viewBox\":\"0 0 100 100\",\"fill\":\"none\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"className\":\"\\n transition-all duration-300\\n drop-shadow-[0_0_8px_rgba(0,217,255,0.3)]\\n \\n \",\"aria-label\":\"Agent Relay Logo\",\"role\":\"img\",\"children\":[[\"$\",\"path\",null,{\"d\":\"M30 80 L 50 20 L 70 80\",\"stroke\":\"#00d9ff\",\"strokeWidth\":\"5\",\"strokeLinejoin\":\"round\",\"strokeLinecap\":\"round\",\"fill\":\"none\"}],[\"$\",\"line\",null,{\"x1\":\"40\",\"y1\":\"50\",\"x2\":\"60\",\"y2\":\"50\",\"stroke\":\"#00d9ff\",\"strokeWidth\":\"5\",\"strokeLinecap\":\"round\"}],[\"$\",\"path\",null,{\"d\":\"M50 20 L 50 80\",\"stroke\":\"#00ffc8\",\"strokeWidth\":\"2.5\",\"strokeLinecap\":\"round\",\"opacity\":\"0.7\"}],[\"$\",\"path\",null,{\"d\":\"M50 20 C 80 20 80 50 50 50 L 80 80\",\"stroke\":\"#00ffc8\",\"strokeWidth\":\"2.5\",\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"fill\":\"none\",\"opacity\":\"0.7\"}]]}],[\"$\",\"span\",null,{\"className\":\"logo-text\",\"children\":\"Agent Relay\"}]]}],[\"$\",\"div\",null,{\"className\":\"nav-links\",\"children\":[[\"$\",\"a\",null,{\"href\":\"/#demo\",\"children\":\"Demo\"}],[\"$\",\"a\",null,{\"href\":\"/#features\",\"children\":\"Features\"}],[\"$\",\"a\",null,{\"href\":\"/pricing\",\"children\":\"Pricing\"}],[\"$\",\"a\",null,{\"href\":\"https://docs.agent-relay.com/\",\"className\":\"nav-docs\",\"children\":\"Docs\"}]]}],[\"$\",\"div\",null,{\"className\":\"nav-actions\",\"children\":[[\"$\",\"a\",null,{\"href\":\"/login\",\"className\":\"btn-ghost\",\"children\":\"Sign In\"}],[\"$\",\"a\",null,{\"href\":\"/signup\",\"className\":\"btn-primary\",\"children\":\"Get Started\"}]]}]]}]}],[\"$\",\"main\",null,{\"children\":[[\"$\",\"section\",null,{\"className\":\"static-hero\",\"children\":[\"$\",\"div\",null,{\"className\":\"static-hero-content\",\"children\":[[\"$\",\"h1\",null,{\"children\":[\"$\",\"a\",null,{\"href\":\"/blog\",\"style\":{\"color\":\"inherit\",\"textDecoration\":\"none\"},\"children\":\"Blog\"}]}],[\"$\",\"p\",null,{\"className\":\"static-subtitle\",\"children\":\"News, tutorials, and insights from the Agent Relay team.\"}],\"$undefined\"]}]}],[\"$\",\"section\",null,{\"className\":\"static-content\",\"children\":[\"$\",\"div\",null,{\"className\":\"content-container\",\"children\":[[\"$\",\"article\",null,{\"className\":\"blog-post\",\"children\":[[\"$\",\"img\",null,{\"src\":\"/blog/go-to-bed-wake-up-to-a-finished-product.svg\",\"alt\":\"Go to Bed, Wake Up to a Finished Product\",\"style\":{\"width\":\"100%\",\"height\":\"auto\",\"borderRadius\":\"12px\",\"marginBottom\":\"32px\"}}],[\"$\",\"div\",null,{\"className\":\"blog-post-header\",\"children\":[[\"$\",\"div\",null,{\"className\":\"blog-meta\",\"children\":[[\"$\",\"span\",null,{\"className\":\"blog-category\",\"children\":\"Vision\"}],[\"$\",\"span\",null,{\"children\":\"February 1, 2026\"}],[\"$\",\"span\",null,{\"className\":\"blog-author\",\"children\":[\"by \",[\"$\",\"a\",null,{\"href\":\"https://x.com/khaliqgant\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"children\":\"Khaliq Gant\"}]]}]]}],[\"$\",\"h2\",null,{\"className\":\"blog-post-title\",\"children\":\"Go to Bed, Wake Up to a Finished Product\"}],[\"$\",\"p\",null,{\"className\":\"blog-post-subtitle\",\"children\":\"How agent-to-agent communication is changing autonomous development\"}]]}],[\"$\",\"div\",null,{\"className\":\"blog-post-content\",\"children\":[[\"$\",\"p\",\"0\",{\"dangerouslySetInnerHTML\":{\"__html\":\"The clear and obvious takeaway from \u003ca href=\\\"https://openclaw.ai/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003eOpenClaw\u003c/a\u003e (Moltbot) and \u003ca href=\\\"https://www.moltbook.com/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003eMoltbook\u003c/a\u003e is that agent-to-agent communication is first of all weird and fascinating, but the potential this unlocks is also unprecedented and potentially revolutionary.\"}}],[\"$\",\"p\",\"1\",{\"dangerouslySetInnerHTML\":{\"__html\":\"On December 16th, we started a project where we wanted to get two Claude agents to play tic-tac-toe against each other. We first dug into Agent Mail and \u003ca href=\\\"https://github.com/Dicklesworthstone/mcp_agent_mail/pull/33\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003emade a proof of concept\u003c/a\u003e there, but quickly realized the limitations of a pull-based methodology. We kept digging and quickly realized the only way to get an agent to autonomously interact with other agents is a push-based method that delivers messages directly to their input. So was born \u003ca href=\\\"https://github.com/AgentWorkforce/relay\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003eAgent Relay\u003c/a\u003e.\"}}],[\"$\",\"h2\",\"2\",{\"children\":\"Ok...I'm intrigued, go on...\"}],[\"$\",\"p\",\"3\",{\"dangerouslySetInnerHTML\":{\"__html\":\"Agent-to-agent communication across any CLI tool (Codex, Claude, Gemini, OpenCode, Droid, etc.) is possible \u003cstrong\u003eright now\u003c/strong\u003e for any task. This can be done via an easy-to-use SDK or the relay-dashboard where you can see messages across agents, chat, spawn and release agents as needed.\"}}],[\"$\",\"p\",\"4\",{\"dangerouslySetInnerHTML\":{\"__html\":\"At the base level, Agent Relay is a protocol which makes it easy and reliable to stage CLI-agnostic agent-to-agent communication. The tools built on top of that protocol are the \u003ca href=\\\"https://github.com/AgentWorkforce/relay-dashboard/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003erelay-dashboard\u003c/a\u003e and \u003ca href=\\\"https://github.com/AgentWorkforce/relay-tui\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003erelay-tui\u003c/a\u003e — but could be relay-slack, relay-discord -- you name it!\"}}],[\"$\",\"p\",\"5\",{\"dangerouslySetInnerHTML\":{\"__html\":\"As we see with Moltbook and what I've seen for the past month: \u003cstrong\u003eagents are creative, efficient, sometimes lazy and cut corners, chatty, and but mostly it is clear that they work quite effectively when given roles and clear responsibilities.\u003c/strong\u003e\"}}],[\"$\",\"p\",\"6\",{\"dangerouslySetInnerHTML\":{\"__html\":\"I kept finding myself as the clear bottleneck when working on projects, so removing myself and replacing with an agent is a huge accelerator. I found myself spending more time planning and producing detailed specs. I'd hand that to a \\\"Lead\\\" agent, ask them to review it, staff a team accordingly, and just let me know of any blockers.\"}}],[\"$\",\"p\",\"7\",{\"dangerouslySetInnerHTML\":{\"__html\":\"Then I would \u003ca href=\\\"https://x.com/khaliqgant/status/2008325804741071079\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003ego to bed\u003c/a\u003e and wake up to a finished product.\"}}],[\"$\",\"h2\",\"8\",{\"children\":\"Why Not Just Sub-Agents?\"}],[\"$\",\"p\",\"9\",{\"dangerouslySetInnerHTML\":{\"__html\":\"Using actual agent instances is a more powerful abstraction. Your agents can create sub-agents, giving the agent much more power. When giving a sub-agent a task too big or complex, it'll often hit compaction (context window limits) and just stop—which completely breaks the autonomous workflow we're looking for.\"}}],[\"$\",\"h2\",\"10\",{\"children\":\"How Do I Use This?\"}],[\"$\",\"p\",\"11\",{\"dangerouslySetInnerHTML\":{\"__html\":\"There are a few ways to use Relay:\"}}],[\"$\",\"h3\",\"12\",{\"children\":\"For Developers\"}],[\"$\",\"p\",\"13\",{\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong\u003e1.\u003c/strong\u003e Start a relay server and use the dashboard to spawn and chat with agents:\"}}],[\"$\",\"pre\",\"14\",{\"className\":\"code-block\",\"data-lang\":\"bash\",\"children\":[\"$\",\"code\",null,{\"children\":\"npm install -g agent-relay\\nagent-relay up --dashboard\"}]}],[\"$\",\"p\",\"15\",{\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong\u003e2.\u003c/strong\u003e Start a \u003ccode\u003eclaude\u003c/code\u003e | \u003ccode\u003ecodex\u003c/code\u003e etc session and tell it to install and start agent-relay by following the instructions here:\"}}],[\"$\",\"pre\",\"16\",{\"className\":\"code-block\",\"data-lang\":\"bash\",\"children\":[\"$\",\"code\",null,{\"children\":\"$$ claude\\n\\n╭────────────────────────────────────────╮\\n│ ✻ Welcome to Claude Code! │\\n│ │\\n│ /help for help │\\n│ │\\n╰────────────────────────────────────────╯\\n\\n\u003e Install and configure agent-relay by following the instructions here:\\n curl -s https://raw.githubusercontent.com/AgentWorkforce/relay/main/docs/guide/agent-setup.md\"}]}],[\"$\",\"p\",\"17\",{\"dangerouslySetInnerHTML\":{\"__html\":\"The agent will read the setup guide and start a relay session, ready to coordinate with other agents.\"}}],[\"$\",\"h3\",\"18\",{\"children\":\"For Library Developers\"}],[\"$\",\"p\",\"19\",{\"dangerouslySetInnerHTML\":{\"__html\":\"Use our SDK to enable agent-to-agent communication in your app:\"}}],[\"$\",\"pre\",\"20\",{\"className\":\"code-block\",\"data-lang\":\"bash\",\"children\":[\"$\",\"code\",null,{\"children\":\"# Install agent relay and start the daemon\\nnpm install -g agent-relay\\nagent-relay up\\n\\n# In your project\\nnpm install agent-relay\"}]}],[\"$\",\"pre\",\"21\",{\"className\":\"code-block\",\"data-lang\":\"javascript\",\"children\":[\"$\",\"code\",null,{\"children\":\"import { RelayClient } from 'agent-relay';\\n\\nconst client = new RelayClient({ name: 'MyApp' });\\nawait client.connect();\\n\\n// Spawn a worker agent\\nawait client.spawn({\\n name: 'Worker',\\n cli: 'claude',\\n task: 'Wait for instructions'\\n});\\n\\n// Send it a message\\nawait client.send('Worker', 'Hello from my app');\"}]}],[\"$\",\"p\",\"22\",{\"dangerouslySetInnerHTML\":{\"__html\":\"Check out our \u003ca href=\\\"https://docs.agent-relay.com/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003edocs\u003c/a\u003e for more info.\"}}],[\"$\",\"h2\",\"23\",{\"children\":\"What's Next\"}],[\"$\",\"p\",\"24\",{\"dangerouslySetInnerHTML\":{\"__html\":\"We're super excited for what's to come. \u003ca href=\\\"https://agent-relay.com/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003eAgent Relay Cloud\u003c/a\u003e allows you, via GitHub login, to link your repository to your own private workspace server. Using your Claude, Codex, Gemini, or Cursor login, you can spawn agents and have them work 24/7 against your repo using the dashboard.\"}}],[\"$\",\"p\",\"25\",{\"dangerouslySetInnerHTML\":{\"__html\":\"You and your teammates who have access to the repository can interact with agents, giving instructions in different topic-based channels to help organize agent work. You can have agents review pull requests, work on documentation—all with authenticated access to your GitHub repo.\"}}],[\"$\",\"p\",\"26\",{\"dangerouslySetInnerHTML\":{\"__html\":\"This is just the beginning. GitHub is the first context we've unlocked. This will be extended to other integrations like Notion, Slack, Outlook, etc., so agents can operate 24/7 and accelerate your workflows.\"}}]]}]]}],[\"$\",\"hr\",null,{\"style\":{\"border\":\"none\",\"borderTop\":\"1px solid var(--border-subtle)\",\"margin\":\"48px 0\"}}],[\"$\",\"h2\",null,{\"children\":\"Stay Updated\"}],[\"$\",\"p\",null,{\"children\":[\"Follow us on \",[\"$\",\"a\",null,{\"href\":\"https://twitter.com/agent_relay\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"children\":\"Twitter\"}],\" for the latest updates and more content.\"]}]]}]}]]}],[\"$\",\"footer\",null,{\"className\":\"footer\",\"children\":[[\"$\",\"div\",null,{\"className\":\"footer-inner\",\"children\":[[\"$\",\"div\",null,{\"className\":\"footer-brand\",\"children\":[[\"$\",\"a\",null,{\"href\":\"/\",\"className\":\"footer-logo\",\"children\":[[\"$\",\"svg\",null,{\"width\":24,\"height\":24,\"viewBox\":\"0 0 100 100\",\"fill\":\"none\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"className\":\"\\n transition-all duration-300\\n drop-shadow-[0_0_8px_rgba(0,217,255,0.3)]\\n \\n \",\"aria-label\":\"Agent Relay Logo\",\"role\":\"img\",\"children\":[[\"$\",\"path\",null,{\"d\":\"M30 80 L 50 20 L 70 80\",\"stroke\":\"#00d9ff\",\"strokeWidth\":\"5\",\"strokeLinejoin\":\"round\",\"strokeLinecap\":\"round\",\"fill\":\"none\"}],[\"$\",\"line\",null,{\"x1\":\"40\",\"y1\":\"50\",\"x2\":\"60\",\"y2\":\"50\",\"stroke\":\"#00d9ff\",\"strokeWidth\":\"5\",\"strokeLinecap\":\"round\"}],[\"$\",\"path\",null,{\"d\":\"M50 20 L 50 80\",\"stroke\":\"#00ffc8\",\"strokeWidth\":\"2.5\",\"strokeLinecap\":\"round\",\"opacity\":\"0.7\"}],[\"$\",\"path\",null,{\"d\":\"M50 20 C 80 20 80 50 50 50 L 80 80\",\"stroke\":\"#00ffc8\",\"strokeWidth\":\"2.5\",\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"fill\":\"none\",\"opacity\":\"0.7\"}]]}],[\"$\",\"span\",null,{\"className\":\"logo-text\",\"children\":\"Agent Relay\"}]]}],[\"$\",\"p\",null,{\"children\":\"Orchestrate AI agents like a symphony.\"}]]}],[\"$\",\"div\",null,{\"className\":\"footer-links\",\"children\":[[\"$\",\"div\",null,{\"className\":\"footer-column\",\"children\":[[\"$\",\"h4\",null,{\"children\":\"Product\"}],[\"$\",\"a\",null,{\"href\":\"/#features\",\"children\":\"Features\"}],[\"$\",\"a\",null,{\"href\":\"/pricing\",\"children\":\"Pricing\"}],[\"$\",\"a\",null,{\"href\":\"https://docs.agent-relay.com/\",\"children\":\"Documentation\"}],[\"$\",\"a\",null,{\"href\":\"/changelog\",\"children\":\"Changelog\"}]]}],[\"$\",\"div\",null,{\"className\":\"footer-column\",\"children\":[[\"$\",\"h4\",null,{\"children\":\"Company\"}],[\"$\",\"a\",null,{\"href\":\"/about\",\"children\":\"About\"}],[\"$\",\"a\",null,{\"href\":\"/blog\",\"children\":\"Blog\"}],[\"$\",\"a\",null,{\"href\":\"/careers\",\"children\":\"Careers\"}],[\"$\",\"a\",null,{\"href\":\"/contact\",\"children\":\"Contact\"}]]}],[\"$\",\"div\",null,{\"className\":\"footer-column\",\"children\":[[\"$\",\"h4\",null,{\"children\":\"Legal\"}],[\"$\",\"a\",null,{\"href\":\"/privacy\",\"children\":\"Privacy\"}],[\"$\",\"a\",null,{\"href\":\"/terms\",\"children\":\"Terms\"}],[\"$\",\"a\",null,{\"href\":\"/security\",\"children\":\"Security\"}]]}]]}]]}],[\"$\",\"div\",null,{\"className\":\"footer-bottom\",\"children\":[[\"$\",\"p\",null,{\"children\":\"© 2026 Agent Relay. All rights reserved.\"}],[\"$\",\"div\",null,{\"className\":\"social-links\",\"children\":[[\"$\",\"a\",null,{\"href\":\"https://github.com/AgentWorkforce/relay\",\"aria-label\":\"GitHub\",\"children\":[\"$\",\"svg\",null,{\"width\":\"20\",\"height\":\"20\",\"viewBox\":\"0 0 24 24\",\"fill\":\"currentColor\",\"children\":[\"$\",\"path\",null,{\"d\":\"M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z\"}]}]}],[\"$\",\"a\",null,{\"href\":\"https://twitter.com/agent_relay\",\"aria-label\":\"Twitter\",\"children\":[\"$\",\"svg\",null,{\"width\":\"20\",\"height\":\"20\",\"viewBox\":\"0 0 24 24\",\"fill\":\"currentColor\",\"children\":[\"$\",\"path\",null,{\"d\":\"M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z\"}]}]}]]}]]}]]}]]}],[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/7519fcf229687c83.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]]],null],null]},[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"blog\",\"children\",\"go-to-bed-wake-up-to-a-finished-product\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"blog\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/ad96af0f7a47b705.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L7\"],\"globalErrorComponent\":\"$8\",\"missingSlots\":\"$W9\"}]\n"])</script><script>self.__next_f.push([1,"7:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Go to Bed, Wake Up to a Finished Product | Agent Relay Blog\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Agent-to-agent communication is weird, fascinating, and potentially revolutionary. Here's how I built a system where agents work autonomously while I sleep.\"}],[\"$\",\"meta\",\"4\",{\"property\":\"og:title\",\"content\":\"Go to Bed, Wake Up to a Finished Product\"}],[\"$\",\"meta\",\"5\",{\"property\":\"og:description\",\"content\":\"How agent-to-agent communication is changing autonomous development\"}],[\"$\",\"meta\",\"6\",{\"property\":\"og:url\",\"content\":\"https://agent-relay.com/blog/go-to-bed-wake-up-to-a-finished-product\"}],[\"$\",\"meta\",\"7\",{\"property\":\"og:site_name\",\"content\":\"Agent Relay\"}],[\"$\",\"meta\",\"8\",{\"property\":\"og:image\",\"content\":\"https://agent-relay.com/blog/go-to-bed-wake-up-to-a-finished-product.svg\"}],[\"$\",\"meta\",\"9\",{\"property\":\"og:image:width\",\"content\":\"1200\"}],[\"$\",\"meta\",\"10\",{\"property\":\"og:image:height\",\"content\":\"630\"}],[\"$\",\"meta\",\"11\",{\"property\":\"og:image:alt\",\"content\":\"Go to Bed, Wake Up to a Finished Product - Agent Relay\"}],[\"$\",\"meta\",\"12\",{\"property\":\"og:type\",\"content\":\"article\"}],[\"$\",\"meta\",\"13\",{\"property\":\"article:published_time\",\"content\":\"2026-02-01\"}],[\"$\",\"meta\",\"14\",{\"property\":\"article:author\",\"content\":\"Khaliq Gant\"}],[\"$\",\"meta\",\"15\",{\"name\":\"twitter:card\",\"content\":\"summary_large_image\"}],[\"$\",\"meta\",\"16\",{\"name\":\"twitter:title\",\"content\":\"Go to Bed, Wake Up to a Finished Product\"}],[\"$\",\"meta\",\"17\",{\"name\":\"twitter:description\",\"content\":\"How agent-to-agent communication is changing autonomous development\"}],[\"$\",\"meta\",\"18\",{\"name\":\"twitter:image\",\"content\":\"https://agent-relay.com/blog/go-to-bed-wake-up-to-a-finished-product.svg\"}],[\"$\",\"link\",\"19\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n4:null\n"])</script></body></html>
|
|
38
|
+
" aria-label="Agent Relay Logo" role="img"><path d="M30 80 L 50 20 L 70 80" stroke="#00d9ff" stroke-width="5" stroke-linejoin="round" stroke-linecap="round" fill="none"></path><line x1="40" y1="50" x2="60" y2="50" stroke="#00d9ff" stroke-width="5" stroke-linecap="round"></line><path d="M50 20 L 50 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" opacity="0.7"></path><path d="M50 20 C 80 20 80 50 50 50 L 80 80" stroke="#00ffc8" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round" fill="none" opacity="0.7"></path></svg><span class="logo-text">Agent Relay</span></a><p>Orchestrate AI agents like a symphony.</p></div><div class="footer-links"><div class="footer-column"><h4>Product</h4><a href="/#features">Features</a><a href="/pricing">Pricing</a><a href="https://docs.agent-relay.com/">Documentation</a><a href="/changelog">Changelog</a></div><div class="footer-column"><h4>Company</h4><a href="/about">About</a><a href="/blog">Blog</a><a href="/careers">Careers</a><a href="/contact">Contact</a></div><div class="footer-column"><h4>Legal</h4><a href="/privacy">Privacy</a><a href="/terms">Terms</a><a href="/security">Security</a></div></div></div><div class="footer-bottom"><p>© 2026 Agent Relay. All rights reserved.</p><div class="social-links"><a href="https://github.com/AgentWorkforce/relay" aria-label="GitHub"><svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z"></path></svg></a><a href="https://twitter.com/agent_relay" aria-label="Twitter"><svg width="20" height="20" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z"></path></svg></a></div></div></footer></div><script src="/_next/static/chunks/webpack-dd93b81e2659669c.js" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0]);self.__next_f.push([2,null])</script><script>self.__next_f.push([1,"1:HL[\"/_next/static/css/ad96af0f7a47b705.css\",\"style\"]\n2:HL[\"/_next/static/css/7519fcf229687c83.css\",\"style\"]\n"])</script><script>self.__next_f.push([1,"3:I[1815,[],\"\"]\n5:I[5092,[],\"\"]\n6:I[2023,[],\"\"]\n8:I[1584,[],\"\"]\n9:[]\n"])</script><script>self.__next_f.push([1,"0:[\"$\",\"$L3\",null,{\"buildId\":\"vqqAzuICuRIakU1wIp0AV\",\"assetPrefix\":\"\",\"urlParts\":[\"\",\"blog\",\"go-to-bed-wake-up-to-a-finished-product\"],\"initialTree\":[\"\",{\"children\":[\"blog\",{\"children\":[\"go-to-bed-wake-up-to-a-finished-product\",{\"children\":[\"__PAGE__\",{}]}]}]},\"$undefined\",\"$undefined\",true],\"initialSeedData\":[\"\",{\"children\":[\"blog\",{\"children\":[\"go-to-bed-wake-up-to-a-finished-product\",{\"children\":[\"__PAGE__\",{},[[\"$L4\",[\"$\",\"div\",null,{\"className\":\"landing-page static-page\",\"children\":[[\"$\",\"div\",null,{\"className\":\"landing-bg\",\"children\":[[\"$\",\"div\",null,{\"className\":\"grid-bg\",\"children\":[[\"$\",\"div\",null,{\"className\":\"grid-lines\"}],[\"$\",\"div\",null,{\"className\":\"grid-glow\"}]]}],[\"$\",\"div\",null,{\"className\":\"glow-orbs\",\"children\":[[\"$\",\"div\",null,{\"className\":\"orb orb-1\"}],[\"$\",\"div\",null,{\"className\":\"orb orb-2\"}],[\"$\",\"div\",null,{\"className\":\"orb orb-3\"}]]}]]}],[\"$\",\"nav\",null,{\"className\":\"nav scrolled\",\"children\":[\"$\",\"div\",null,{\"className\":\"nav-inner\",\"children\":[[\"$\",\"a\",null,{\"href\":\"/\",\"className\":\"nav-logo\",\"children\":[[\"$\",\"svg\",null,{\"width\":28,\"height\":28,\"viewBox\":\"0 0 100 100\",\"fill\":\"none\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"className\":\"\\n transition-all duration-300\\n drop-shadow-[0_0_8px_rgba(0,217,255,0.3)]\\n \\n \",\"aria-label\":\"Agent Relay Logo\",\"role\":\"img\",\"children\":[[\"$\",\"path\",null,{\"d\":\"M30 80 L 50 20 L 70 80\",\"stroke\":\"#00d9ff\",\"strokeWidth\":\"5\",\"strokeLinejoin\":\"round\",\"strokeLinecap\":\"round\",\"fill\":\"none\"}],[\"$\",\"line\",null,{\"x1\":\"40\",\"y1\":\"50\",\"x2\":\"60\",\"y2\":\"50\",\"stroke\":\"#00d9ff\",\"strokeWidth\":\"5\",\"strokeLinecap\":\"round\"}],[\"$\",\"path\",null,{\"d\":\"M50 20 L 50 80\",\"stroke\":\"#00ffc8\",\"strokeWidth\":\"2.5\",\"strokeLinecap\":\"round\",\"opacity\":\"0.7\"}],[\"$\",\"path\",null,{\"d\":\"M50 20 C 80 20 80 50 50 50 L 80 80\",\"stroke\":\"#00ffc8\",\"strokeWidth\":\"2.5\",\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"fill\":\"none\",\"opacity\":\"0.7\"}]]}],[\"$\",\"span\",null,{\"className\":\"logo-text\",\"children\":\"Agent Relay\"}]]}],[\"$\",\"div\",null,{\"className\":\"nav-links\",\"children\":[[\"$\",\"a\",null,{\"href\":\"/#demo\",\"children\":\"Demo\"}],[\"$\",\"a\",null,{\"href\":\"/#features\",\"children\":\"Features\"}],[\"$\",\"a\",null,{\"href\":\"/pricing\",\"children\":\"Pricing\"}],[\"$\",\"a\",null,{\"href\":\"https://docs.agent-relay.com/\",\"className\":\"nav-docs\",\"children\":\"Docs\"}]]}],[\"$\",\"div\",null,{\"className\":\"nav-actions\",\"children\":[[\"$\",\"a\",null,{\"href\":\"/login\",\"className\":\"btn-ghost\",\"children\":\"Sign In\"}],[\"$\",\"a\",null,{\"href\":\"/signup\",\"className\":\"btn-primary\",\"children\":\"Get Started\"}]]}]]}]}],[\"$\",\"main\",null,{\"children\":[[\"$\",\"section\",null,{\"className\":\"static-hero\",\"children\":[\"$\",\"div\",null,{\"className\":\"static-hero-content\",\"children\":[[\"$\",\"h1\",null,{\"children\":[\"$\",\"a\",null,{\"href\":\"/blog\",\"style\":{\"color\":\"inherit\",\"textDecoration\":\"none\"},\"children\":\"Blog\"}]}],[\"$\",\"p\",null,{\"className\":\"static-subtitle\",\"children\":\"News, tutorials, and insights from the Agent Relay team.\"}],\"$undefined\"]}]}],[\"$\",\"section\",null,{\"className\":\"static-content\",\"children\":[\"$\",\"div\",null,{\"className\":\"content-container\",\"children\":[[\"$\",\"article\",null,{\"className\":\"blog-post\",\"children\":[[\"$\",\"img\",null,{\"src\":\"/blog/go-to-bed-wake-up-to-a-finished-product.svg\",\"alt\":\"Go to Bed, Wake Up to a Finished Product\",\"style\":{\"width\":\"100%\",\"height\":\"auto\",\"borderRadius\":\"12px\",\"marginBottom\":\"32px\"}}],[\"$\",\"div\",null,{\"className\":\"blog-post-header\",\"children\":[[\"$\",\"div\",null,{\"className\":\"blog-meta\",\"children\":[[\"$\",\"span\",null,{\"className\":\"blog-category\",\"children\":\"Vision\"}],[\"$\",\"span\",null,{\"children\":\"February 1, 2026\"}],[\"$\",\"span\",null,{\"className\":\"blog-author\",\"children\":[\"by \",[\"$\",\"a\",null,{\"href\":\"https://x.com/khaliqgant\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"children\":\"Khaliq Gant\"}]]}]]}],[\"$\",\"h2\",null,{\"className\":\"blog-post-title\",\"children\":\"Go to Bed, Wake Up to a Finished Product\"}],[\"$\",\"p\",null,{\"className\":\"blog-post-subtitle\",\"children\":\"How agent-to-agent communication is changing autonomous development\"}]]}],[\"$\",\"div\",null,{\"className\":\"blog-post-content\",\"children\":[[\"$\",\"p\",\"0\",{\"dangerouslySetInnerHTML\":{\"__html\":\"The clear and obvious takeaway from \u003ca href=\\\"https://openclaw.ai/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003eOpenClaw\u003c/a\u003e (Moltbot) and \u003ca href=\\\"https://www.moltbook.com/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003eMoltbook\u003c/a\u003e is that agent-to-agent communication is first of all weird and fascinating, but the potential this unlocks is also unprecedented and potentially revolutionary.\"}}],[\"$\",\"p\",\"1\",{\"dangerouslySetInnerHTML\":{\"__html\":\"On December 16th, we started a project where we wanted to get two Claude agents to play tic-tac-toe against each other. We first dug into Agent Mail and \u003ca href=\\\"https://github.com/Dicklesworthstone/mcp_agent_mail/pull/33\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003emade a proof of concept\u003c/a\u003e there, but quickly realized the limitations of a pull-based methodology. We kept digging and quickly realized the only way to get an agent to autonomously interact with other agents is a push-based method that delivers messages directly to their input. So was born \u003ca href=\\\"https://github.com/AgentWorkforce/relay\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003eAgent Relay\u003c/a\u003e.\"}}],[\"$\",\"h2\",\"2\",{\"children\":\"Ok...I'm intrigued, go on...\"}],[\"$\",\"p\",\"3\",{\"dangerouslySetInnerHTML\":{\"__html\":\"Agent-to-agent communication across any CLI tool (Codex, Claude, Gemini, OpenCode, Droid, etc.) is possible \u003cstrong\u003eright now\u003c/strong\u003e for any task. This can be done via an easy-to-use SDK or the relay-dashboard where you can see messages across agents, chat, spawn and release agents as needed.\"}}],[\"$\",\"p\",\"4\",{\"dangerouslySetInnerHTML\":{\"__html\":\"At the base level, Agent Relay is a protocol which makes it easy and reliable to stage CLI-agnostic agent-to-agent communication. The tools built on top of that protocol are the \u003ca href=\\\"https://github.com/AgentWorkforce/relay-dashboard/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003erelay-dashboard\u003c/a\u003e and \u003ca href=\\\"https://github.com/AgentWorkforce/relay-tui\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003erelay-tui\u003c/a\u003e — but could be relay-slack, relay-discord -- you name it!\"}}],[\"$\",\"p\",\"5\",{\"dangerouslySetInnerHTML\":{\"__html\":\"As we see with Moltbook and what I've seen for the past month: \u003cstrong\u003eagents are creative, efficient, sometimes lazy and cut corners, chatty, and but mostly it is clear that they work quite effectively when given roles and clear responsibilities.\u003c/strong\u003e\"}}],[\"$\",\"p\",\"6\",{\"dangerouslySetInnerHTML\":{\"__html\":\"I kept finding myself as the clear bottleneck when working on projects, so removing myself and replacing with an agent is a huge accelerator. I found myself spending more time planning and producing detailed specs. I'd hand that to a \\\"Lead\\\" agent, ask them to review it, staff a team accordingly, and just let me know of any blockers.\"}}],[\"$\",\"p\",\"7\",{\"dangerouslySetInnerHTML\":{\"__html\":\"Then I would \u003ca href=\\\"https://x.com/khaliqgant/status/2008325804741071079\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003ego to bed\u003c/a\u003e and wake up to a finished product.\"}}],[\"$\",\"h2\",\"8\",{\"children\":\"Why Not Just Sub-Agents?\"}],[\"$\",\"p\",\"9\",{\"dangerouslySetInnerHTML\":{\"__html\":\"Using actual agent instances is a more powerful abstraction. Your agents can create sub-agents, giving the agent much more power. When giving a sub-agent a task too big or complex, it'll often hit compaction (context window limits) and just stop—which completely breaks the autonomous workflow we're looking for.\"}}],[\"$\",\"h2\",\"10\",{\"children\":\"How Do I Use This?\"}],[\"$\",\"p\",\"11\",{\"dangerouslySetInnerHTML\":{\"__html\":\"There are a few ways to use Relay:\"}}],[\"$\",\"h3\",\"12\",{\"children\":\"For Developers\"}],[\"$\",\"p\",\"13\",{\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong\u003e1.\u003c/strong\u003e Start a relay server and use the dashboard to spawn and chat with agents:\"}}],[\"$\",\"pre\",\"14\",{\"className\":\"code-block\",\"data-lang\":\"bash\",\"children\":[\"$\",\"code\",null,{\"children\":\"npm install -g agent-relay\\nagent-relay up --dashboard\"}]}],[\"$\",\"p\",\"15\",{\"dangerouslySetInnerHTML\":{\"__html\":\"\u003cstrong\u003e2.\u003c/strong\u003e Start a \u003ccode\u003eclaude\u003c/code\u003e | \u003ccode\u003ecodex\u003c/code\u003e etc session and tell it to install and start agent-relay by following the instructions here:\"}}],[\"$\",\"pre\",\"16\",{\"className\":\"code-block\",\"data-lang\":\"bash\",\"children\":[\"$\",\"code\",null,{\"children\":\"$$ claude\\n\\n╭────────────────────────────────────────╮\\n│ ✻ Welcome to Claude Code! │\\n│ │\\n│ /help for help │\\n│ │\\n╰────────────────────────────────────────╯\\n\\n\u003e Install and configure agent-relay by following the instructions here:\\n curl -s https://raw.githubusercontent.com/AgentWorkforce/relay/main/docs/guide/agent-setup.md\"}]}],[\"$\",\"p\",\"17\",{\"dangerouslySetInnerHTML\":{\"__html\":\"The agent will read the setup guide and start a relay session, ready to coordinate with other agents.\"}}],[\"$\",\"h3\",\"18\",{\"children\":\"For Library Developers\"}],[\"$\",\"p\",\"19\",{\"dangerouslySetInnerHTML\":{\"__html\":\"Use our SDK to enable agent-to-agent communication in your app:\"}}],[\"$\",\"pre\",\"20\",{\"className\":\"code-block\",\"data-lang\":\"bash\",\"children\":[\"$\",\"code\",null,{\"children\":\"# Install agent relay and start the daemon\\nnpm install -g agent-relay\\nagent-relay up\\n\\n# In your project\\nnpm install agent-relay\"}]}],[\"$\",\"pre\",\"21\",{\"className\":\"code-block\",\"data-lang\":\"javascript\",\"children\":[\"$\",\"code\",null,{\"children\":\"import { RelayClient } from 'agent-relay';\\n\\nconst client = new RelayClient({ name: 'MyApp' });\\nawait client.connect();\\n\\n// Spawn a worker agent\\nawait client.spawn({\\n name: 'Worker',\\n cli: 'claude',\\n task: 'Wait for instructions'\\n});\\n\\n// Send it a message\\nawait client.send('Worker', 'Hello from my app');\"}]}],[\"$\",\"p\",\"22\",{\"dangerouslySetInnerHTML\":{\"__html\":\"Check out our \u003ca href=\\\"https://docs.agent-relay.com/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003edocs\u003c/a\u003e for more info.\"}}],[\"$\",\"h2\",\"23\",{\"children\":\"What's Next\"}],[\"$\",\"p\",\"24\",{\"dangerouslySetInnerHTML\":{\"__html\":\"We're super excited for what's to come. \u003ca href=\\\"https://agent-relay.com/\\\" target=\\\"_blank\\\" rel=\\\"noopener noreferrer\\\"\u003eAgent Relay Cloud\u003c/a\u003e allows you, via GitHub login, to link your repository to your own private workspace server. Using your Claude, Codex, Gemini, or Cursor login, you can spawn agents and have them work 24/7 against your repo using the dashboard.\"}}],[\"$\",\"p\",\"25\",{\"dangerouslySetInnerHTML\":{\"__html\":\"You and your teammates who have access to the repository can interact with agents, giving instructions in different topic-based channels to help organize agent work. You can have agents review pull requests, work on documentation—all with authenticated access to your GitHub repo.\"}}],[\"$\",\"p\",\"26\",{\"dangerouslySetInnerHTML\":{\"__html\":\"This is just the beginning. GitHub is the first context we've unlocked. This will be extended to other integrations like Notion, Slack, Outlook, etc., so agents can operate 24/7 and accelerate your workflows.\"}}]]}]]}],[\"$\",\"hr\",null,{\"style\":{\"border\":\"none\",\"borderTop\":\"1px solid var(--border-subtle)\",\"margin\":\"48px 0\"}}],[\"$\",\"h2\",null,{\"children\":\"Stay Updated\"}],[\"$\",\"p\",null,{\"children\":[\"Follow us on \",[\"$\",\"a\",null,{\"href\":\"https://twitter.com/agent_relay\",\"target\":\"_blank\",\"rel\":\"noopener noreferrer\",\"children\":\"Twitter\"}],\" for the latest updates and more content.\"]}]]}]}]]}],[\"$\",\"footer\",null,{\"className\":\"footer\",\"children\":[[\"$\",\"div\",null,{\"className\":\"footer-inner\",\"children\":[[\"$\",\"div\",null,{\"className\":\"footer-brand\",\"children\":[[\"$\",\"a\",null,{\"href\":\"/\",\"className\":\"footer-logo\",\"children\":[[\"$\",\"svg\",null,{\"width\":24,\"height\":24,\"viewBox\":\"0 0 100 100\",\"fill\":\"none\",\"xmlns\":\"http://www.w3.org/2000/svg\",\"className\":\"\\n transition-all duration-300\\n drop-shadow-[0_0_8px_rgba(0,217,255,0.3)]\\n \\n \",\"aria-label\":\"Agent Relay Logo\",\"role\":\"img\",\"children\":[[\"$\",\"path\",null,{\"d\":\"M30 80 L 50 20 L 70 80\",\"stroke\":\"#00d9ff\",\"strokeWidth\":\"5\",\"strokeLinejoin\":\"round\",\"strokeLinecap\":\"round\",\"fill\":\"none\"}],[\"$\",\"line\",null,{\"x1\":\"40\",\"y1\":\"50\",\"x2\":\"60\",\"y2\":\"50\",\"stroke\":\"#00d9ff\",\"strokeWidth\":\"5\",\"strokeLinecap\":\"round\"}],[\"$\",\"path\",null,{\"d\":\"M50 20 L 50 80\",\"stroke\":\"#00ffc8\",\"strokeWidth\":\"2.5\",\"strokeLinecap\":\"round\",\"opacity\":\"0.7\"}],[\"$\",\"path\",null,{\"d\":\"M50 20 C 80 20 80 50 50 50 L 80 80\",\"stroke\":\"#00ffc8\",\"strokeWidth\":\"2.5\",\"strokeLinecap\":\"round\",\"strokeLinejoin\":\"round\",\"fill\":\"none\",\"opacity\":\"0.7\"}]]}],[\"$\",\"span\",null,{\"className\":\"logo-text\",\"children\":\"Agent Relay\"}]]}],[\"$\",\"p\",null,{\"children\":\"Orchestrate AI agents like a symphony.\"}]]}],[\"$\",\"div\",null,{\"className\":\"footer-links\",\"children\":[[\"$\",\"div\",null,{\"className\":\"footer-column\",\"children\":[[\"$\",\"h4\",null,{\"children\":\"Product\"}],[\"$\",\"a\",null,{\"href\":\"/#features\",\"children\":\"Features\"}],[\"$\",\"a\",null,{\"href\":\"/pricing\",\"children\":\"Pricing\"}],[\"$\",\"a\",null,{\"href\":\"https://docs.agent-relay.com/\",\"children\":\"Documentation\"}],[\"$\",\"a\",null,{\"href\":\"/changelog\",\"children\":\"Changelog\"}]]}],[\"$\",\"div\",null,{\"className\":\"footer-column\",\"children\":[[\"$\",\"h4\",null,{\"children\":\"Company\"}],[\"$\",\"a\",null,{\"href\":\"/about\",\"children\":\"About\"}],[\"$\",\"a\",null,{\"href\":\"/blog\",\"children\":\"Blog\"}],[\"$\",\"a\",null,{\"href\":\"/careers\",\"children\":\"Careers\"}],[\"$\",\"a\",null,{\"href\":\"/contact\",\"children\":\"Contact\"}]]}],[\"$\",\"div\",null,{\"className\":\"footer-column\",\"children\":[[\"$\",\"h4\",null,{\"children\":\"Legal\"}],[\"$\",\"a\",null,{\"href\":\"/privacy\",\"children\":\"Privacy\"}],[\"$\",\"a\",null,{\"href\":\"/terms\",\"children\":\"Terms\"}],[\"$\",\"a\",null,{\"href\":\"/security\",\"children\":\"Security\"}]]}]]}]]}],[\"$\",\"div\",null,{\"className\":\"footer-bottom\",\"children\":[[\"$\",\"p\",null,{\"children\":\"© 2026 Agent Relay. All rights reserved.\"}],[\"$\",\"div\",null,{\"className\":\"social-links\",\"children\":[[\"$\",\"a\",null,{\"href\":\"https://github.com/AgentWorkforce/relay\",\"aria-label\":\"GitHub\",\"children\":[\"$\",\"svg\",null,{\"width\":\"20\",\"height\":\"20\",\"viewBox\":\"0 0 24 24\",\"fill\":\"currentColor\",\"children\":[\"$\",\"path\",null,{\"d\":\"M12 0C5.37 0 0 5.37 0 12c0 5.31 3.435 9.795 8.205 11.385.6.105.825-.255.825-.57 0-.285-.015-1.23-.015-2.235-3.015.555-3.795-.735-4.035-1.41-.135-.345-.72-1.41-1.23-1.695-.42-.225-1.02-.78-.015-.795.945-.015 1.62.87 1.845 1.23 1.08 1.815 2.805 1.305 3.495.99.105-.78.42-1.305.765-1.605-2.67-.3-5.46-1.335-5.46-5.925 0-1.305.465-2.385 1.23-3.225-.12-.3-.54-1.53.12-3.18 0 0 1.005-.315 3.3 1.23.96-.27 1.98-.405 3-.405s2.04.135 3 .405c2.295-1.56 3.3-1.23 3.3-1.23.66 1.65.24 2.88.12 3.18.765.84 1.23 1.905 1.23 3.225 0 4.605-2.805 5.625-5.475 5.925.435.375.81 1.095.81 2.22 0 1.605-.015 2.895-.015 3.3 0 .315.225.69.825.57A12.02 12.02 0 0024 12c0-6.63-5.37-12-12-12z\"}]}]}],[\"$\",\"a\",null,{\"href\":\"https://twitter.com/agent_relay\",\"aria-label\":\"Twitter\",\"children\":[\"$\",\"svg\",null,{\"width\":\"20\",\"height\":\"20\",\"viewBox\":\"0 0 24 24\",\"fill\":\"currentColor\",\"children\":[\"$\",\"path\",null,{\"d\":\"M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z\"}]}]}]]}]]}]]}]]}],[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/7519fcf229687c83.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]]],null],null]},[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"blog\",\"children\",\"go-to-bed-wake-up-to-a-finished-product\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[null,[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\",\"blog\",\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":\"$undefined\",\"notFoundStyles\":\"$undefined\"}]],null]},[[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/ad96af0f7a47b705.css\",\"precedence\":\"next\",\"crossOrigin\":\"$undefined\"}]],[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"children\":[\"$\",\"$L5\",null,{\"parallelRouterKey\":\"children\",\"segmentPath\":[\"children\"],\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScripts\":\"$undefined\",\"template\":[\"$\",\"$L6\",null,{}],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"}],[\"$\",\"div\",null,{\"style\":{\"fontFamily\":\"system-ui,\\\"Segoe UI\\\",Roboto,Helvetica,Arial,sans-serif,\\\"Apple Color Emoji\\\",\\\"Segoe UI Emoji\\\"\",\"height\":\"100vh\",\"textAlign\":\"center\",\"display\":\"flex\",\"flexDirection\":\"column\",\"alignItems\":\"center\",\"justifyContent\":\"center\"},\"children\":[\"$\",\"div\",null,{\"children\":[[\"$\",\"style\",null,{\"dangerouslySetInnerHTML\":{\"__html\":\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\"}}],[\"$\",\"h1\",null,{\"className\":\"next-error-h1\",\"style\":{\"display\":\"inline-block\",\"margin\":\"0 20px 0 0\",\"padding\":\"0 23px 0 0\",\"fontSize\":24,\"fontWeight\":500,\"verticalAlign\":\"top\",\"lineHeight\":\"49px\"},\"children\":\"404\"}],[\"$\",\"div\",null,{\"style\":{\"display\":\"inline-block\"},\"children\":[\"$\",\"h2\",null,{\"style\":{\"fontSize\":14,\"fontWeight\":400,\"lineHeight\":\"49px\",\"margin\":0},\"children\":\"This page could not be found.\"}]}]]}]}]],\"notFoundStyles\":[]}]}]}]],null],null],\"couldBeIntercepted\":false,\"initialHead\":[null,\"$L7\"],\"globalErrorComponent\":\"$8\",\"missingSlots\":\"$W9\"}]\n"])</script><script>self.__next_f.push([1,"7:[[\"$\",\"meta\",\"0\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"}],[\"$\",\"meta\",\"1\",{\"charSet\":\"utf-8\"}],[\"$\",\"title\",\"2\",{\"children\":\"Go to Bed, Wake Up to a Finished Product | Agent Relay Blog\"}],[\"$\",\"meta\",\"3\",{\"name\":\"description\",\"content\":\"Agent-to-agent communication is weird, fascinating, and potentially revolutionary. Here's how I built a system where agents work autonomously while I sleep.\"}],[\"$\",\"meta\",\"4\",{\"property\":\"og:title\",\"content\":\"Go to Bed, Wake Up to a Finished Product\"}],[\"$\",\"meta\",\"5\",{\"property\":\"og:description\",\"content\":\"How agent-to-agent communication is changing autonomous development\"}],[\"$\",\"meta\",\"6\",{\"property\":\"og:url\",\"content\":\"https://agent-relay.com/blog/go-to-bed-wake-up-to-a-finished-product\"}],[\"$\",\"meta\",\"7\",{\"property\":\"og:site_name\",\"content\":\"Agent Relay\"}],[\"$\",\"meta\",\"8\",{\"property\":\"og:image\",\"content\":\"https://agent-relay.com/blog/go-to-bed-wake-up-to-a-finished-product.svg\"}],[\"$\",\"meta\",\"9\",{\"property\":\"og:image:width\",\"content\":\"1200\"}],[\"$\",\"meta\",\"10\",{\"property\":\"og:image:height\",\"content\":\"630\"}],[\"$\",\"meta\",\"11\",{\"property\":\"og:image:alt\",\"content\":\"Go to Bed, Wake Up to a Finished Product - Agent Relay\"}],[\"$\",\"meta\",\"12\",{\"property\":\"og:type\",\"content\":\"article\"}],[\"$\",\"meta\",\"13\",{\"property\":\"article:published_time\",\"content\":\"2026-02-01\"}],[\"$\",\"meta\",\"14\",{\"property\":\"article:author\",\"content\":\"Khaliq Gant\"}],[\"$\",\"meta\",\"15\",{\"name\":\"twitter:card\",\"content\":\"summary_large_image\"}],[\"$\",\"meta\",\"16\",{\"name\":\"twitter:title\",\"content\":\"Go to Bed, Wake Up to a Finished Product\"}],[\"$\",\"meta\",\"17\",{\"name\":\"twitter:description\",\"content\":\"How agent-to-agent communication is changing autonomous development\"}],[\"$\",\"meta\",\"18\",{\"name\":\"twitter:image\",\"content\":\"https://agent-relay.com/blog/go-to-bed-wake-up-to-a-finished-product.svg\"}],[\"$\",\"link\",\"19\",{\"rel\":\"apple-touch-icon\",\"href\":\"/apple-icon.png?9e7a840704165ca6\",\"type\":\"image/png\",\"sizes\":\"256x256\"}]]\n4:null\n"])</script></body></html>
|