relay-os 0.1.0
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/LICENSE +21 -0
- package/README.md +389 -0
- package/backend/hooks/relay-antigravity-stop.js +3 -0
- package/backend/hooks/relay-claude-stop.js +3 -0
- package/backend/hooks/relay-codex-stop.js +3 -0
- package/backend/hooks/relay-copilot-stop.js +3 -0
- package/backend/hooks/relay-cursor-stop.js +3 -0
- package/backend/hooks/relay-hook-lib.js +170 -0
- package/backend/lib/relayAuth.js +41 -0
- package/backend/lib/relayCompileIr.js +276 -0
- package/backend/lib/relayContext.js +519 -0
- package/backend/lib/relayDashboard.js +118 -0
- package/backend/lib/relayHooks.js +190 -0
- package/backend/lib/relayInstall.js +339 -0
- package/backend/lib/relayMeta.js +61 -0
- package/backend/lib/relayProjects.js +225 -0
- package/backend/lib/relayServe.js +120 -0
- package/backend/lib/relayStore.js +173 -0
- package/backend/lib/relayUi.js +68 -0
- package/backend/lib/timeline.js +101 -0
- package/backend/lib/vscdb.js +42 -0
- package/backend/lib/vscodeHistory.js +227 -0
- package/backend/lib/vscodeWorkspace.js +77 -0
- package/backend/mcp/server.js +228 -0
- package/backend/node_modules/.bin/mime +16 -0
- package/backend/node_modules/.bin/mime.cmd +17 -0
- package/backend/node_modules/.bin/mime.ps1 +28 -0
- package/backend/node_modules/.package-lock.json +846 -0
- package/backend/node_modules/accepts/HISTORY.md +243 -0
- package/backend/node_modules/accepts/LICENSE +23 -0
- package/backend/node_modules/accepts/README.md +140 -0
- package/backend/node_modules/accepts/index.js +238 -0
- package/backend/node_modules/accepts/package.json +47 -0
- package/backend/node_modules/array-flatten/LICENSE +21 -0
- package/backend/node_modules/array-flatten/README.md +43 -0
- package/backend/node_modules/array-flatten/array-flatten.js +64 -0
- package/backend/node_modules/array-flatten/package.json +39 -0
- package/backend/node_modules/body-parser/HISTORY.md +686 -0
- package/backend/node_modules/body-parser/LICENSE +23 -0
- package/backend/node_modules/body-parser/README.md +476 -0
- package/backend/node_modules/body-parser/index.js +156 -0
- package/backend/node_modules/body-parser/lib/read.js +205 -0
- package/backend/node_modules/body-parser/lib/types/json.js +243 -0
- package/backend/node_modules/body-parser/lib/types/raw.js +101 -0
- package/backend/node_modules/body-parser/lib/types/text.js +121 -0
- package/backend/node_modules/body-parser/lib/types/urlencoded.js +299 -0
- package/backend/node_modules/body-parser/package.json +55 -0
- package/backend/node_modules/bytes/History.md +97 -0
- package/backend/node_modules/bytes/LICENSE +23 -0
- package/backend/node_modules/bytes/Readme.md +152 -0
- package/backend/node_modules/bytes/index.js +170 -0
- package/backend/node_modules/bytes/package.json +42 -0
- package/backend/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
- package/backend/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
- package/backend/node_modules/call-bind-apply-helpers/.nycrc +9 -0
- package/backend/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
- package/backend/node_modules/call-bind-apply-helpers/LICENSE +21 -0
- package/backend/node_modules/call-bind-apply-helpers/README.md +62 -0
- package/backend/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
- package/backend/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
- package/backend/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
- package/backend/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
- package/backend/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
- package/backend/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
- package/backend/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
- package/backend/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
- package/backend/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
- package/backend/node_modules/call-bind-apply-helpers/index.js +15 -0
- package/backend/node_modules/call-bind-apply-helpers/package.json +85 -0
- package/backend/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
- package/backend/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
- package/backend/node_modules/call-bind-apply-helpers/test/index.js +63 -0
- package/backend/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
- package/backend/node_modules/call-bound/.eslintrc +13 -0
- package/backend/node_modules/call-bound/.github/FUNDING.yml +12 -0
- package/backend/node_modules/call-bound/.nycrc +9 -0
- package/backend/node_modules/call-bound/CHANGELOG.md +42 -0
- package/backend/node_modules/call-bound/LICENSE +21 -0
- package/backend/node_modules/call-bound/README.md +53 -0
- package/backend/node_modules/call-bound/index.d.ts +94 -0
- package/backend/node_modules/call-bound/index.js +19 -0
- package/backend/node_modules/call-bound/package.json +99 -0
- package/backend/node_modules/call-bound/test/index.js +61 -0
- package/backend/node_modules/call-bound/tsconfig.json +10 -0
- package/backend/node_modules/content-disposition/HISTORY.md +60 -0
- package/backend/node_modules/content-disposition/LICENSE +22 -0
- package/backend/node_modules/content-disposition/README.md +142 -0
- package/backend/node_modules/content-disposition/index.js +458 -0
- package/backend/node_modules/content-disposition/package.json +44 -0
- package/backend/node_modules/content-type/HISTORY.md +29 -0
- package/backend/node_modules/content-type/LICENSE +22 -0
- package/backend/node_modules/content-type/README.md +94 -0
- package/backend/node_modules/content-type/index.js +225 -0
- package/backend/node_modules/content-type/package.json +42 -0
- package/backend/node_modules/cookie/LICENSE +24 -0
- package/backend/node_modules/cookie/README.md +317 -0
- package/backend/node_modules/cookie/SECURITY.md +25 -0
- package/backend/node_modules/cookie/index.js +335 -0
- package/backend/node_modules/cookie/package.json +44 -0
- package/backend/node_modules/cookie-signature/History.md +42 -0
- package/backend/node_modules/cookie-signature/Readme.md +42 -0
- package/backend/node_modules/cookie-signature/index.js +51 -0
- package/backend/node_modules/cookie-signature/package.json +18 -0
- package/backend/node_modules/cors/LICENSE +22 -0
- package/backend/node_modules/cors/README.md +277 -0
- package/backend/node_modules/cors/lib/index.js +238 -0
- package/backend/node_modules/cors/package.json +42 -0
- package/backend/node_modules/debug/.coveralls.yml +1 -0
- package/backend/node_modules/debug/.eslintrc +11 -0
- package/backend/node_modules/debug/.travis.yml +14 -0
- package/backend/node_modules/debug/CHANGELOG.md +362 -0
- package/backend/node_modules/debug/LICENSE +19 -0
- package/backend/node_modules/debug/Makefile +50 -0
- package/backend/node_modules/debug/README.md +312 -0
- package/backend/node_modules/debug/component.json +19 -0
- package/backend/node_modules/debug/karma.conf.js +70 -0
- package/backend/node_modules/debug/node.js +1 -0
- package/backend/node_modules/debug/package.json +49 -0
- package/backend/node_modules/debug/src/browser.js +185 -0
- package/backend/node_modules/debug/src/debug.js +202 -0
- package/backend/node_modules/debug/src/index.js +10 -0
- package/backend/node_modules/debug/src/inspector-log.js +15 -0
- package/backend/node_modules/debug/src/node.js +248 -0
- package/backend/node_modules/depd/History.md +103 -0
- package/backend/node_modules/depd/LICENSE +22 -0
- package/backend/node_modules/depd/Readme.md +280 -0
- package/backend/node_modules/depd/index.js +538 -0
- package/backend/node_modules/depd/lib/browser/index.js +77 -0
- package/backend/node_modules/depd/package.json +45 -0
- package/backend/node_modules/destroy/LICENSE +23 -0
- package/backend/node_modules/destroy/README.md +63 -0
- package/backend/node_modules/destroy/index.js +209 -0
- package/backend/node_modules/destroy/package.json +48 -0
- package/backend/node_modules/dunder-proto/.eslintrc +5 -0
- package/backend/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
- package/backend/node_modules/dunder-proto/.nycrc +13 -0
- package/backend/node_modules/dunder-proto/CHANGELOG.md +24 -0
- package/backend/node_modules/dunder-proto/LICENSE +21 -0
- package/backend/node_modules/dunder-proto/README.md +54 -0
- package/backend/node_modules/dunder-proto/get.d.ts +5 -0
- package/backend/node_modules/dunder-proto/get.js +30 -0
- package/backend/node_modules/dunder-proto/package.json +76 -0
- package/backend/node_modules/dunder-proto/set.d.ts +5 -0
- package/backend/node_modules/dunder-proto/set.js +35 -0
- package/backend/node_modules/dunder-proto/test/get.js +34 -0
- package/backend/node_modules/dunder-proto/test/index.js +4 -0
- package/backend/node_modules/dunder-proto/test/set.js +50 -0
- package/backend/node_modules/dunder-proto/tsconfig.json +9 -0
- package/backend/node_modules/ee-first/LICENSE +22 -0
- package/backend/node_modules/ee-first/README.md +80 -0
- package/backend/node_modules/ee-first/index.js +95 -0
- package/backend/node_modules/ee-first/package.json +29 -0
- package/backend/node_modules/encodeurl/LICENSE +22 -0
- package/backend/node_modules/encodeurl/README.md +109 -0
- package/backend/node_modules/encodeurl/index.js +60 -0
- package/backend/node_modules/encodeurl/package.json +40 -0
- package/backend/node_modules/es-define-property/.eslintrc +13 -0
- package/backend/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- package/backend/node_modules/es-define-property/.nycrc +9 -0
- package/backend/node_modules/es-define-property/CHANGELOG.md +29 -0
- package/backend/node_modules/es-define-property/LICENSE +21 -0
- package/backend/node_modules/es-define-property/README.md +49 -0
- package/backend/node_modules/es-define-property/index.d.ts +3 -0
- package/backend/node_modules/es-define-property/index.js +14 -0
- package/backend/node_modules/es-define-property/package.json +81 -0
- package/backend/node_modules/es-define-property/test/index.js +56 -0
- package/backend/node_modules/es-define-property/tsconfig.json +10 -0
- package/backend/node_modules/es-errors/.eslintrc +5 -0
- package/backend/node_modules/es-errors/.github/FUNDING.yml +12 -0
- package/backend/node_modules/es-errors/CHANGELOG.md +40 -0
- package/backend/node_modules/es-errors/LICENSE +21 -0
- package/backend/node_modules/es-errors/README.md +55 -0
- package/backend/node_modules/es-errors/eval.d.ts +3 -0
- package/backend/node_modules/es-errors/eval.js +4 -0
- package/backend/node_modules/es-errors/index.d.ts +3 -0
- package/backend/node_modules/es-errors/index.js +4 -0
- package/backend/node_modules/es-errors/package.json +80 -0
- package/backend/node_modules/es-errors/range.d.ts +3 -0
- package/backend/node_modules/es-errors/range.js +4 -0
- package/backend/node_modules/es-errors/ref.d.ts +3 -0
- package/backend/node_modules/es-errors/ref.js +4 -0
- package/backend/node_modules/es-errors/syntax.d.ts +3 -0
- package/backend/node_modules/es-errors/syntax.js +4 -0
- package/backend/node_modules/es-errors/test/index.js +19 -0
- package/backend/node_modules/es-errors/tsconfig.json +49 -0
- package/backend/node_modules/es-errors/type.d.ts +3 -0
- package/backend/node_modules/es-errors/type.js +4 -0
- package/backend/node_modules/es-errors/uri.d.ts +3 -0
- package/backend/node_modules/es-errors/uri.js +4 -0
- package/backend/node_modules/es-object-atoms/.eslintrc +16 -0
- package/backend/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
- package/backend/node_modules/es-object-atoms/CHANGELOG.md +44 -0
- package/backend/node_modules/es-object-atoms/LICENSE +21 -0
- package/backend/node_modules/es-object-atoms/README.md +63 -0
- package/backend/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
- package/backend/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
- package/backend/node_modules/es-object-atoms/ToObject.d.ts +7 -0
- package/backend/node_modules/es-object-atoms/ToObject.js +10 -0
- package/backend/node_modules/es-object-atoms/index.d.ts +3 -0
- package/backend/node_modules/es-object-atoms/index.js +4 -0
- package/backend/node_modules/es-object-atoms/isObject.d.ts +3 -0
- package/backend/node_modules/es-object-atoms/isObject.js +6 -0
- package/backend/node_modules/es-object-atoms/package.json +79 -0
- package/backend/node_modules/es-object-atoms/test/index.js +38 -0
- package/backend/node_modules/es-object-atoms/tsconfig.json +7 -0
- package/backend/node_modules/escape-html/LICENSE +24 -0
- package/backend/node_modules/escape-html/Readme.md +43 -0
- package/backend/node_modules/escape-html/index.js +78 -0
- package/backend/node_modules/escape-html/package.json +24 -0
- package/backend/node_modules/etag/HISTORY.md +83 -0
- package/backend/node_modules/etag/LICENSE +22 -0
- package/backend/node_modules/etag/README.md +159 -0
- package/backend/node_modules/etag/index.js +131 -0
- package/backend/node_modules/etag/package.json +47 -0
- package/backend/node_modules/express/History.md +3676 -0
- package/backend/node_modules/express/LICENSE +24 -0
- package/backend/node_modules/express/Readme.md +260 -0
- package/backend/node_modules/express/index.js +11 -0
- package/backend/node_modules/express/lib/application.js +661 -0
- package/backend/node_modules/express/lib/express.js +116 -0
- package/backend/node_modules/express/lib/middleware/init.js +43 -0
- package/backend/node_modules/express/lib/middleware/query.js +47 -0
- package/backend/node_modules/express/lib/request.js +525 -0
- package/backend/node_modules/express/lib/response.js +1179 -0
- package/backend/node_modules/express/lib/router/index.js +673 -0
- package/backend/node_modules/express/lib/router/layer.js +181 -0
- package/backend/node_modules/express/lib/router/route.js +230 -0
- package/backend/node_modules/express/lib/utils.js +304 -0
- package/backend/node_modules/express/lib/view.js +182 -0
- package/backend/node_modules/express/package.json +102 -0
- package/backend/node_modules/finalhandler/HISTORY.md +216 -0
- package/backend/node_modules/finalhandler/LICENSE +22 -0
- package/backend/node_modules/finalhandler/README.md +147 -0
- package/backend/node_modules/finalhandler/SECURITY.md +25 -0
- package/backend/node_modules/finalhandler/index.js +341 -0
- package/backend/node_modules/finalhandler/package.json +47 -0
- package/backend/node_modules/forwarded/HISTORY.md +21 -0
- package/backend/node_modules/forwarded/LICENSE +22 -0
- package/backend/node_modules/forwarded/README.md +57 -0
- package/backend/node_modules/forwarded/index.js +90 -0
- package/backend/node_modules/forwarded/package.json +45 -0
- package/backend/node_modules/fresh/HISTORY.md +70 -0
- package/backend/node_modules/fresh/LICENSE +23 -0
- package/backend/node_modules/fresh/README.md +119 -0
- package/backend/node_modules/fresh/index.js +137 -0
- package/backend/node_modules/fresh/package.json +46 -0
- package/backend/node_modules/function-bind/.eslintrc +21 -0
- package/backend/node_modules/function-bind/.github/FUNDING.yml +12 -0
- package/backend/node_modules/function-bind/.github/SECURITY.md +3 -0
- package/backend/node_modules/function-bind/.nycrc +13 -0
- package/backend/node_modules/function-bind/CHANGELOG.md +136 -0
- package/backend/node_modules/function-bind/LICENSE +20 -0
- package/backend/node_modules/function-bind/README.md +46 -0
- package/backend/node_modules/function-bind/implementation.js +84 -0
- package/backend/node_modules/function-bind/index.js +5 -0
- package/backend/node_modules/function-bind/package.json +87 -0
- package/backend/node_modules/function-bind/test/.eslintrc +9 -0
- package/backend/node_modules/function-bind/test/index.js +252 -0
- package/backend/node_modules/get-intrinsic/.eslintrc +42 -0
- package/backend/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/backend/node_modules/get-intrinsic/.nycrc +9 -0
- package/backend/node_modules/get-intrinsic/CHANGELOG.md +186 -0
- package/backend/node_modules/get-intrinsic/LICENSE +21 -0
- package/backend/node_modules/get-intrinsic/README.md +71 -0
- package/backend/node_modules/get-intrinsic/index.js +378 -0
- package/backend/node_modules/get-intrinsic/package.json +97 -0
- package/backend/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/backend/node_modules/get-proto/.eslintrc +10 -0
- package/backend/node_modules/get-proto/.github/FUNDING.yml +12 -0
- package/backend/node_modules/get-proto/.nycrc +9 -0
- package/backend/node_modules/get-proto/CHANGELOG.md +21 -0
- package/backend/node_modules/get-proto/LICENSE +21 -0
- package/backend/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
- package/backend/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
- package/backend/node_modules/get-proto/README.md +50 -0
- package/backend/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
- package/backend/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
- package/backend/node_modules/get-proto/index.d.ts +5 -0
- package/backend/node_modules/get-proto/index.js +27 -0
- package/backend/node_modules/get-proto/package.json +81 -0
- package/backend/node_modules/get-proto/test/index.js +68 -0
- package/backend/node_modules/get-proto/tsconfig.json +9 -0
- package/backend/node_modules/gopd/.eslintrc +16 -0
- package/backend/node_modules/gopd/.github/FUNDING.yml +12 -0
- package/backend/node_modules/gopd/CHANGELOG.md +45 -0
- package/backend/node_modules/gopd/LICENSE +21 -0
- package/backend/node_modules/gopd/README.md +40 -0
- package/backend/node_modules/gopd/gOPD.d.ts +1 -0
- package/backend/node_modules/gopd/gOPD.js +4 -0
- package/backend/node_modules/gopd/index.d.ts +5 -0
- package/backend/node_modules/gopd/index.js +15 -0
- package/backend/node_modules/gopd/package.json +77 -0
- package/backend/node_modules/gopd/test/index.js +36 -0
- package/backend/node_modules/gopd/tsconfig.json +9 -0
- package/backend/node_modules/has-symbols/.eslintrc +11 -0
- package/backend/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/backend/node_modules/has-symbols/.nycrc +9 -0
- package/backend/node_modules/has-symbols/CHANGELOG.md +91 -0
- package/backend/node_modules/has-symbols/LICENSE +21 -0
- package/backend/node_modules/has-symbols/README.md +46 -0
- package/backend/node_modules/has-symbols/index.d.ts +3 -0
- package/backend/node_modules/has-symbols/index.js +14 -0
- package/backend/node_modules/has-symbols/package.json +111 -0
- package/backend/node_modules/has-symbols/shams.d.ts +3 -0
- package/backend/node_modules/has-symbols/shams.js +45 -0
- package/backend/node_modules/has-symbols/test/index.js +22 -0
- package/backend/node_modules/has-symbols/test/shams/core-js.js +29 -0
- package/backend/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
- package/backend/node_modules/has-symbols/test/tests.js +58 -0
- package/backend/node_modules/has-symbols/tsconfig.json +10 -0
- package/backend/node_modules/hasown/.github/FUNDING.yml +12 -0
- package/backend/node_modules/hasown/.nycrc +13 -0
- package/backend/node_modules/hasown/CHANGELOG.md +58 -0
- package/backend/node_modules/hasown/LICENSE +21 -0
- package/backend/node_modules/hasown/README.md +40 -0
- package/backend/node_modules/hasown/eslint.config.mjs +6 -0
- package/backend/node_modules/hasown/index.d.ts +3 -0
- package/backend/node_modules/hasown/index.js +8 -0
- package/backend/node_modules/hasown/package.json +91 -0
- package/backend/node_modules/hasown/tsconfig.json +6 -0
- package/backend/node_modules/http-errors/HISTORY.md +186 -0
- package/backend/node_modules/http-errors/LICENSE +23 -0
- package/backend/node_modules/http-errors/README.md +169 -0
- package/backend/node_modules/http-errors/index.js +290 -0
- package/backend/node_modules/http-errors/package.json +54 -0
- package/backend/node_modules/iconv-lite/Changelog.md +162 -0
- package/backend/node_modules/iconv-lite/LICENSE +21 -0
- package/backend/node_modules/iconv-lite/README.md +156 -0
- package/backend/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
- package/backend/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
- package/backend/node_modules/iconv-lite/encodings/index.js +22 -0
- package/backend/node_modules/iconv-lite/encodings/internal.js +188 -0
- package/backend/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
- package/backend/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
- package/backend/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
- package/backend/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
- package/backend/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
- package/backend/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
- package/backend/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
- package/backend/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
- package/backend/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
- package/backend/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
- package/backend/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
- package/backend/node_modules/iconv-lite/encodings/utf16.js +177 -0
- package/backend/node_modules/iconv-lite/encodings/utf7.js +290 -0
- package/backend/node_modules/iconv-lite/lib/bom-handling.js +52 -0
- package/backend/node_modules/iconv-lite/lib/extend-node.js +217 -0
- package/backend/node_modules/iconv-lite/lib/index.d.ts +24 -0
- package/backend/node_modules/iconv-lite/lib/index.js +153 -0
- package/backend/node_modules/iconv-lite/lib/streams.js +121 -0
- package/backend/node_modules/iconv-lite/package.json +46 -0
- package/backend/node_modules/inherits/LICENSE +16 -0
- package/backend/node_modules/inherits/README.md +42 -0
- package/backend/node_modules/inherits/inherits.js +9 -0
- package/backend/node_modules/inherits/inherits_browser.js +27 -0
- package/backend/node_modules/inherits/package.json +29 -0
- package/backend/node_modules/ipaddr.js/LICENSE +19 -0
- package/backend/node_modules/ipaddr.js/README.md +233 -0
- package/backend/node_modules/ipaddr.js/ipaddr.min.js +1 -0
- package/backend/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
- package/backend/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
- package/backend/node_modules/ipaddr.js/package.json +35 -0
- package/backend/node_modules/math-intrinsics/.eslintrc +16 -0
- package/backend/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
- package/backend/node_modules/math-intrinsics/CHANGELOG.md +24 -0
- package/backend/node_modules/math-intrinsics/LICENSE +21 -0
- package/backend/node_modules/math-intrinsics/README.md +50 -0
- package/backend/node_modules/math-intrinsics/abs.d.ts +1 -0
- package/backend/node_modules/math-intrinsics/abs.js +4 -0
- package/backend/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
- package/backend/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
- package/backend/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
- package/backend/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
- package/backend/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
- package/backend/node_modules/math-intrinsics/constants/maxValue.js +5 -0
- package/backend/node_modules/math-intrinsics/floor.d.ts +1 -0
- package/backend/node_modules/math-intrinsics/floor.js +4 -0
- package/backend/node_modules/math-intrinsics/isFinite.d.ts +3 -0
- package/backend/node_modules/math-intrinsics/isFinite.js +12 -0
- package/backend/node_modules/math-intrinsics/isInteger.d.ts +3 -0
- package/backend/node_modules/math-intrinsics/isInteger.js +16 -0
- package/backend/node_modules/math-intrinsics/isNaN.d.ts +1 -0
- package/backend/node_modules/math-intrinsics/isNaN.js +6 -0
- package/backend/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
- package/backend/node_modules/math-intrinsics/isNegativeZero.js +6 -0
- package/backend/node_modules/math-intrinsics/max.d.ts +1 -0
- package/backend/node_modules/math-intrinsics/max.js +4 -0
- package/backend/node_modules/math-intrinsics/min.d.ts +1 -0
- package/backend/node_modules/math-intrinsics/min.js +4 -0
- package/backend/node_modules/math-intrinsics/mod.d.ts +3 -0
- package/backend/node_modules/math-intrinsics/mod.js +9 -0
- package/backend/node_modules/math-intrinsics/package.json +86 -0
- package/backend/node_modules/math-intrinsics/pow.d.ts +1 -0
- package/backend/node_modules/math-intrinsics/pow.js +4 -0
- package/backend/node_modules/math-intrinsics/round.d.ts +1 -0
- package/backend/node_modules/math-intrinsics/round.js +4 -0
- package/backend/node_modules/math-intrinsics/sign.d.ts +3 -0
- package/backend/node_modules/math-intrinsics/sign.js +11 -0
- package/backend/node_modules/math-intrinsics/test/index.js +192 -0
- package/backend/node_modules/math-intrinsics/tsconfig.json +3 -0
- package/backend/node_modules/media-typer/HISTORY.md +22 -0
- package/backend/node_modules/media-typer/LICENSE +22 -0
- package/backend/node_modules/media-typer/README.md +81 -0
- package/backend/node_modules/media-typer/index.js +270 -0
- package/backend/node_modules/media-typer/package.json +26 -0
- package/backend/node_modules/merge-descriptors/HISTORY.md +21 -0
- package/backend/node_modules/merge-descriptors/LICENSE +23 -0
- package/backend/node_modules/merge-descriptors/README.md +49 -0
- package/backend/node_modules/merge-descriptors/index.js +60 -0
- package/backend/node_modules/merge-descriptors/package.json +39 -0
- package/backend/node_modules/methods/HISTORY.md +29 -0
- package/backend/node_modules/methods/LICENSE +24 -0
- package/backend/node_modules/methods/README.md +51 -0
- package/backend/node_modules/methods/index.js +69 -0
- package/backend/node_modules/methods/package.json +36 -0
- package/backend/node_modules/mime/CHANGELOG.md +164 -0
- package/backend/node_modules/mime/LICENSE +21 -0
- package/backend/node_modules/mime/README.md +90 -0
- package/backend/node_modules/mime/cli.js +8 -0
- package/backend/node_modules/mime/mime.js +108 -0
- package/backend/node_modules/mime/package.json +44 -0
- package/backend/node_modules/mime/src/build.js +53 -0
- package/backend/node_modules/mime/src/test.js +60 -0
- package/backend/node_modules/mime/types.json +1 -0
- package/backend/node_modules/mime-db/HISTORY.md +507 -0
- package/backend/node_modules/mime-db/LICENSE +23 -0
- package/backend/node_modules/mime-db/README.md +100 -0
- package/backend/node_modules/mime-db/db.json +8519 -0
- package/backend/node_modules/mime-db/index.js +12 -0
- package/backend/node_modules/mime-db/package.json +60 -0
- package/backend/node_modules/mime-types/HISTORY.md +397 -0
- package/backend/node_modules/mime-types/LICENSE +23 -0
- package/backend/node_modules/mime-types/README.md +113 -0
- package/backend/node_modules/mime-types/index.js +188 -0
- package/backend/node_modules/mime-types/package.json +44 -0
- package/backend/node_modules/ms/index.js +152 -0
- package/backend/node_modules/ms/license.md +21 -0
- package/backend/node_modules/ms/package.json +37 -0
- package/backend/node_modules/ms/readme.md +51 -0
- package/backend/node_modules/negotiator/HISTORY.md +108 -0
- package/backend/node_modules/negotiator/LICENSE +24 -0
- package/backend/node_modules/negotiator/README.md +203 -0
- package/backend/node_modules/negotiator/index.js +82 -0
- package/backend/node_modules/negotiator/lib/charset.js +169 -0
- package/backend/node_modules/negotiator/lib/encoding.js +184 -0
- package/backend/node_modules/negotiator/lib/language.js +179 -0
- package/backend/node_modules/negotiator/lib/mediaType.js +294 -0
- package/backend/node_modules/negotiator/package.json +42 -0
- package/backend/node_modules/object-assign/index.js +90 -0
- package/backend/node_modules/object-assign/license +21 -0
- package/backend/node_modules/object-assign/package.json +42 -0
- package/backend/node_modules/object-assign/readme.md +61 -0
- package/backend/node_modules/object-inspect/.eslintrc +53 -0
- package/backend/node_modules/object-inspect/.github/FUNDING.yml +12 -0
- package/backend/node_modules/object-inspect/.nycrc +13 -0
- package/backend/node_modules/object-inspect/CHANGELOG.md +424 -0
- package/backend/node_modules/object-inspect/LICENSE +21 -0
- package/backend/node_modules/object-inspect/example/all.js +23 -0
- package/backend/node_modules/object-inspect/example/circular.js +6 -0
- package/backend/node_modules/object-inspect/example/fn.js +5 -0
- package/backend/node_modules/object-inspect/example/inspect.js +10 -0
- package/backend/node_modules/object-inspect/index.js +544 -0
- package/backend/node_modules/object-inspect/package-support.json +20 -0
- package/backend/node_modules/object-inspect/package.json +105 -0
- package/backend/node_modules/object-inspect/readme.markdown +84 -0
- package/backend/node_modules/object-inspect/test/bigint.js +58 -0
- package/backend/node_modules/object-inspect/test/browser/dom.js +15 -0
- package/backend/node_modules/object-inspect/test/circular.js +16 -0
- package/backend/node_modules/object-inspect/test/deep.js +12 -0
- package/backend/node_modules/object-inspect/test/element.js +53 -0
- package/backend/node_modules/object-inspect/test/err.js +48 -0
- package/backend/node_modules/object-inspect/test/fakes.js +29 -0
- package/backend/node_modules/object-inspect/test/fn.js +76 -0
- package/backend/node_modules/object-inspect/test/global.js +17 -0
- package/backend/node_modules/object-inspect/test/has.js +15 -0
- package/backend/node_modules/object-inspect/test/holes.js +15 -0
- package/backend/node_modules/object-inspect/test/indent-option.js +271 -0
- package/backend/node_modules/object-inspect/test/inspect.js +139 -0
- package/backend/node_modules/object-inspect/test/lowbyte.js +12 -0
- package/backend/node_modules/object-inspect/test/number.js +58 -0
- package/backend/node_modules/object-inspect/test/quoteStyle.js +26 -0
- package/backend/node_modules/object-inspect/test/toStringTag.js +40 -0
- package/backend/node_modules/object-inspect/test/undef.js +12 -0
- package/backend/node_modules/object-inspect/test/values.js +261 -0
- package/backend/node_modules/object-inspect/test-core-js.js +26 -0
- package/backend/node_modules/object-inspect/util.inspect.js +1 -0
- package/backend/node_modules/on-finished/HISTORY.md +98 -0
- package/backend/node_modules/on-finished/LICENSE +23 -0
- package/backend/node_modules/on-finished/README.md +162 -0
- package/backend/node_modules/on-finished/index.js +234 -0
- package/backend/node_modules/on-finished/package.json +39 -0
- package/backend/node_modules/parseurl/HISTORY.md +58 -0
- package/backend/node_modules/parseurl/LICENSE +24 -0
- package/backend/node_modules/parseurl/README.md +133 -0
- package/backend/node_modules/parseurl/index.js +158 -0
- package/backend/node_modules/parseurl/package.json +40 -0
- package/backend/node_modules/path-to-regexp/LICENSE +21 -0
- package/backend/node_modules/path-to-regexp/Readme.md +35 -0
- package/backend/node_modules/path-to-regexp/index.js +158 -0
- package/backend/node_modules/path-to-regexp/package.json +30 -0
- package/backend/node_modules/proxy-addr/HISTORY.md +161 -0
- package/backend/node_modules/proxy-addr/LICENSE +22 -0
- package/backend/node_modules/proxy-addr/README.md +139 -0
- package/backend/node_modules/proxy-addr/index.js +327 -0
- package/backend/node_modules/proxy-addr/package.json +47 -0
- package/backend/node_modules/qs/.editorconfig +46 -0
- package/backend/node_modules/qs/.github/FUNDING.yml +12 -0
- package/backend/node_modules/qs/.github/SECURITY.md +11 -0
- package/backend/node_modules/qs/.github/THREAT_MODEL.md +78 -0
- package/backend/node_modules/qs/.nycrc +13 -0
- package/backend/node_modules/qs/CHANGELOG.md +822 -0
- package/backend/node_modules/qs/LICENSE.md +29 -0
- package/backend/node_modules/qs/README.md +758 -0
- package/backend/node_modules/qs/dist/qs.js +141 -0
- package/backend/node_modules/qs/eslint.config.mjs +57 -0
- package/backend/node_modules/qs/lib/formats.js +23 -0
- package/backend/node_modules/qs/lib/index.js +11 -0
- package/backend/node_modules/qs/lib/parse.js +403 -0
- package/backend/node_modules/qs/lib/stringify.js +363 -0
- package/backend/node_modules/qs/lib/utils.js +342 -0
- package/backend/node_modules/qs/package.json +94 -0
- package/backend/node_modules/qs/test/empty-keys-cases.js +267 -0
- package/backend/node_modules/qs/test/parse.js +1703 -0
- package/backend/node_modules/qs/test/stringify.js +1448 -0
- package/backend/node_modules/qs/test/utils.js +432 -0
- package/backend/node_modules/range-parser/HISTORY.md +56 -0
- package/backend/node_modules/range-parser/LICENSE +23 -0
- package/backend/node_modules/range-parser/README.md +84 -0
- package/backend/node_modules/range-parser/index.js +162 -0
- package/backend/node_modules/range-parser/package.json +44 -0
- package/backend/node_modules/raw-body/LICENSE +22 -0
- package/backend/node_modules/raw-body/README.md +223 -0
- package/backend/node_modules/raw-body/index.d.ts +87 -0
- package/backend/node_modules/raw-body/index.js +336 -0
- package/backend/node_modules/raw-body/package.json +47 -0
- package/backend/node_modules/safe-buffer/LICENSE +21 -0
- package/backend/node_modules/safe-buffer/README.md +584 -0
- package/backend/node_modules/safe-buffer/index.d.ts +187 -0
- package/backend/node_modules/safe-buffer/index.js +65 -0
- package/backend/node_modules/safe-buffer/package.json +51 -0
- package/backend/node_modules/safer-buffer/LICENSE +21 -0
- package/backend/node_modules/safer-buffer/Porting-Buffer.md +268 -0
- package/backend/node_modules/safer-buffer/Readme.md +156 -0
- package/backend/node_modules/safer-buffer/dangerous.js +58 -0
- package/backend/node_modules/safer-buffer/package.json +34 -0
- package/backend/node_modules/safer-buffer/safer.js +77 -0
- package/backend/node_modules/safer-buffer/tests.js +406 -0
- package/backend/node_modules/send/HISTORY.md +538 -0
- package/backend/node_modules/send/LICENSE +23 -0
- package/backend/node_modules/send/README.md +327 -0
- package/backend/node_modules/send/SECURITY.md +24 -0
- package/backend/node_modules/send/index.js +1142 -0
- package/backend/node_modules/send/node_modules/ms/index.js +162 -0
- package/backend/node_modules/send/node_modules/ms/license.md +21 -0
- package/backend/node_modules/send/node_modules/ms/package.json +38 -0
- package/backend/node_modules/send/node_modules/ms/readme.md +59 -0
- package/backend/node_modules/send/package.json +62 -0
- package/backend/node_modules/serve-static/HISTORY.md +493 -0
- package/backend/node_modules/serve-static/LICENSE +25 -0
- package/backend/node_modules/serve-static/README.md +257 -0
- package/backend/node_modules/serve-static/index.js +209 -0
- package/backend/node_modules/serve-static/package.json +42 -0
- package/backend/node_modules/setprototypeof/LICENSE +13 -0
- package/backend/node_modules/setprototypeof/README.md +31 -0
- package/backend/node_modules/setprototypeof/index.d.ts +2 -0
- package/backend/node_modules/setprototypeof/index.js +17 -0
- package/backend/node_modules/setprototypeof/package.json +38 -0
- package/backend/node_modules/setprototypeof/test/index.js +24 -0
- package/backend/node_modules/side-channel/.editorconfig +9 -0
- package/backend/node_modules/side-channel/.eslintrc +12 -0
- package/backend/node_modules/side-channel/.github/FUNDING.yml +12 -0
- package/backend/node_modules/side-channel/.nycrc +13 -0
- package/backend/node_modules/side-channel/CHANGELOG.md +120 -0
- package/backend/node_modules/side-channel/LICENSE +21 -0
- package/backend/node_modules/side-channel/README.md +61 -0
- package/backend/node_modules/side-channel/index.d.ts +14 -0
- package/backend/node_modules/side-channel/index.js +46 -0
- package/backend/node_modules/side-channel/package.json +85 -0
- package/backend/node_modules/side-channel/test/index.js +120 -0
- package/backend/node_modules/side-channel/tsconfig.json +9 -0
- package/backend/node_modules/side-channel-list/.editorconfig +9 -0
- package/backend/node_modules/side-channel-list/.eslintrc +11 -0
- package/backend/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
- package/backend/node_modules/side-channel-list/.nycrc +13 -0
- package/backend/node_modules/side-channel-list/CHANGELOG.md +36 -0
- package/backend/node_modules/side-channel-list/LICENSE +21 -0
- package/backend/node_modules/side-channel-list/README.md +62 -0
- package/backend/node_modules/side-channel-list/index.d.ts +13 -0
- package/backend/node_modules/side-channel-list/index.js +111 -0
- package/backend/node_modules/side-channel-list/list.d.ts +14 -0
- package/backend/node_modules/side-channel-list/package.json +77 -0
- package/backend/node_modules/side-channel-list/test/index.js +154 -0
- package/backend/node_modules/side-channel-list/tsconfig.json +9 -0
- package/backend/node_modules/side-channel-map/.editorconfig +9 -0
- package/backend/node_modules/side-channel-map/.eslintrc +11 -0
- package/backend/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
- package/backend/node_modules/side-channel-map/.nycrc +13 -0
- package/backend/node_modules/side-channel-map/CHANGELOG.md +22 -0
- package/backend/node_modules/side-channel-map/LICENSE +21 -0
- package/backend/node_modules/side-channel-map/README.md +62 -0
- package/backend/node_modules/side-channel-map/index.d.ts +15 -0
- package/backend/node_modules/side-channel-map/index.js +68 -0
- package/backend/node_modules/side-channel-map/package.json +80 -0
- package/backend/node_modules/side-channel-map/test/index.js +114 -0
- package/backend/node_modules/side-channel-map/tsconfig.json +9 -0
- package/backend/node_modules/side-channel-weakmap/.editorconfig +9 -0
- package/backend/node_modules/side-channel-weakmap/.eslintrc +12 -0
- package/backend/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
- package/backend/node_modules/side-channel-weakmap/.nycrc +13 -0
- package/backend/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
- package/backend/node_modules/side-channel-weakmap/LICENSE +21 -0
- package/backend/node_modules/side-channel-weakmap/README.md +62 -0
- package/backend/node_modules/side-channel-weakmap/index.d.ts +15 -0
- package/backend/node_modules/side-channel-weakmap/index.js +84 -0
- package/backend/node_modules/side-channel-weakmap/package.json +87 -0
- package/backend/node_modules/side-channel-weakmap/test/index.js +114 -0
- package/backend/node_modules/side-channel-weakmap/tsconfig.json +9 -0
- package/backend/node_modules/statuses/HISTORY.md +87 -0
- package/backend/node_modules/statuses/LICENSE +23 -0
- package/backend/node_modules/statuses/README.md +139 -0
- package/backend/node_modules/statuses/codes.json +65 -0
- package/backend/node_modules/statuses/index.js +146 -0
- package/backend/node_modules/statuses/package.json +49 -0
- package/backend/node_modules/toidentifier/HISTORY.md +9 -0
- package/backend/node_modules/toidentifier/LICENSE +21 -0
- package/backend/node_modules/toidentifier/README.md +61 -0
- package/backend/node_modules/toidentifier/index.js +32 -0
- package/backend/node_modules/toidentifier/package.json +38 -0
- package/backend/node_modules/type-is/HISTORY.md +259 -0
- package/backend/node_modules/type-is/LICENSE +23 -0
- package/backend/node_modules/type-is/README.md +170 -0
- package/backend/node_modules/type-is/index.js +266 -0
- package/backend/node_modules/type-is/package.json +45 -0
- package/backend/node_modules/unpipe/HISTORY.md +4 -0
- package/backend/node_modules/unpipe/LICENSE +22 -0
- package/backend/node_modules/unpipe/README.md +43 -0
- package/backend/node_modules/unpipe/index.js +69 -0
- package/backend/node_modules/unpipe/package.json +27 -0
- package/backend/node_modules/utils-merge/LICENSE +20 -0
- package/backend/node_modules/utils-merge/README.md +34 -0
- package/backend/node_modules/utils-merge/index.js +23 -0
- package/backend/node_modules/utils-merge/package.json +40 -0
- package/backend/node_modules/vary/HISTORY.md +39 -0
- package/backend/node_modules/vary/LICENSE +22 -0
- package/backend/node_modules/vary/README.md +101 -0
- package/backend/node_modules/vary/index.js +149 -0
- package/backend/node_modules/vary/package.json +43 -0
- package/backend/package-lock.json +854 -0
- package/backend/package.json +14 -0
- package/backend/parsers/antigravity.js +206 -0
- package/backend/parsers/claude.js +92 -0
- package/backend/parsers/codex.js +86 -0
- package/backend/parsers/copilot.js +379 -0
- package/backend/parsers/copilotEditingSessions.js +118 -0
- package/backend/parsers/cursor.js +215 -0
- package/backend/relay.js +835 -0
- package/backend/scripts/relay-context.js +9 -0
- package/backend/server.js +314 -0
- package/bin/relay.js +312 -0
- package/docs/QUICKSTART.md +94 -0
- package/mission-control/AGENTS.md +5 -0
- package/mission-control/CLAUDE.md +1 -0
- package/mission-control/README.md +20 -0
- package/mission-control/eslint.config.mjs +18 -0
- package/mission-control/next.config.ts +7 -0
- package/mission-control/package-lock.json +6695 -0
- package/mission-control/package.json +26 -0
- package/mission-control/page.css +1793 -0
- package/mission-control/page.html +1 -0
- package/mission-control/postcss.config.mjs +7 -0
- package/mission-control/public/file.svg +1 -0
- package/mission-control/public/globe.svg +1 -0
- package/mission-control/public/logos/1f733bb7-c1b3-4292-a7f7-71aafa2addaa.jpeg +0 -0
- package/mission-control/public/logos/Claude.png +0 -0
- package/mission-control/public/logos/Codex.png +0 -0
- package/mission-control/public/logos/Gemini_Generated_Image_7qmndr7qmndr7qmn.png +0 -0
- package/mission-control/public/logos/antigravity.png +0 -0
- package/mission-control/public/logos/cursor.png +0 -0
- package/mission-control/public/logos/github-copilot.png +0 -0
- package/mission-control/public/logos/logo.avif +0 -0
- package/mission-control/public/logos/logo.jpg +0 -0
- package/mission-control/public/logos/logo.png +0 -0
- package/mission-control/public/next.svg +1 -0
- package/mission-control/public/vercel.svg +1 -0
- package/mission-control/public/window.svg +1 -0
- package/mission-control/src/app/api/fs/route.ts +49 -0
- package/mission-control/src/app/globals.css +102 -0
- package/mission-control/src/app/layout.tsx +31 -0
- package/mission-control/src/app/onboarding/page.module.css +133 -0
- package/mission-control/src/app/onboarding/page.tsx +98 -0
- package/mission-control/src/app/page.module.css +51 -0
- package/mission-control/src/app/page.tsx +40 -0
- package/mission-control/src/components/ActivityTimeline.module.css +282 -0
- package/mission-control/src/components/ActivityTimeline.tsx +262 -0
- package/mission-control/src/components/AgentSessionChat.module.css +220 -0
- package/mission-control/src/components/AgentSessionChat.tsx +276 -0
- package/mission-control/src/components/CollaboratorsPanel.module.css +119 -0
- package/mission-control/src/components/CollaboratorsPanel.tsx +123 -0
- package/mission-control/src/components/ContextMemory.module.css +79 -0
- package/mission-control/src/components/ContextMemory.tsx +66 -0
- package/mission-control/src/components/DirectoryPicker.tsx +194 -0
- package/mission-control/src/components/GlobalHeader.module.css +165 -0
- package/mission-control/src/components/GlobalHeader.tsx +82 -0
- package/mission-control/src/components/ProjectDashboard.module.css +268 -0
- package/mission-control/src/components/ProjectDashboard.tsx +174 -0
- package/mission-control/src/components/RelayBrainPanel.module.css +85 -0
- package/mission-control/src/components/RelayBrainPanel.tsx +74 -0
- package/mission-control/src/components/Sidebar.module.css +201 -0
- package/mission-control/src/components/Sidebar.tsx +136 -0
- package/mission-control/src/components/TaskQueue.module.css +92 -0
- package/mission-control/src/components/TaskQueue.tsx +51 -0
- package/mission-control/src/components/WorkspaceRail.module.css +188 -0
- package/mission-control/src/components/WorkspaceRail.tsx +56 -0
- package/mission-control/src/lib/RelayContext.tsx +314 -0
- package/mission-control/src/lib/relay.ts +280 -0
- package/mission-control/src/lib/workspaces.ts +53 -0
- package/mission-control/tsconfig.json +34 -0
- package/package.json +48 -0
- package/scripts/postinstall.js +19 -0
- package/skills/relay-sync/SKILL.md +32 -0
- package/skills/relay-sync/agent-install.md +17 -0
|
@@ -0,0 +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/app/layout.css?v=1781453185608" data-precedence="next_static/css/app/layout.css"/><link rel="stylesheet" href="/_next/static/css/app/page.css?v=1781453185608" data-precedence="next_static/css/app/page.css"/><link rel="preload" as="script" fetchPriority="low" href="/_next/static/chunks/webpack.js?v=1781453185608"/><script src="/_next/static/chunks/main-app.js?v=1781453185608" async=""></script><script src="/_next/static/chunks/app-pages-internals.js" async=""></script><script src="/_next/static/chunks/app/layout.js" async=""></script><script src="/_next/static/chunks/app/page.js" async=""></script><title>/.relay - Shared Memory</title><meta name="description" content="Shared Memory for AI Teams"/><link rel="icon" href="/logos/logo.png"/><script src="/_next/static/chunks/polyfills.js" noModule=""></script></head><body class="__variable_f367f3 __variable_3c557b"><div hidden=""><!--$--><!--/$--></div><div class="page_appWrapper__ixmRj"><nav class="WorkspaceRail_rail__7vAJJ "><div class="WorkspaceRail_topSection__4__OY"><div class="WorkspaceRail_itemWrapper__1uXMd" title="Expand"><div class="WorkspaceRail_actionIcon__SeSDf">☰</div></div><div class="WorkspaceRail_itemWrapper__1uXMd"><div class="WorkspaceRail_addWorkspace__YpvsM">+</div></div></div></nav><div class="page_layout__mbNju"><header class="GlobalHeader_header__6Nhx4"><div class="GlobalHeader_left__l81hZ"><div class="GlobalHeader_logo__dWvxe"><img src="/logos/logo.png" alt="" style="height:36px;object-fit:contain"/>/.relay</div><div style="position:relative"><div class="GlobalHeader_projectDropdown__LvSl0">No workspace<span class="GlobalHeader_arrow__WveSF">▼</span></div></div></div><div class="GlobalHeader_right__dbbkd"><div class="GlobalHeader_stats__G4II1"><span>Events: <strong class="mono">0</strong></span><span>Agents: <strong class="mono">0</strong> connected</span></div><button type="button" class="GlobalHeader_syncBtn__02GDD" disabled="">Sync</button><div class="GlobalHeader_statusPill__PhBxR"><span class="GlobalHeader_statusDot__LeGV0"></span>Relay offline</div></div></header><main class="page_mainArea__jNVoP"><aside class="Sidebar_sidebar__v6daX"><div class="Sidebar_sectionTitle__v71N0">AGENT INTEGRATIONS</div><div style="padding:0 16px 12px;font-size:11px;color:var(--text-muted);line-height:1.5">Select or add a workspace to connect your agents.</div><div class="Sidebar_integrationsList__Mz7R6"><div style="display:flex;flex-direction:column;gap:4px"><button class="Sidebar_initBtn__KkrCw" disabled="" style="opacity:0.55"><img src="/logos/Claude.png" alt="Claude" class="Sidebar_btnLogo__uEOD9"/><span style="flex:1">Claude</span><span style="font-size:10px;font-weight:700;color:var(--text-muted)">Connect</span></button></div><div style="display:flex;flex-direction:column;gap:4px"><button class="Sidebar_initBtn__KkrCw" disabled="" style="opacity:0.55"><img src="/logos/Codex.png" alt="Codex" class="Sidebar_btnLogo__uEOD9"/><span style="flex:1">Codex</span><span style="font-size:10px;font-weight:700;color:var(--text-muted)">Connect</span></button></div><div style="display:flex;flex-direction:column;gap:4px"><button class="Sidebar_initBtn__KkrCw" disabled="" style="opacity:0.55"><img src="/logos/github-copilot.png" alt="Copilot" class="Sidebar_btnLogo__uEOD9"/><span style="flex:1">Copilot</span><span style="font-size:10px;font-weight:700;color:var(--text-muted)">Connect</span></button></div><div style="display:flex;flex-direction:column;gap:4px"><button class="Sidebar_initBtn__KkrCw" disabled="" style="opacity:0.55"><img src="/logos/cursor.png" alt="Cursor" class="Sidebar_btnLogo__uEOD9"/><span style="flex:1">Cursor</span><span style="font-size:10px;font-weight:700;color:var(--text-muted)">Connect</span></button></div><div style="display:flex;flex-direction:column;gap:4px"><button class="Sidebar_initBtn__KkrCw" disabled="" style="opacity:0.55"><img src="/logos/antigravity.png" alt="Antigravity" class="Sidebar_btnLogo__uEOD9"/><span style="flex:1">Antigravity</span><span style="font-size:10px;font-weight:700;color:var(--text-muted)">Connect</span></button></div></div><div class="Sidebar_spacerSmall__mF0_K"></div><div class="Sidebar_sectionTitle__v71N0">RECENT AGENT ACTIVITY</div><div class="Sidebar_proposalsList__WgVAD custom-scrollbar" style="overflow-y:auto"><div style="padding:0 16px;font-size:11px;color:var(--text-muted)">—</div></div><div class="Sidebar_spacer__jN5qO"></div></aside><div class="page_chatArea__X_m3M"><div class="ProjectDashboard_root__ptEWN"><div class="ProjectDashboard_toolbar__icZTP"><div class="ProjectDashboard_tabs__9fnVA"><button type="button" class="ProjectDashboard_tab__T4_TD ProjectDashboard_tabActive__7_Skg">Activity</button><button type="button" class="ProjectDashboard_tab__T4_TD ">Agent chat</button><button type="button" class="ProjectDashboard_tab__T4_TD ">All IR files</button><button type="button" class="ProjectDashboard_tab__T4_TD ">Code edits</button><button type="button" class="ProjectDashboard_tab__T4_TD ">Settings</button></div><button type="button" class="ProjectDashboard_syncBtn__uFIvg" disabled="">Sync</button></div><div class="ProjectDashboard_body__7TWFU"><div class="ProjectDashboard_empty__1H524">Select or add a workspace to view project memory.</div></div></div></div><div class="page_controlRoomArea__U2Upi custom-scrollbar"><div class="glass-panel RelayBrainPanel_panel__qi_ma"><div class="section-title">RELAY BRAIN</div><p class="RelayBrainPanel_hint__hhb4A">Add a workspace to view handoff, tasks, and decisions.</p></div><div class="glass-panel CollaboratorsPanel_panel__r3Mh5"><div class="section-title">COLLABORATORS </div><div class="CollaboratorsPanel_avatarRow__2LfiL"><div class="CollaboratorsPanel_avatarChip__HJgeA" title="Unnath"><span class="CollaboratorsPanel_avatar__NGw76" style="background:#a78bfa">U</span><span class="CollaboratorsPanel_avatarName__ew_BR">Unnath</span><button type="button" class="CollaboratorsPanel_removeBtn__QA06p" aria-label="Remove Unnath">×</button></div><div class="CollaboratorsPanel_avatarChip__HJgeA" title="Prakrititz"><span class="CollaboratorsPanel_avatar__NGw76" style="background:#a78bfa">P</span><span class="CollaboratorsPanel_avatarName__ew_BR">Prakrititz</span><button type="button" class="CollaboratorsPanel_removeBtn__QA06p" aria-label="Remove Prakrititz">×</button></div><div class="CollaboratorsPanel_avatarChip__HJgeA" title="Krishna"><span class="CollaboratorsPanel_avatar__NGw76" style="background:#5eead4">K</span><span class="CollaboratorsPanel_avatarName__ew_BR">Krishna</span><button type="button" class="CollaboratorsPanel_removeBtn__QA06p" aria-label="Remove Krishna">×</button></div><div class="CollaboratorsPanel_avatarChip__HJgeA" title="Gathik"><span class="CollaboratorsPanel_avatar__NGw76" style="background:#fca5a5">G</span><span class="CollaboratorsPanel_avatarName__ew_BR">Gathik</span><button type="button" class="CollaboratorsPanel_removeBtn__QA06p" aria-label="Remove Gathik">×</button></div><div class="CollaboratorsPanel_avatarChip__HJgeA" title="Hemanth"><span class="CollaboratorsPanel_avatar__NGw76" style="background:#5eead4">H</span><span class="CollaboratorsPanel_avatarName__ew_BR">Hemanth</span><button type="button" class="CollaboratorsPanel_removeBtn__QA06p" aria-label="Remove Hemanth">×</button></div><button type="button" class="CollaboratorsPanel_addChip__pb9cs" aria-label="Add collaborator" title="Add collaborator">+</button></div></div><div class="page_stackPanel__oXX82"><div class="glass-panel ContextMemory_panel__FaYj6" style="padding:16px"><div class="section-title">ARTIFACTS <span class="ContextMemory_count__YpPRB">[<!-- -->0<!-- -->]</span></div><div class="ContextMemory_treeContainer__t2_cx custom-scrollbar"><div style="font-size:12px;color:var(--text-muted);line-height:1.6">No artifacts yet. Antigravity and other agents emit these when connected.</div></div></div></div><div class="page_stackPanel__oXX82"><div class="glass-panel TaskQueue_panel__data9" style="padding:16px"><div class="section-title">AGENT TASKS <span class="TaskQueue_count__6rJ5_">[<!-- -->0<!-- -->]</span></div><div class="TaskQueue_queueContainer__Z7t88 custom-scrollbar"><div style="font-size:12px;color:var(--text-muted);line-height:1.6">No background tasks reported by connected agents.</div></div></div></div></div></main></div></div><!--$--><!--/$--><script id="_R_">self.__next_r="ywQM0qYJMjknSJ_f0ZsIE"</script><script src="/_next/static/chunks/webpack.js?v=1781453185608" async=""></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,"8:I[\"(app-pages-browser)/./node_modules/next/dist/next-devtools/userspace/app/segment-explorer-node.js\",[\"app-pages-internals\",\"static/chunks/app-pages-internals.js\"],\"SegmentViewNode\"]\na:\"$Sreact.fragment\"\n1b:I[\"(app-pages-browser)/./src/lib/RelayContext.tsx\",[\"app/layout\",\"static/chunks/app/layout.js\"],\"RelayProvider\"]\n1d:I[\"(app-pages-browser)/./node_modules/next/dist/client/components/layout-router.js\",[\"app-pages-internals\",\"static/chunks/app-pages-internals.js\"],\"\"]\n1f:I[\"(app-pages-browser)/./node_modules/next/dist/client/components/render-from-template-context.js\",[\"app-pages-internals\",\"static/chunks/app-pages-internals.js\"],\"\"]\n3a:I[\"(app-pages-browser)/./src/components/WorkspaceRail.tsx\",[\"app/page\",\"static/chunks/app/page.js\"],\"default\"]\n3d:I[\"(app-pages-browser)/./src/components/GlobalHeader.tsx\",[\"app/page\",\"static/chunks/app/page.js\"],\"default\"]\n40:I[\"(app-pages-browser)/./src/components/Sidebar.tsx\",[\"app/page\",\"static/chunks/app/page.js\"],\"default\"]\n43:I[\"(app-pages-browser)/./src/components/ProjectDashboard.tsx\",[\"app/page\",\"static/chunks/app/page.js\"],\"default\"]\n46:I[\"(app-pages-browser)/./src/components/RelayBrainPanel.tsx\",[\"app/page\",\"static/chunks/app/page.js\"],\"default\"]\n48:I[\"(app-pages-browser)/./src/components/CollaboratorsPanel.tsx\",[\"app/page\",\"static/chunks/app/page.js\"],\"default\"]\n4b:I[\"(app-pages-browser)/./src/components/ContextMemory.tsx\",[\"app/page\",\"static/chunks/app/page.js\"],\"default\"]\n4e:I[\"(app-pages-browser)/./src/components/TaskQueue.tsx\",[\"app/page\",\"static/chunks/app/page.js\"],\"default\"]\n55:I[\"(app-pages-browser)/./node_modules/next/dist/lib/framework/boundary-components.js\",[\"app-pages-internals\",\"static/chunks/app-pages-internals.js\"],\"OutletBoundary\"]\n57:\"$Sreact.suspense\"\n64:I[\"(app-pages-browser)/./node_modules/next/dist/lib/framework/boundary-components.js\",[\"app-pages-internals\",\"static/chunks/app-pages-internals.js\"],\"ViewportBoundary\"]\n6e:I[\"(app-pages-browser)/./node_modules/next/dist/lib/framework/boundary-components.js\",[\"app-pages-internals\",\"static/chunks/app-pages-internals.js\"],\"MetadataBoundary\"]\n74:I[\"(app-pages-browser)/./node_modules/next/dist/client/components/builtin/global-error.js\",[\"app-pages-internals\",\"static/chunks/app-pages-internals.js\"],\"default\",1]\n7f:I[\"(app-pages-browser)/./node_modules/next/dist/lib/metadata/generate/icon-mark.js\",[\"app-pages-internals\",\"static/chunks/app-pages-internals.js\"],\"IconMark\"]\n:HL[\"/_next/static/css/app/layout.css?v=1781453185608\",\"style\"]\n:HL[\"/_next/static/css/app/page.css?v=1781453185608\",\"style\"]\n1:D\"$5\"\n1:D\"$2\"\n1:D\"$6\"\n1:null\nc:D\"$16\"\nc:D\"$d\"\nc:D\"$18\"\n21:D\"$23\"\n21:D\"$22\"\n21:D\"$25\"\n21:D\"$24\"\n21:D\"$26\"\n21:[[\"$\",\"title\",null,{\"children\":\"404: This page could not be found.\"},\"$24\",\"$27\",1],[\"$\",\"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)}}\"}},\"$24\",\"$2a\",1],[\"$\",\"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},\"$24\",\"$2b\",1],[\"$\",\"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.\"},\"$24\",\"$2d\",1]},\"$24\",\"$2c\",1]]},\"$24\",\"$29\",1]},\"$24\",\"$28\",1]]\nc:[\"$\",\"html\",null,{\"lang\":\"en\",\"children\":[\"$\",\"body\",null,{\"className\":\"__variable_f367f3 __variable_3c557b\",\"children\":[\"$\",\"$L1b\",null,{\"children\":[\"$\",\"$L1d\",null,{\"parallelRouterKey\":\"children\",\"error\":\"$undefined\",\"errorStyles\":\"$undefined\",\"errorScrip"])</script><script>self.__next_f.push([1,"ts\":\"$undefined\",\"template\":[\"$\",\"$L1f\",null,{},null,\"$1e\",1],\"templateStyles\":\"$undefined\",\"templateScripts\":\"$undefined\",\"notFound\":[\"$\",\"$L8\",\"c-not-found\",{\"type\":\"not-found\",\"pagePath\":\"__next_builtin__not-found.js\",\"children\":[\"$21\",[]]},null,\"$20\",0],\"forbidden\":\"$undefined\",\"unauthorized\":\"$undefined\",\"segmentViewBoundaries\":[[\"$\",\"$L8\",null,{\"type\":\"boundary:not-found\",\"pagePath\":\"__next_builtin__not-found.js@boundary\"},null,\"$2e\",1],\"$undefined\",\"$undefined\",[\"$\",\"$L8\",null,{\"type\":\"boundary:global-error\",\"pagePath\":\"__next_builtin__global-error.js\"},null,\"$2f\",1]]},null,\"$1c\",1]},\"$d\",\"$1a\",1]},\"$d\",\"$19\",1]},\"$d\",\"$17\",1]\n32:D\"$36\"\n32:D\"$33\"\n32:D\"$38\"\n32:[\"$\",\"div\",null,{\"className\":\"page_appWrapper__ixmRj\",\"children\":[[\"$\",\"$L3a\",null,{},\"$33\",\"$39\",1],[\"$\",\"div\",null,{\"className\":\"page_layout__mbNju\",\"children\":[[\"$\",\"$L3d\",null,{},\"$33\",\"$3c\",1],[\"$\",\"main\",null,{\"className\":\"page_mainArea__jNVoP\",\"children\":[[\"$\",\"$L40\",null,{},\"$33\",\"$3f\",1],[\"$\",\"div\",null,{\"className\":\"page_chatArea__X_m3M\",\"children\":[\"$\",\"$L43\",null,{},\"$33\",\"$42\",1]},\"$33\",\"$41\",1],[\"$\",\"div\",null,{\"className\":\"page_controlRoomArea__U2Upi custom-scrollbar\",\"children\":[[\"$\",\"$L46\",null,{},\"$33\",\"$45\",1],[\"$\",\"$L48\",null,{},\"$33\",\"$47\",1],[\"$\",\"div\",null,{\"className\":\"page_stackPanel__oXX82\",\"children\":[\"$\",\"$L4b\",null,{},\"$33\",\"$4a\",1]},\"$33\",\"$49\",1],[\"$\",\"div\",null,{\"className\":\"page_stackPanel__oXX82\",\"children\":[\"$\",\"$L4e\",null,{},\"$33\",\"$4d\",1]},\"$33\",\"$4c\",1]]},\"$33\",\"$44\",1]]},\"$33\",\"$3e\",1]]},\"$33\",\"$3b\",1]]},\"$33\",\"$37\",1]\n50:D\"$52\"\n50:D\"$51\"\n50:D\"$54\"\n50:[\"$\",\"$L55\",null,{\"children\":[\"$\",\"$57\",null,{\"name\":\"Next.MetadataOutlet\",\"children\":\"$@58\"},\"$51\",\"$56\",1]},\"$51\",\"$53\",1]\n5a:D\"$5d\"\n5a:D\"$5b\"\n5a:D\"$5e\"\n5a:null\n5f:D\"$61\"\n5f:D\"$60\"\n5f:D\"$63\"\n65:D\"$67\"\n65:D\"$66\"\n5f:[\"$\",\"$L64\",null,{\"children\":\"$L65\"},\"$60\",\"$62\",1]\n68:D\"$6a\"\n68:D\"$69\"\n68:D\"$6c\"\n70:D\"$72\"\n70:D\"$71\"\n68:[\"$\",\"div\",null,{\"hidden\":true,\"children\":[\"$\",\"$L6e\",null,{\"children\":[\"$\",\"$57\",null,{\"name\":\"Next.Metadata\",\"children\":\"$L70\"},\"$69\",\"$6f\",1]},\"$69\",\"$6d\",1]},\"$69\",\"$6b\",1]\n73:[]\n0:{\"P\":\"$1\",\"c\":[\"\",\"\"],\"q\":\"\",\"i\":true,\"f\":[[[\"\",{\"children\":[\"__PAGE__\",{}]},\"$undefined\",\"$undefined\",16],[[\"$\",\"$L8\",\"layout\",{\"type\":\"layout\",\"pagePath\":\"layout.tsx\",\"children\":[\"$\",\"$a\",\"c\",{\"children\":[[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/app/layout.css?v=1781453185608\",\"precedence\":\"next_static/css/app/layout.css\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"},null,\"$b\",0]],\"$c\"]},null,\"$9\",1]},null,\"$7\",0],{\"children\":[[\"$\",\"$a\",\"c\",{\"children\":[[\"$\",\"$L8\",\"c-page\",{\"type\":\"page\",\"pagePath\":\"page.tsx\",\"children\":\"$32\"},null,\"$31\",1],[[\"$\",\"link\",\"0\",{\"rel\":\"stylesheet\",\"href\":\"/_next/static/css/app/page.css?v=1781453185608\",\"precedence\":\"next_static/css/app/page.css\",\"crossOrigin\":\"$undefined\",\"nonce\":\"$undefined\"},null,\"$4f\",0]],\"$50\"]},null,\"$30\",0],{},null,false,null]},null,false,null],[\"$\",\"$a\",\"h\",{\"children\":[\"$5a\",\"$5f\",\"$68\",null]},null,\"$59\",0],false]],\"m\":\"$W73\",\"G\":[\"$74\",[\"$\",\"$L8\",\"ge-svn\",{\"type\":\"global-error\",\"pagePath\":\"__next_builtin__global-error.js\",\"children\":[]},null,\"$75\",0]],\"S\":false,\"h\":null,\"s\":\"$undefined\",\"l\":\"$undefined\",\"p\":\"$undefined\",\"d\":\"$undefined\",\"b\":\"development\"}\n65:D\"$76\"\n65:[[\"$\",\"meta\",\"0\",{\"charSet\":\"utf-8\"},\"$51\",\"$77\",0],[\"$\",\"meta\",\"1\",{\"name\":\"viewport\",\"content\":\"width=device-width, initial-scale=1\"},\"$51\",\"$78\",0]]\n58:D\"$79\"\n58:null\n70:D\"$7a\"\n70:[[\"$\",\"title\",\"0\",{\"children\":\"/.relay - Shared Memory\"},\"$51\",\"$7b\",0],[\"$\",\"meta\",\"1\",{\"name\":\"description\",\"content\":\"Shared Memory for AI Teams\"},\"$51\",\"$7c\",0],[\"$\",\"link\",\"2\",{\"rel\":\"icon\",\"href\":\"/logos/logo.png\"},\"$51\",\"$7d\",0],[\"$\",\"$L7f\",\"3\",{},\"$51\",\"$7e\",0]]\n"])</script></body></html>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.27 14.1a6.5 6.5 0 0 0 3.67-3.45q-1.24.21-2.7.34-.31 1.83-.97 3.1M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.48-1.52a7 7 0 0 1-.96 0H7.5a4 4 0 0 1-.84-1.32q-.38-.89-.63-2.08a40 40 0 0 0 3.92 0q-.25 1.2-.63 2.08a4 4 0 0 1-.84 1.31zm2.94-4.76q1.66-.15 2.95-.43a7 7 0 0 0 0-2.58q-1.3-.27-2.95-.43a18 18 0 0 1 0 3.44m-1.27-3.54a17 17 0 0 1 0 3.64 39 39 0 0 1-4.3 0 17 17 0 0 1 0-3.64 39 39 0 0 1 4.3 0m1.1-1.17q1.45.13 2.69.34a6.5 6.5 0 0 0-3.67-3.44q.65 1.26.98 3.1M8.48 1.5l.01.02q.41.37.84 1.31.38.89.63 2.08a40 40 0 0 0-3.92 0q.25-1.2.63-2.08a4 4 0 0 1 .85-1.32 7 7 0 0 1 .96 0m-2.75.4a6.5 6.5 0 0 0-3.67 3.44 29 29 0 0 1 2.7-.34q.31-1.83.97-3.1M4.58 6.28q-1.66.16-2.95.43a7 7 0 0 0 0 2.58q1.3.27 2.95.43a18 18 0 0 1 0-3.44m.17 4.71q-1.45-.12-2.69-.34a6.5 6.5 0 0 0 3.67 3.44q-.65-1.27-.98-3.1" fill="#666"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 394 80"><path fill="#000" d="M262 0h68.5v12.7h-27.2v66.6h-13.6V12.7H262V0ZM149 0v12.7H94v20.4h44.3v12.6H94v21h55v12.6H80.5V0h68.7zm34.3 0h-17.8l63.8 79.4h17.9l-32-39.7 32-39.6h-17.9l-23 28.6-23-28.6zm18.3 56.7-9-11-27.1 33.7h17.8l18.3-22.7z"/><path fill="#000" d="M81 79.3 17 0H0v79.3h13.6V17l50.2 62.3H81Zm252.6-.4c-1 0-1.8-.4-2.5-1s-1.1-1.6-1.1-2.6.3-1.8 1-2.5 1.6-1 2.6-1 1.8.3 2.5 1a3.4 3.4 0 0 1 .6 4.3 3.7 3.7 0 0 1-3 1.8zm23.2-33.5h6v23.3c0 2.1-.4 4-1.3 5.5a9.1 9.1 0 0 1-3.8 3.5c-1.6.8-3.5 1.3-5.7 1.3-2 0-3.7-.4-5.3-1s-2.8-1.8-3.7-3.2c-.9-1.3-1.4-3-1.4-5h6c.1.8.3 1.6.7 2.2s1 1.2 1.6 1.5c.7.4 1.5.5 2.4.5 1 0 1.8-.2 2.4-.6a4 4 0 0 0 1.6-1.8c.3-.8.5-1.8.5-3V45.5zm30.9 9.1a4.4 4.4 0 0 0-2-3.3 7.5 7.5 0 0 0-4.3-1.1c-1.3 0-2.4.2-3.3.5-.9.4-1.6 1-2 1.6a3.5 3.5 0 0 0-.3 4c.3.5.7.9 1.3 1.2l1.8 1 2 .5 3.2.8c1.3.3 2.5.7 3.7 1.2a13 13 0 0 1 3.2 1.8 8.1 8.1 0 0 1 3 6.5c0 2-.5 3.7-1.5 5.1a10 10 0 0 1-4.4 3.5c-1.8.8-4.1 1.2-6.8 1.2-2.6 0-4.9-.4-6.8-1.2-2-.8-3.4-2-4.5-3.5a10 10 0 0 1-1.7-5.6h6a5 5 0 0 0 3.5 4.6c1 .4 2.2.6 3.4.6 1.3 0 2.5-.2 3.5-.6 1-.4 1.8-1 2.4-1.7a4 4 0 0 0 .8-2.4c0-.9-.2-1.6-.7-2.2a11 11 0 0 0-2.1-1.4l-3.2-1-3.8-1c-2.8-.7-5-1.7-6.6-3.2a7.2 7.2 0 0 1-2.4-5.7 8 8 0 0 1 1.7-5 10 10 0 0 1 4.3-3.5c2-.8 4-1.2 6.4-1.2 2.3 0 4.4.4 6.2 1.2 1.8.8 3.2 2 4.3 3.4 1 1.4 1.5 3 1.5 5h-5.8z"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1155 1000"><path d="m577.3 0 577.4 1000H0z" fill="#fff"/></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 2.5h13v10a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1zM0 1h16v11.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12.5zm3.75 4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M7 4.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" fill="#666"/></svg>
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
// Server-side local directory browser for the "Add Workspace" flow.
|
|
2
|
+
|
|
3
|
+
import { NextResponse } from 'next/server';
|
|
4
|
+
import fs from 'fs';
|
|
5
|
+
import path from 'path';
|
|
6
|
+
|
|
7
|
+
interface Entry {
|
|
8
|
+
name: string;
|
|
9
|
+
path: string;
|
|
10
|
+
isDir: boolean;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
function listDrives(): Entry[] {
|
|
14
|
+
const drives: Entry[] = [];
|
|
15
|
+
for (let c = 65; c <= 90; c++) {
|
|
16
|
+
const root = `${String.fromCharCode(c)}:\\`;
|
|
17
|
+
try {
|
|
18
|
+
if (fs.existsSync(root)) drives.push({ name: root, path: root, isDir: true });
|
|
19
|
+
} catch {
|
|
20
|
+
/* drive not ready */
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
return drives;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export async function GET(request: Request) {
|
|
27
|
+
const dir = new URL(request.url).searchParams.get('path');
|
|
28
|
+
|
|
29
|
+
if (!dir) {
|
|
30
|
+
const entries = process.platform === 'win32' ? listDrives() : [{ name: '/', path: '/', isDir: true }];
|
|
31
|
+
return NextResponse.json({ path: null, parent: null, entries });
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
const resolved = path.resolve(dir);
|
|
35
|
+
try {
|
|
36
|
+
const dirents = await fs.promises.readdir(resolved, { withFileTypes: true });
|
|
37
|
+
const entries: Entry[] = dirents
|
|
38
|
+
.map((d) => ({ name: d.name, path: path.join(resolved, d.name), isDir: d.isDirectory() }))
|
|
39
|
+
.sort((a, b) => (a.isDir === b.isDir ? a.name.localeCompare(b.name) : a.isDir ? -1 : 1));
|
|
40
|
+
const parent = path.dirname(resolved);
|
|
41
|
+
return NextResponse.json({
|
|
42
|
+
path: resolved,
|
|
43
|
+
parent: parent === resolved ? null : parent,
|
|
44
|
+
entries,
|
|
45
|
+
});
|
|
46
|
+
} catch (err) {
|
|
47
|
+
return NextResponse.json({ error: (err as Error).message }, { status: 400 });
|
|
48
|
+
}
|
|
49
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
:root {
|
|
2
|
+
--color-idle: rgba(255, 255, 255, 0.24);
|
|
3
|
+
--color-active: #ffffff;
|
|
4
|
+
--color-success: rgba(255, 255, 255, 0.82);
|
|
5
|
+
--color-warning: rgba(255, 255, 255, 0.62);
|
|
6
|
+
--color-critical: rgba(255, 255, 255, 0.42);
|
|
7
|
+
--color-surface-1: #000000;
|
|
8
|
+
--color-surface-2: #000000;
|
|
9
|
+
--color-surface-3: rgba(255, 255, 255, 0.035);
|
|
10
|
+
--color-border: rgba(255, 255, 255, 0.1);
|
|
11
|
+
|
|
12
|
+
--text-primary: #ffffff;
|
|
13
|
+
--text-secondary: rgba(255, 255, 255, 0.55);
|
|
14
|
+
--text-muted: rgba(255, 255, 255, 0.34);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
* {
|
|
18
|
+
box-sizing: border-box;
|
|
19
|
+
padding: 0;
|
|
20
|
+
margin: 0;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
body {
|
|
24
|
+
background-color: var(--color-surface-1);
|
|
25
|
+
color: var(--text-primary);
|
|
26
|
+
font-family: var(--font-inter), -apple-system, BlinkMacSystemFont, sans-serif;
|
|
27
|
+
height: 100vh;
|
|
28
|
+
width: 100vw;
|
|
29
|
+
overflow: hidden;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.mono {
|
|
33
|
+
font-family: var(--font-mono), monospace;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.glass-panel {
|
|
37
|
+
background: rgba(255, 255, 255, 0.025);
|
|
38
|
+
backdrop-filter: blur(12px);
|
|
39
|
+
-webkit-backdrop-filter: blur(12px);
|
|
40
|
+
border: 1px solid var(--color-border);
|
|
41
|
+
border-radius: 2px;
|
|
42
|
+
display: flex;
|
|
43
|
+
flex-direction: column;
|
|
44
|
+
overflow: hidden;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
.section-title {
|
|
48
|
+
font-size: 10px;
|
|
49
|
+
text-transform: uppercase;
|
|
50
|
+
letter-spacing: 0.1em;
|
|
51
|
+
opacity: 0.5;
|
|
52
|
+
font-weight: 700;
|
|
53
|
+
margin-bottom: 12px;
|
|
54
|
+
display: flex;
|
|
55
|
+
align-items: center;
|
|
56
|
+
gap: 8px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
* {
|
|
60
|
+
scrollbar-width: thin;
|
|
61
|
+
scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
*::-webkit-scrollbar {
|
|
65
|
+
width: 5px;
|
|
66
|
+
height: 5px;
|
|
67
|
+
}
|
|
68
|
+
*::-webkit-scrollbar-track {
|
|
69
|
+
background: transparent;
|
|
70
|
+
}
|
|
71
|
+
*::-webkit-scrollbar-thumb {
|
|
72
|
+
background: rgba(255, 255, 255, 0.12);
|
|
73
|
+
border-radius: 3px;
|
|
74
|
+
}
|
|
75
|
+
*::-webkit-scrollbar-thumb:hover {
|
|
76
|
+
background: rgba(255, 255, 255, 0.22);
|
|
77
|
+
}
|
|
78
|
+
*::-webkit-scrollbar-corner {
|
|
79
|
+
background: transparent;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
@keyframes pulse-active {
|
|
83
|
+
0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3); }
|
|
84
|
+
70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
|
|
85
|
+
100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@keyframes pulse-warning {
|
|
89
|
+
0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.22); }
|
|
90
|
+
70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
|
|
91
|
+
100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
@keyframes pulse-critical {
|
|
95
|
+
0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.14); }
|
|
96
|
+
70% { box-shadow: 0 0 0 8px rgba(255, 255, 255, 0); }
|
|
97
|
+
100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
@keyframes progress-fill {
|
|
101
|
+
from { width: 0%; }
|
|
102
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { Metadata } from "next";
|
|
2
|
+
import { Inter, JetBrains_Mono } from "next/font/google";
|
|
3
|
+
import { RelayProvider } from "@/lib/RelayContext";
|
|
4
|
+
import "./globals.css";
|
|
5
|
+
|
|
6
|
+
const inter = Inter({ subsets: ["latin"], variable: '--font-inter' });
|
|
7
|
+
const jetbrainsMono = JetBrains_Mono({ subsets: ["latin"], variable: '--font-mono' });
|
|
8
|
+
|
|
9
|
+
export const metadata: Metadata = {
|
|
10
|
+
title: "/.relay - Shared Memory",
|
|
11
|
+
description: "Shared Memory for AI Teams",
|
|
12
|
+
icons: {
|
|
13
|
+
icon: "/logos/logo.png",
|
|
14
|
+
},
|
|
15
|
+
};
|
|
16
|
+
|
|
17
|
+
export default function RootLayout({
|
|
18
|
+
children,
|
|
19
|
+
}: Readonly<{
|
|
20
|
+
children: React.ReactNode;
|
|
21
|
+
}>) {
|
|
22
|
+
return (
|
|
23
|
+
<html lang="en">
|
|
24
|
+
<body className={`${inter.variable} ${jetbrainsMono.variable}`}>
|
|
25
|
+
<RelayProvider>
|
|
26
|
+
{children}
|
|
27
|
+
</RelayProvider>
|
|
28
|
+
</body>
|
|
29
|
+
</html>
|
|
30
|
+
);
|
|
31
|
+
}
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
.container {
|
|
2
|
+
display: flex;
|
|
3
|
+
align-items: center;
|
|
4
|
+
justify-content: center;
|
|
5
|
+
height: 100vh;
|
|
6
|
+
width: 100vw;
|
|
7
|
+
background-color: var(--color-surface-1);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.loadingText {
|
|
11
|
+
color: var(--text-secondary);
|
|
12
|
+
font-family: var(--font-mono);
|
|
13
|
+
font-size: 14px;
|
|
14
|
+
animation: pulse 1.5s infinite;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
@keyframes pulse {
|
|
18
|
+
0%, 100% { opacity: 0.5; }
|
|
19
|
+
50% { opacity: 1; }
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.card {
|
|
23
|
+
width: 600px;
|
|
24
|
+
max-height: 80vh;
|
|
25
|
+
padding: 40px;
|
|
26
|
+
background-color: var(--color-surface-2);
|
|
27
|
+
border: 1px solid var(--color-border);
|
|
28
|
+
border-radius: 2px;
|
|
29
|
+
display: flex;
|
|
30
|
+
flex-direction: column;
|
|
31
|
+
gap: 24px;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.title {
|
|
35
|
+
font-size: 24px;
|
|
36
|
+
font-weight: 800;
|
|
37
|
+
color: var(--text-primary);
|
|
38
|
+
margin: 0;
|
|
39
|
+
letter-spacing: 1px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.subtitle {
|
|
43
|
+
font-size: 13px;
|
|
44
|
+
color: var(--text-secondary);
|
|
45
|
+
margin: 0;
|
|
46
|
+
line-height: 1.5;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.repoList {
|
|
50
|
+
display: flex;
|
|
51
|
+
flex-direction: column;
|
|
52
|
+
gap: 12px;
|
|
53
|
+
overflow-y: auto;
|
|
54
|
+
flex-grow: 1;
|
|
55
|
+
padding-right: 8px;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.repoItem {
|
|
59
|
+
display: flex;
|
|
60
|
+
align-items: center;
|
|
61
|
+
justify-content: space-between;
|
|
62
|
+
padding: 16px;
|
|
63
|
+
background: var(--color-surface-3);
|
|
64
|
+
border: 1px solid var(--color-border);
|
|
65
|
+
border-radius: 8px;
|
|
66
|
+
transition: border-color 0.2s;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.repoItem:hover {
|
|
70
|
+
border-color: var(--color-active);
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.repoInfo {
|
|
74
|
+
display: flex;
|
|
75
|
+
flex-direction: column;
|
|
76
|
+
gap: 4px;
|
|
77
|
+
flex-grow: 1;
|
|
78
|
+
overflow: hidden;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.repoName {
|
|
82
|
+
font-weight: 700;
|
|
83
|
+
font-size: 14px;
|
|
84
|
+
color: var(--text-primary);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.repoDesc {
|
|
88
|
+
font-size: 12px;
|
|
89
|
+
color: var(--text-secondary);
|
|
90
|
+
white-space: nowrap;
|
|
91
|
+
overflow: hidden;
|
|
92
|
+
text-overflow: ellipsis;
|
|
93
|
+
max-width: 350px;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.addBtn {
|
|
97
|
+
background-color: transparent;
|
|
98
|
+
color: var(--color-success);
|
|
99
|
+
border: 1px solid var(--color-success);
|
|
100
|
+
border-radius: 6px;
|
|
101
|
+
padding: 8px 16px;
|
|
102
|
+
font-size: 12px;
|
|
103
|
+
font-weight: 600;
|
|
104
|
+
cursor: pointer;
|
|
105
|
+
transition: all 0.2s;
|
|
106
|
+
flex-shrink: 0;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.addBtn:hover {
|
|
110
|
+
background-color: rgba(255, 255, 255, 0.08);
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.skipBtn {
|
|
114
|
+
background: none;
|
|
115
|
+
border: none;
|
|
116
|
+
color: var(--text-muted);
|
|
117
|
+
font-size: 13px;
|
|
118
|
+
cursor: pointer;
|
|
119
|
+
align-self: center;
|
|
120
|
+
margin-top: 8px;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.skipBtn:hover {
|
|
124
|
+
color: var(--text-secondary);
|
|
125
|
+
text-decoration: underline;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.empty {
|
|
129
|
+
color: var(--text-muted);
|
|
130
|
+
text-align: center;
|
|
131
|
+
padding: 24px 0;
|
|
132
|
+
font-size: 13px;
|
|
133
|
+
}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import React, { useState } from 'react';
|
|
4
|
+
import { useRouter } from 'next/navigation';
|
|
5
|
+
import { useRelay } from '@/lib/RelayContext';
|
|
6
|
+
import { badgeFromName } from '@/lib/workspaces';
|
|
7
|
+
import DirectoryPicker from '@/components/DirectoryPicker';
|
|
8
|
+
import styles from './page.module.css';
|
|
9
|
+
|
|
10
|
+
export default function Onboarding() {
|
|
11
|
+
const router = useRouter();
|
|
12
|
+
const { registerAndAdd, relayOnline } = useRelay();
|
|
13
|
+
const [busy, setBusy] = useState(false);
|
|
14
|
+
const [statusText, setStatusText] = useState<string | null>(null);
|
|
15
|
+
const [error, setError] = useState<string | null>(null);
|
|
16
|
+
|
|
17
|
+
async function register(localPath: string, full: string) {
|
|
18
|
+
setBusy(true);
|
|
19
|
+
setError(null);
|
|
20
|
+
setStatusText('Registering workspace on relay…');
|
|
21
|
+
try {
|
|
22
|
+
await registerAndAdd({
|
|
23
|
+
id: `local-${Date.now()}`,
|
|
24
|
+
name: badgeFromName(full),
|
|
25
|
+
full,
|
|
26
|
+
source: 'local',
|
|
27
|
+
localPath,
|
|
28
|
+
});
|
|
29
|
+
router.push('/');
|
|
30
|
+
} catch (e) {
|
|
31
|
+
setError(e instanceof Error ? e.message : 'Failed to register workspace');
|
|
32
|
+
setBusy(false);
|
|
33
|
+
setStatusText(null);
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
function handleLocalPick(absPath: string) {
|
|
38
|
+
const leaf = absPath.split(/[/\\]/).filter(Boolean).pop() || absPath;
|
|
39
|
+
register(absPath, leaf);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
return (
|
|
43
|
+
<div className={styles.container}>
|
|
44
|
+
<div className={`glass-panel ${styles.card}`}>
|
|
45
|
+
<div>
|
|
46
|
+
<h1 className={styles.title}>Add Workspace</h1>
|
|
47
|
+
<p className={styles.subtitle}>
|
|
48
|
+
Pick a local project folder where your coding agents run. Relay will track
|
|
49
|
+
shared memory across Cursor, Claude, Copilot, Codex, and Antigravity.
|
|
50
|
+
</p>
|
|
51
|
+
</div>
|
|
52
|
+
|
|
53
|
+
{!relayOnline && (
|
|
54
|
+
<div
|
|
55
|
+
style={{
|
|
56
|
+
padding: '10px 12px',
|
|
57
|
+
borderRadius: 6,
|
|
58
|
+
border: '1px solid var(--color-border)',
|
|
59
|
+
background: 'rgba(255,255,255,0.04)',
|
|
60
|
+
color: 'var(--text-secondary)',
|
|
61
|
+
fontSize: 12,
|
|
62
|
+
}}
|
|
63
|
+
>
|
|
64
|
+
Relay backend is offline. Start it with <span className="mono">relay serve</span>{' '}
|
|
65
|
+
— registration needs the API running.
|
|
66
|
+
</div>
|
|
67
|
+
)}
|
|
68
|
+
|
|
69
|
+
{error && (
|
|
70
|
+
<div
|
|
71
|
+
style={{
|
|
72
|
+
padding: '10px 12px',
|
|
73
|
+
borderRadius: 6,
|
|
74
|
+
border: '1px solid rgba(255,120,120,0.5)',
|
|
75
|
+
color: '#ff9a9a',
|
|
76
|
+
fontSize: 12,
|
|
77
|
+
wordBreak: 'break-word',
|
|
78
|
+
}}
|
|
79
|
+
>
|
|
80
|
+
{error}
|
|
81
|
+
</div>
|
|
82
|
+
)}
|
|
83
|
+
|
|
84
|
+
{busy && statusText && (
|
|
85
|
+
<div className="mono" style={{ fontSize: 12, color: 'var(--text-secondary)' }}>
|
|
86
|
+
{statusText}
|
|
87
|
+
</div>
|
|
88
|
+
)}
|
|
89
|
+
|
|
90
|
+
<DirectoryPicker onPick={handleLocalPick} busy={busy} />
|
|
91
|
+
|
|
92
|
+
<button className={styles.skipBtn} onClick={() => router.push('/')}>
|
|
93
|
+
Skip for now
|
|
94
|
+
</button>
|
|
95
|
+
</div>
|
|
96
|
+
</div>
|
|
97
|
+
);
|
|
98
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
.appWrapper {
|
|
2
|
+
display: flex;
|
|
3
|
+
height: 100vh;
|
|
4
|
+
width: 100vw;
|
|
5
|
+
overflow: hidden;
|
|
6
|
+
background-color: var(--color-surface-1);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.layout {
|
|
10
|
+
display: flex;
|
|
11
|
+
flex-direction: column;
|
|
12
|
+
flex-grow: 1;
|
|
13
|
+
height: 100vh;
|
|
14
|
+
/* Without min-width:0 a flex item grows to its content's intrinsic width,
|
|
15
|
+
letting wide chat/activity content push the control-room panel off-screen. */
|
|
16
|
+
min-width: 0;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.mainArea {
|
|
20
|
+
display: flex;
|
|
21
|
+
flex-grow: 1;
|
|
22
|
+
overflow: hidden;
|
|
23
|
+
min-width: 0;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.chatArea {
|
|
27
|
+
flex-grow: 1;
|
|
28
|
+
display: flex;
|
|
29
|
+
flex-direction: column;
|
|
30
|
+
/* min-width:0 lets this column shrink instead of forcing the control-room
|
|
31
|
+
panel off-screen when an event has wide content (diffs, long lines). */
|
|
32
|
+
min-width: 0;
|
|
33
|
+
overflow: hidden;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.controlRoomArea {
|
|
37
|
+
width: 440px;
|
|
38
|
+
flex-shrink: 0;
|
|
39
|
+
background-color: var(--color-surface-2);
|
|
40
|
+
border-left: 1px solid var(--color-border);
|
|
41
|
+
overflow-y: auto;
|
|
42
|
+
display: flex;
|
|
43
|
+
flex-direction: column;
|
|
44
|
+
gap: 16px;
|
|
45
|
+
padding: 16px;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
.stackPanel {
|
|
49
|
+
height: 280px;
|
|
50
|
+
flex-shrink: 0;
|
|
51
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import GlobalHeader from '@/components/GlobalHeader';
|
|
3
|
+
import Sidebar from '@/components/Sidebar';
|
|
4
|
+
import ProjectDashboard from '@/components/ProjectDashboard';
|
|
5
|
+
import RelayBrainPanel from '@/components/RelayBrainPanel';
|
|
6
|
+
import CollaboratorsPanel from '@/components/CollaboratorsPanel';
|
|
7
|
+
import ContextMemory from '@/components/ContextMemory';
|
|
8
|
+
import TaskQueue from '@/components/TaskQueue';
|
|
9
|
+
import WorkspaceRail from '@/components/WorkspaceRail';
|
|
10
|
+
import styles from './page.module.css';
|
|
11
|
+
|
|
12
|
+
export default function Home() {
|
|
13
|
+
return (
|
|
14
|
+
<div className={styles.appWrapper}>
|
|
15
|
+
<WorkspaceRail />
|
|
16
|
+
<div className={styles.layout}>
|
|
17
|
+
<GlobalHeader />
|
|
18
|
+
|
|
19
|
+
<main className={styles.mainArea}>
|
|
20
|
+
<Sidebar />
|
|
21
|
+
|
|
22
|
+
<div className={styles.chatArea}>
|
|
23
|
+
<ProjectDashboard />
|
|
24
|
+
</div>
|
|
25
|
+
|
|
26
|
+
<div className={`${styles.controlRoomArea} custom-scrollbar`}>
|
|
27
|
+
<RelayBrainPanel />
|
|
28
|
+
<CollaboratorsPanel />
|
|
29
|
+
<div className={styles.stackPanel}>
|
|
30
|
+
<ContextMemory />
|
|
31
|
+
</div>
|
|
32
|
+
<div className={styles.stackPanel}>
|
|
33
|
+
<TaskQueue />
|
|
34
|
+
</div>
|
|
35
|
+
</div>
|
|
36
|
+
</main>
|
|
37
|
+
</div>
|
|
38
|
+
</div>
|
|
39
|
+
);
|
|
40
|
+
}
|