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.
Files changed (721) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +389 -0
  3. package/backend/hooks/relay-antigravity-stop.js +3 -0
  4. package/backend/hooks/relay-claude-stop.js +3 -0
  5. package/backend/hooks/relay-codex-stop.js +3 -0
  6. package/backend/hooks/relay-copilot-stop.js +3 -0
  7. package/backend/hooks/relay-cursor-stop.js +3 -0
  8. package/backend/hooks/relay-hook-lib.js +170 -0
  9. package/backend/lib/relayAuth.js +41 -0
  10. package/backend/lib/relayCompileIr.js +276 -0
  11. package/backend/lib/relayContext.js +519 -0
  12. package/backend/lib/relayDashboard.js +118 -0
  13. package/backend/lib/relayHooks.js +190 -0
  14. package/backend/lib/relayInstall.js +339 -0
  15. package/backend/lib/relayMeta.js +61 -0
  16. package/backend/lib/relayProjects.js +225 -0
  17. package/backend/lib/relayServe.js +120 -0
  18. package/backend/lib/relayStore.js +173 -0
  19. package/backend/lib/relayUi.js +68 -0
  20. package/backend/lib/timeline.js +101 -0
  21. package/backend/lib/vscdb.js +42 -0
  22. package/backend/lib/vscodeHistory.js +227 -0
  23. package/backend/lib/vscodeWorkspace.js +77 -0
  24. package/backend/mcp/server.js +228 -0
  25. package/backend/node_modules/.bin/mime +16 -0
  26. package/backend/node_modules/.bin/mime.cmd +17 -0
  27. package/backend/node_modules/.bin/mime.ps1 +28 -0
  28. package/backend/node_modules/.package-lock.json +846 -0
  29. package/backend/node_modules/accepts/HISTORY.md +243 -0
  30. package/backend/node_modules/accepts/LICENSE +23 -0
  31. package/backend/node_modules/accepts/README.md +140 -0
  32. package/backend/node_modules/accepts/index.js +238 -0
  33. package/backend/node_modules/accepts/package.json +47 -0
  34. package/backend/node_modules/array-flatten/LICENSE +21 -0
  35. package/backend/node_modules/array-flatten/README.md +43 -0
  36. package/backend/node_modules/array-flatten/array-flatten.js +64 -0
  37. package/backend/node_modules/array-flatten/package.json +39 -0
  38. package/backend/node_modules/body-parser/HISTORY.md +686 -0
  39. package/backend/node_modules/body-parser/LICENSE +23 -0
  40. package/backend/node_modules/body-parser/README.md +476 -0
  41. package/backend/node_modules/body-parser/index.js +156 -0
  42. package/backend/node_modules/body-parser/lib/read.js +205 -0
  43. package/backend/node_modules/body-parser/lib/types/json.js +243 -0
  44. package/backend/node_modules/body-parser/lib/types/raw.js +101 -0
  45. package/backend/node_modules/body-parser/lib/types/text.js +121 -0
  46. package/backend/node_modules/body-parser/lib/types/urlencoded.js +299 -0
  47. package/backend/node_modules/body-parser/package.json +55 -0
  48. package/backend/node_modules/bytes/History.md +97 -0
  49. package/backend/node_modules/bytes/LICENSE +23 -0
  50. package/backend/node_modules/bytes/Readme.md +152 -0
  51. package/backend/node_modules/bytes/index.js +170 -0
  52. package/backend/node_modules/bytes/package.json +42 -0
  53. package/backend/node_modules/call-bind-apply-helpers/.eslintrc +17 -0
  54. package/backend/node_modules/call-bind-apply-helpers/.github/FUNDING.yml +12 -0
  55. package/backend/node_modules/call-bind-apply-helpers/.nycrc +9 -0
  56. package/backend/node_modules/call-bind-apply-helpers/CHANGELOG.md +30 -0
  57. package/backend/node_modules/call-bind-apply-helpers/LICENSE +21 -0
  58. package/backend/node_modules/call-bind-apply-helpers/README.md +62 -0
  59. package/backend/node_modules/call-bind-apply-helpers/actualApply.d.ts +1 -0
  60. package/backend/node_modules/call-bind-apply-helpers/actualApply.js +10 -0
  61. package/backend/node_modules/call-bind-apply-helpers/applyBind.d.ts +19 -0
  62. package/backend/node_modules/call-bind-apply-helpers/applyBind.js +10 -0
  63. package/backend/node_modules/call-bind-apply-helpers/functionApply.d.ts +1 -0
  64. package/backend/node_modules/call-bind-apply-helpers/functionApply.js +4 -0
  65. package/backend/node_modules/call-bind-apply-helpers/functionCall.d.ts +1 -0
  66. package/backend/node_modules/call-bind-apply-helpers/functionCall.js +4 -0
  67. package/backend/node_modules/call-bind-apply-helpers/index.d.ts +64 -0
  68. package/backend/node_modules/call-bind-apply-helpers/index.js +15 -0
  69. package/backend/node_modules/call-bind-apply-helpers/package.json +85 -0
  70. package/backend/node_modules/call-bind-apply-helpers/reflectApply.d.ts +3 -0
  71. package/backend/node_modules/call-bind-apply-helpers/reflectApply.js +4 -0
  72. package/backend/node_modules/call-bind-apply-helpers/test/index.js +63 -0
  73. package/backend/node_modules/call-bind-apply-helpers/tsconfig.json +9 -0
  74. package/backend/node_modules/call-bound/.eslintrc +13 -0
  75. package/backend/node_modules/call-bound/.github/FUNDING.yml +12 -0
  76. package/backend/node_modules/call-bound/.nycrc +9 -0
  77. package/backend/node_modules/call-bound/CHANGELOG.md +42 -0
  78. package/backend/node_modules/call-bound/LICENSE +21 -0
  79. package/backend/node_modules/call-bound/README.md +53 -0
  80. package/backend/node_modules/call-bound/index.d.ts +94 -0
  81. package/backend/node_modules/call-bound/index.js +19 -0
  82. package/backend/node_modules/call-bound/package.json +99 -0
  83. package/backend/node_modules/call-bound/test/index.js +61 -0
  84. package/backend/node_modules/call-bound/tsconfig.json +10 -0
  85. package/backend/node_modules/content-disposition/HISTORY.md +60 -0
  86. package/backend/node_modules/content-disposition/LICENSE +22 -0
  87. package/backend/node_modules/content-disposition/README.md +142 -0
  88. package/backend/node_modules/content-disposition/index.js +458 -0
  89. package/backend/node_modules/content-disposition/package.json +44 -0
  90. package/backend/node_modules/content-type/HISTORY.md +29 -0
  91. package/backend/node_modules/content-type/LICENSE +22 -0
  92. package/backend/node_modules/content-type/README.md +94 -0
  93. package/backend/node_modules/content-type/index.js +225 -0
  94. package/backend/node_modules/content-type/package.json +42 -0
  95. package/backend/node_modules/cookie/LICENSE +24 -0
  96. package/backend/node_modules/cookie/README.md +317 -0
  97. package/backend/node_modules/cookie/SECURITY.md +25 -0
  98. package/backend/node_modules/cookie/index.js +335 -0
  99. package/backend/node_modules/cookie/package.json +44 -0
  100. package/backend/node_modules/cookie-signature/History.md +42 -0
  101. package/backend/node_modules/cookie-signature/Readme.md +42 -0
  102. package/backend/node_modules/cookie-signature/index.js +51 -0
  103. package/backend/node_modules/cookie-signature/package.json +18 -0
  104. package/backend/node_modules/cors/LICENSE +22 -0
  105. package/backend/node_modules/cors/README.md +277 -0
  106. package/backend/node_modules/cors/lib/index.js +238 -0
  107. package/backend/node_modules/cors/package.json +42 -0
  108. package/backend/node_modules/debug/.coveralls.yml +1 -0
  109. package/backend/node_modules/debug/.eslintrc +11 -0
  110. package/backend/node_modules/debug/.travis.yml +14 -0
  111. package/backend/node_modules/debug/CHANGELOG.md +362 -0
  112. package/backend/node_modules/debug/LICENSE +19 -0
  113. package/backend/node_modules/debug/Makefile +50 -0
  114. package/backend/node_modules/debug/README.md +312 -0
  115. package/backend/node_modules/debug/component.json +19 -0
  116. package/backend/node_modules/debug/karma.conf.js +70 -0
  117. package/backend/node_modules/debug/node.js +1 -0
  118. package/backend/node_modules/debug/package.json +49 -0
  119. package/backend/node_modules/debug/src/browser.js +185 -0
  120. package/backend/node_modules/debug/src/debug.js +202 -0
  121. package/backend/node_modules/debug/src/index.js +10 -0
  122. package/backend/node_modules/debug/src/inspector-log.js +15 -0
  123. package/backend/node_modules/debug/src/node.js +248 -0
  124. package/backend/node_modules/depd/History.md +103 -0
  125. package/backend/node_modules/depd/LICENSE +22 -0
  126. package/backend/node_modules/depd/Readme.md +280 -0
  127. package/backend/node_modules/depd/index.js +538 -0
  128. package/backend/node_modules/depd/lib/browser/index.js +77 -0
  129. package/backend/node_modules/depd/package.json +45 -0
  130. package/backend/node_modules/destroy/LICENSE +23 -0
  131. package/backend/node_modules/destroy/README.md +63 -0
  132. package/backend/node_modules/destroy/index.js +209 -0
  133. package/backend/node_modules/destroy/package.json +48 -0
  134. package/backend/node_modules/dunder-proto/.eslintrc +5 -0
  135. package/backend/node_modules/dunder-proto/.github/FUNDING.yml +12 -0
  136. package/backend/node_modules/dunder-proto/.nycrc +13 -0
  137. package/backend/node_modules/dunder-proto/CHANGELOG.md +24 -0
  138. package/backend/node_modules/dunder-proto/LICENSE +21 -0
  139. package/backend/node_modules/dunder-proto/README.md +54 -0
  140. package/backend/node_modules/dunder-proto/get.d.ts +5 -0
  141. package/backend/node_modules/dunder-proto/get.js +30 -0
  142. package/backend/node_modules/dunder-proto/package.json +76 -0
  143. package/backend/node_modules/dunder-proto/set.d.ts +5 -0
  144. package/backend/node_modules/dunder-proto/set.js +35 -0
  145. package/backend/node_modules/dunder-proto/test/get.js +34 -0
  146. package/backend/node_modules/dunder-proto/test/index.js +4 -0
  147. package/backend/node_modules/dunder-proto/test/set.js +50 -0
  148. package/backend/node_modules/dunder-proto/tsconfig.json +9 -0
  149. package/backend/node_modules/ee-first/LICENSE +22 -0
  150. package/backend/node_modules/ee-first/README.md +80 -0
  151. package/backend/node_modules/ee-first/index.js +95 -0
  152. package/backend/node_modules/ee-first/package.json +29 -0
  153. package/backend/node_modules/encodeurl/LICENSE +22 -0
  154. package/backend/node_modules/encodeurl/README.md +109 -0
  155. package/backend/node_modules/encodeurl/index.js +60 -0
  156. package/backend/node_modules/encodeurl/package.json +40 -0
  157. package/backend/node_modules/es-define-property/.eslintrc +13 -0
  158. package/backend/node_modules/es-define-property/.github/FUNDING.yml +12 -0
  159. package/backend/node_modules/es-define-property/.nycrc +9 -0
  160. package/backend/node_modules/es-define-property/CHANGELOG.md +29 -0
  161. package/backend/node_modules/es-define-property/LICENSE +21 -0
  162. package/backend/node_modules/es-define-property/README.md +49 -0
  163. package/backend/node_modules/es-define-property/index.d.ts +3 -0
  164. package/backend/node_modules/es-define-property/index.js +14 -0
  165. package/backend/node_modules/es-define-property/package.json +81 -0
  166. package/backend/node_modules/es-define-property/test/index.js +56 -0
  167. package/backend/node_modules/es-define-property/tsconfig.json +10 -0
  168. package/backend/node_modules/es-errors/.eslintrc +5 -0
  169. package/backend/node_modules/es-errors/.github/FUNDING.yml +12 -0
  170. package/backend/node_modules/es-errors/CHANGELOG.md +40 -0
  171. package/backend/node_modules/es-errors/LICENSE +21 -0
  172. package/backend/node_modules/es-errors/README.md +55 -0
  173. package/backend/node_modules/es-errors/eval.d.ts +3 -0
  174. package/backend/node_modules/es-errors/eval.js +4 -0
  175. package/backend/node_modules/es-errors/index.d.ts +3 -0
  176. package/backend/node_modules/es-errors/index.js +4 -0
  177. package/backend/node_modules/es-errors/package.json +80 -0
  178. package/backend/node_modules/es-errors/range.d.ts +3 -0
  179. package/backend/node_modules/es-errors/range.js +4 -0
  180. package/backend/node_modules/es-errors/ref.d.ts +3 -0
  181. package/backend/node_modules/es-errors/ref.js +4 -0
  182. package/backend/node_modules/es-errors/syntax.d.ts +3 -0
  183. package/backend/node_modules/es-errors/syntax.js +4 -0
  184. package/backend/node_modules/es-errors/test/index.js +19 -0
  185. package/backend/node_modules/es-errors/tsconfig.json +49 -0
  186. package/backend/node_modules/es-errors/type.d.ts +3 -0
  187. package/backend/node_modules/es-errors/type.js +4 -0
  188. package/backend/node_modules/es-errors/uri.d.ts +3 -0
  189. package/backend/node_modules/es-errors/uri.js +4 -0
  190. package/backend/node_modules/es-object-atoms/.eslintrc +16 -0
  191. package/backend/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
  192. package/backend/node_modules/es-object-atoms/CHANGELOG.md +44 -0
  193. package/backend/node_modules/es-object-atoms/LICENSE +21 -0
  194. package/backend/node_modules/es-object-atoms/README.md +63 -0
  195. package/backend/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
  196. package/backend/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
  197. package/backend/node_modules/es-object-atoms/ToObject.d.ts +7 -0
  198. package/backend/node_modules/es-object-atoms/ToObject.js +10 -0
  199. package/backend/node_modules/es-object-atoms/index.d.ts +3 -0
  200. package/backend/node_modules/es-object-atoms/index.js +4 -0
  201. package/backend/node_modules/es-object-atoms/isObject.d.ts +3 -0
  202. package/backend/node_modules/es-object-atoms/isObject.js +6 -0
  203. package/backend/node_modules/es-object-atoms/package.json +79 -0
  204. package/backend/node_modules/es-object-atoms/test/index.js +38 -0
  205. package/backend/node_modules/es-object-atoms/tsconfig.json +7 -0
  206. package/backend/node_modules/escape-html/LICENSE +24 -0
  207. package/backend/node_modules/escape-html/Readme.md +43 -0
  208. package/backend/node_modules/escape-html/index.js +78 -0
  209. package/backend/node_modules/escape-html/package.json +24 -0
  210. package/backend/node_modules/etag/HISTORY.md +83 -0
  211. package/backend/node_modules/etag/LICENSE +22 -0
  212. package/backend/node_modules/etag/README.md +159 -0
  213. package/backend/node_modules/etag/index.js +131 -0
  214. package/backend/node_modules/etag/package.json +47 -0
  215. package/backend/node_modules/express/History.md +3676 -0
  216. package/backend/node_modules/express/LICENSE +24 -0
  217. package/backend/node_modules/express/Readme.md +260 -0
  218. package/backend/node_modules/express/index.js +11 -0
  219. package/backend/node_modules/express/lib/application.js +661 -0
  220. package/backend/node_modules/express/lib/express.js +116 -0
  221. package/backend/node_modules/express/lib/middleware/init.js +43 -0
  222. package/backend/node_modules/express/lib/middleware/query.js +47 -0
  223. package/backend/node_modules/express/lib/request.js +525 -0
  224. package/backend/node_modules/express/lib/response.js +1179 -0
  225. package/backend/node_modules/express/lib/router/index.js +673 -0
  226. package/backend/node_modules/express/lib/router/layer.js +181 -0
  227. package/backend/node_modules/express/lib/router/route.js +230 -0
  228. package/backend/node_modules/express/lib/utils.js +304 -0
  229. package/backend/node_modules/express/lib/view.js +182 -0
  230. package/backend/node_modules/express/package.json +102 -0
  231. package/backend/node_modules/finalhandler/HISTORY.md +216 -0
  232. package/backend/node_modules/finalhandler/LICENSE +22 -0
  233. package/backend/node_modules/finalhandler/README.md +147 -0
  234. package/backend/node_modules/finalhandler/SECURITY.md +25 -0
  235. package/backend/node_modules/finalhandler/index.js +341 -0
  236. package/backend/node_modules/finalhandler/package.json +47 -0
  237. package/backend/node_modules/forwarded/HISTORY.md +21 -0
  238. package/backend/node_modules/forwarded/LICENSE +22 -0
  239. package/backend/node_modules/forwarded/README.md +57 -0
  240. package/backend/node_modules/forwarded/index.js +90 -0
  241. package/backend/node_modules/forwarded/package.json +45 -0
  242. package/backend/node_modules/fresh/HISTORY.md +70 -0
  243. package/backend/node_modules/fresh/LICENSE +23 -0
  244. package/backend/node_modules/fresh/README.md +119 -0
  245. package/backend/node_modules/fresh/index.js +137 -0
  246. package/backend/node_modules/fresh/package.json +46 -0
  247. package/backend/node_modules/function-bind/.eslintrc +21 -0
  248. package/backend/node_modules/function-bind/.github/FUNDING.yml +12 -0
  249. package/backend/node_modules/function-bind/.github/SECURITY.md +3 -0
  250. package/backend/node_modules/function-bind/.nycrc +13 -0
  251. package/backend/node_modules/function-bind/CHANGELOG.md +136 -0
  252. package/backend/node_modules/function-bind/LICENSE +20 -0
  253. package/backend/node_modules/function-bind/README.md +46 -0
  254. package/backend/node_modules/function-bind/implementation.js +84 -0
  255. package/backend/node_modules/function-bind/index.js +5 -0
  256. package/backend/node_modules/function-bind/package.json +87 -0
  257. package/backend/node_modules/function-bind/test/.eslintrc +9 -0
  258. package/backend/node_modules/function-bind/test/index.js +252 -0
  259. package/backend/node_modules/get-intrinsic/.eslintrc +42 -0
  260. package/backend/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  261. package/backend/node_modules/get-intrinsic/.nycrc +9 -0
  262. package/backend/node_modules/get-intrinsic/CHANGELOG.md +186 -0
  263. package/backend/node_modules/get-intrinsic/LICENSE +21 -0
  264. package/backend/node_modules/get-intrinsic/README.md +71 -0
  265. package/backend/node_modules/get-intrinsic/index.js +378 -0
  266. package/backend/node_modules/get-intrinsic/package.json +97 -0
  267. package/backend/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
  268. package/backend/node_modules/get-proto/.eslintrc +10 -0
  269. package/backend/node_modules/get-proto/.github/FUNDING.yml +12 -0
  270. package/backend/node_modules/get-proto/.nycrc +9 -0
  271. package/backend/node_modules/get-proto/CHANGELOG.md +21 -0
  272. package/backend/node_modules/get-proto/LICENSE +21 -0
  273. package/backend/node_modules/get-proto/Object.getPrototypeOf.d.ts +5 -0
  274. package/backend/node_modules/get-proto/Object.getPrototypeOf.js +6 -0
  275. package/backend/node_modules/get-proto/README.md +50 -0
  276. package/backend/node_modules/get-proto/Reflect.getPrototypeOf.d.ts +3 -0
  277. package/backend/node_modules/get-proto/Reflect.getPrototypeOf.js +4 -0
  278. package/backend/node_modules/get-proto/index.d.ts +5 -0
  279. package/backend/node_modules/get-proto/index.js +27 -0
  280. package/backend/node_modules/get-proto/package.json +81 -0
  281. package/backend/node_modules/get-proto/test/index.js +68 -0
  282. package/backend/node_modules/get-proto/tsconfig.json +9 -0
  283. package/backend/node_modules/gopd/.eslintrc +16 -0
  284. package/backend/node_modules/gopd/.github/FUNDING.yml +12 -0
  285. package/backend/node_modules/gopd/CHANGELOG.md +45 -0
  286. package/backend/node_modules/gopd/LICENSE +21 -0
  287. package/backend/node_modules/gopd/README.md +40 -0
  288. package/backend/node_modules/gopd/gOPD.d.ts +1 -0
  289. package/backend/node_modules/gopd/gOPD.js +4 -0
  290. package/backend/node_modules/gopd/index.d.ts +5 -0
  291. package/backend/node_modules/gopd/index.js +15 -0
  292. package/backend/node_modules/gopd/package.json +77 -0
  293. package/backend/node_modules/gopd/test/index.js +36 -0
  294. package/backend/node_modules/gopd/tsconfig.json +9 -0
  295. package/backend/node_modules/has-symbols/.eslintrc +11 -0
  296. package/backend/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  297. package/backend/node_modules/has-symbols/.nycrc +9 -0
  298. package/backend/node_modules/has-symbols/CHANGELOG.md +91 -0
  299. package/backend/node_modules/has-symbols/LICENSE +21 -0
  300. package/backend/node_modules/has-symbols/README.md +46 -0
  301. package/backend/node_modules/has-symbols/index.d.ts +3 -0
  302. package/backend/node_modules/has-symbols/index.js +14 -0
  303. package/backend/node_modules/has-symbols/package.json +111 -0
  304. package/backend/node_modules/has-symbols/shams.d.ts +3 -0
  305. package/backend/node_modules/has-symbols/shams.js +45 -0
  306. package/backend/node_modules/has-symbols/test/index.js +22 -0
  307. package/backend/node_modules/has-symbols/test/shams/core-js.js +29 -0
  308. package/backend/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
  309. package/backend/node_modules/has-symbols/test/tests.js +58 -0
  310. package/backend/node_modules/has-symbols/tsconfig.json +10 -0
  311. package/backend/node_modules/hasown/.github/FUNDING.yml +12 -0
  312. package/backend/node_modules/hasown/.nycrc +13 -0
  313. package/backend/node_modules/hasown/CHANGELOG.md +58 -0
  314. package/backend/node_modules/hasown/LICENSE +21 -0
  315. package/backend/node_modules/hasown/README.md +40 -0
  316. package/backend/node_modules/hasown/eslint.config.mjs +6 -0
  317. package/backend/node_modules/hasown/index.d.ts +3 -0
  318. package/backend/node_modules/hasown/index.js +8 -0
  319. package/backend/node_modules/hasown/package.json +91 -0
  320. package/backend/node_modules/hasown/tsconfig.json +6 -0
  321. package/backend/node_modules/http-errors/HISTORY.md +186 -0
  322. package/backend/node_modules/http-errors/LICENSE +23 -0
  323. package/backend/node_modules/http-errors/README.md +169 -0
  324. package/backend/node_modules/http-errors/index.js +290 -0
  325. package/backend/node_modules/http-errors/package.json +54 -0
  326. package/backend/node_modules/iconv-lite/Changelog.md +162 -0
  327. package/backend/node_modules/iconv-lite/LICENSE +21 -0
  328. package/backend/node_modules/iconv-lite/README.md +156 -0
  329. package/backend/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
  330. package/backend/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
  331. package/backend/node_modules/iconv-lite/encodings/index.js +22 -0
  332. package/backend/node_modules/iconv-lite/encodings/internal.js +188 -0
  333. package/backend/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  334. package/backend/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  335. package/backend/node_modules/iconv-lite/encodings/sbcs-data.js +174 -0
  336. package/backend/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  337. package/backend/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  338. package/backend/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  339. package/backend/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  340. package/backend/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  341. package/backend/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  342. package/backend/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
  343. package/backend/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  344. package/backend/node_modules/iconv-lite/encodings/utf16.js +177 -0
  345. package/backend/node_modules/iconv-lite/encodings/utf7.js +290 -0
  346. package/backend/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  347. package/backend/node_modules/iconv-lite/lib/extend-node.js +217 -0
  348. package/backend/node_modules/iconv-lite/lib/index.d.ts +24 -0
  349. package/backend/node_modules/iconv-lite/lib/index.js +153 -0
  350. package/backend/node_modules/iconv-lite/lib/streams.js +121 -0
  351. package/backend/node_modules/iconv-lite/package.json +46 -0
  352. package/backend/node_modules/inherits/LICENSE +16 -0
  353. package/backend/node_modules/inherits/README.md +42 -0
  354. package/backend/node_modules/inherits/inherits.js +9 -0
  355. package/backend/node_modules/inherits/inherits_browser.js +27 -0
  356. package/backend/node_modules/inherits/package.json +29 -0
  357. package/backend/node_modules/ipaddr.js/LICENSE +19 -0
  358. package/backend/node_modules/ipaddr.js/README.md +233 -0
  359. package/backend/node_modules/ipaddr.js/ipaddr.min.js +1 -0
  360. package/backend/node_modules/ipaddr.js/lib/ipaddr.js +673 -0
  361. package/backend/node_modules/ipaddr.js/lib/ipaddr.js.d.ts +68 -0
  362. package/backend/node_modules/ipaddr.js/package.json +35 -0
  363. package/backend/node_modules/math-intrinsics/.eslintrc +16 -0
  364. package/backend/node_modules/math-intrinsics/.github/FUNDING.yml +12 -0
  365. package/backend/node_modules/math-intrinsics/CHANGELOG.md +24 -0
  366. package/backend/node_modules/math-intrinsics/LICENSE +21 -0
  367. package/backend/node_modules/math-intrinsics/README.md +50 -0
  368. package/backend/node_modules/math-intrinsics/abs.d.ts +1 -0
  369. package/backend/node_modules/math-intrinsics/abs.js +4 -0
  370. package/backend/node_modules/math-intrinsics/constants/maxArrayLength.d.ts +3 -0
  371. package/backend/node_modules/math-intrinsics/constants/maxArrayLength.js +4 -0
  372. package/backend/node_modules/math-intrinsics/constants/maxSafeInteger.d.ts +3 -0
  373. package/backend/node_modules/math-intrinsics/constants/maxSafeInteger.js +5 -0
  374. package/backend/node_modules/math-intrinsics/constants/maxValue.d.ts +3 -0
  375. package/backend/node_modules/math-intrinsics/constants/maxValue.js +5 -0
  376. package/backend/node_modules/math-intrinsics/floor.d.ts +1 -0
  377. package/backend/node_modules/math-intrinsics/floor.js +4 -0
  378. package/backend/node_modules/math-intrinsics/isFinite.d.ts +3 -0
  379. package/backend/node_modules/math-intrinsics/isFinite.js +12 -0
  380. package/backend/node_modules/math-intrinsics/isInteger.d.ts +3 -0
  381. package/backend/node_modules/math-intrinsics/isInteger.js +16 -0
  382. package/backend/node_modules/math-intrinsics/isNaN.d.ts +1 -0
  383. package/backend/node_modules/math-intrinsics/isNaN.js +6 -0
  384. package/backend/node_modules/math-intrinsics/isNegativeZero.d.ts +3 -0
  385. package/backend/node_modules/math-intrinsics/isNegativeZero.js +6 -0
  386. package/backend/node_modules/math-intrinsics/max.d.ts +1 -0
  387. package/backend/node_modules/math-intrinsics/max.js +4 -0
  388. package/backend/node_modules/math-intrinsics/min.d.ts +1 -0
  389. package/backend/node_modules/math-intrinsics/min.js +4 -0
  390. package/backend/node_modules/math-intrinsics/mod.d.ts +3 -0
  391. package/backend/node_modules/math-intrinsics/mod.js +9 -0
  392. package/backend/node_modules/math-intrinsics/package.json +86 -0
  393. package/backend/node_modules/math-intrinsics/pow.d.ts +1 -0
  394. package/backend/node_modules/math-intrinsics/pow.js +4 -0
  395. package/backend/node_modules/math-intrinsics/round.d.ts +1 -0
  396. package/backend/node_modules/math-intrinsics/round.js +4 -0
  397. package/backend/node_modules/math-intrinsics/sign.d.ts +3 -0
  398. package/backend/node_modules/math-intrinsics/sign.js +11 -0
  399. package/backend/node_modules/math-intrinsics/test/index.js +192 -0
  400. package/backend/node_modules/math-intrinsics/tsconfig.json +3 -0
  401. package/backend/node_modules/media-typer/HISTORY.md +22 -0
  402. package/backend/node_modules/media-typer/LICENSE +22 -0
  403. package/backend/node_modules/media-typer/README.md +81 -0
  404. package/backend/node_modules/media-typer/index.js +270 -0
  405. package/backend/node_modules/media-typer/package.json +26 -0
  406. package/backend/node_modules/merge-descriptors/HISTORY.md +21 -0
  407. package/backend/node_modules/merge-descriptors/LICENSE +23 -0
  408. package/backend/node_modules/merge-descriptors/README.md +49 -0
  409. package/backend/node_modules/merge-descriptors/index.js +60 -0
  410. package/backend/node_modules/merge-descriptors/package.json +39 -0
  411. package/backend/node_modules/methods/HISTORY.md +29 -0
  412. package/backend/node_modules/methods/LICENSE +24 -0
  413. package/backend/node_modules/methods/README.md +51 -0
  414. package/backend/node_modules/methods/index.js +69 -0
  415. package/backend/node_modules/methods/package.json +36 -0
  416. package/backend/node_modules/mime/CHANGELOG.md +164 -0
  417. package/backend/node_modules/mime/LICENSE +21 -0
  418. package/backend/node_modules/mime/README.md +90 -0
  419. package/backend/node_modules/mime/cli.js +8 -0
  420. package/backend/node_modules/mime/mime.js +108 -0
  421. package/backend/node_modules/mime/package.json +44 -0
  422. package/backend/node_modules/mime/src/build.js +53 -0
  423. package/backend/node_modules/mime/src/test.js +60 -0
  424. package/backend/node_modules/mime/types.json +1 -0
  425. package/backend/node_modules/mime-db/HISTORY.md +507 -0
  426. package/backend/node_modules/mime-db/LICENSE +23 -0
  427. package/backend/node_modules/mime-db/README.md +100 -0
  428. package/backend/node_modules/mime-db/db.json +8519 -0
  429. package/backend/node_modules/mime-db/index.js +12 -0
  430. package/backend/node_modules/mime-db/package.json +60 -0
  431. package/backend/node_modules/mime-types/HISTORY.md +397 -0
  432. package/backend/node_modules/mime-types/LICENSE +23 -0
  433. package/backend/node_modules/mime-types/README.md +113 -0
  434. package/backend/node_modules/mime-types/index.js +188 -0
  435. package/backend/node_modules/mime-types/package.json +44 -0
  436. package/backend/node_modules/ms/index.js +152 -0
  437. package/backend/node_modules/ms/license.md +21 -0
  438. package/backend/node_modules/ms/package.json +37 -0
  439. package/backend/node_modules/ms/readme.md +51 -0
  440. package/backend/node_modules/negotiator/HISTORY.md +108 -0
  441. package/backend/node_modules/negotiator/LICENSE +24 -0
  442. package/backend/node_modules/negotiator/README.md +203 -0
  443. package/backend/node_modules/negotiator/index.js +82 -0
  444. package/backend/node_modules/negotiator/lib/charset.js +169 -0
  445. package/backend/node_modules/negotiator/lib/encoding.js +184 -0
  446. package/backend/node_modules/negotiator/lib/language.js +179 -0
  447. package/backend/node_modules/negotiator/lib/mediaType.js +294 -0
  448. package/backend/node_modules/negotiator/package.json +42 -0
  449. package/backend/node_modules/object-assign/index.js +90 -0
  450. package/backend/node_modules/object-assign/license +21 -0
  451. package/backend/node_modules/object-assign/package.json +42 -0
  452. package/backend/node_modules/object-assign/readme.md +61 -0
  453. package/backend/node_modules/object-inspect/.eslintrc +53 -0
  454. package/backend/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  455. package/backend/node_modules/object-inspect/.nycrc +13 -0
  456. package/backend/node_modules/object-inspect/CHANGELOG.md +424 -0
  457. package/backend/node_modules/object-inspect/LICENSE +21 -0
  458. package/backend/node_modules/object-inspect/example/all.js +23 -0
  459. package/backend/node_modules/object-inspect/example/circular.js +6 -0
  460. package/backend/node_modules/object-inspect/example/fn.js +5 -0
  461. package/backend/node_modules/object-inspect/example/inspect.js +10 -0
  462. package/backend/node_modules/object-inspect/index.js +544 -0
  463. package/backend/node_modules/object-inspect/package-support.json +20 -0
  464. package/backend/node_modules/object-inspect/package.json +105 -0
  465. package/backend/node_modules/object-inspect/readme.markdown +84 -0
  466. package/backend/node_modules/object-inspect/test/bigint.js +58 -0
  467. package/backend/node_modules/object-inspect/test/browser/dom.js +15 -0
  468. package/backend/node_modules/object-inspect/test/circular.js +16 -0
  469. package/backend/node_modules/object-inspect/test/deep.js +12 -0
  470. package/backend/node_modules/object-inspect/test/element.js +53 -0
  471. package/backend/node_modules/object-inspect/test/err.js +48 -0
  472. package/backend/node_modules/object-inspect/test/fakes.js +29 -0
  473. package/backend/node_modules/object-inspect/test/fn.js +76 -0
  474. package/backend/node_modules/object-inspect/test/global.js +17 -0
  475. package/backend/node_modules/object-inspect/test/has.js +15 -0
  476. package/backend/node_modules/object-inspect/test/holes.js +15 -0
  477. package/backend/node_modules/object-inspect/test/indent-option.js +271 -0
  478. package/backend/node_modules/object-inspect/test/inspect.js +139 -0
  479. package/backend/node_modules/object-inspect/test/lowbyte.js +12 -0
  480. package/backend/node_modules/object-inspect/test/number.js +58 -0
  481. package/backend/node_modules/object-inspect/test/quoteStyle.js +26 -0
  482. package/backend/node_modules/object-inspect/test/toStringTag.js +40 -0
  483. package/backend/node_modules/object-inspect/test/undef.js +12 -0
  484. package/backend/node_modules/object-inspect/test/values.js +261 -0
  485. package/backend/node_modules/object-inspect/test-core-js.js +26 -0
  486. package/backend/node_modules/object-inspect/util.inspect.js +1 -0
  487. package/backend/node_modules/on-finished/HISTORY.md +98 -0
  488. package/backend/node_modules/on-finished/LICENSE +23 -0
  489. package/backend/node_modules/on-finished/README.md +162 -0
  490. package/backend/node_modules/on-finished/index.js +234 -0
  491. package/backend/node_modules/on-finished/package.json +39 -0
  492. package/backend/node_modules/parseurl/HISTORY.md +58 -0
  493. package/backend/node_modules/parseurl/LICENSE +24 -0
  494. package/backend/node_modules/parseurl/README.md +133 -0
  495. package/backend/node_modules/parseurl/index.js +158 -0
  496. package/backend/node_modules/parseurl/package.json +40 -0
  497. package/backend/node_modules/path-to-regexp/LICENSE +21 -0
  498. package/backend/node_modules/path-to-regexp/Readme.md +35 -0
  499. package/backend/node_modules/path-to-regexp/index.js +158 -0
  500. package/backend/node_modules/path-to-regexp/package.json +30 -0
  501. package/backend/node_modules/proxy-addr/HISTORY.md +161 -0
  502. package/backend/node_modules/proxy-addr/LICENSE +22 -0
  503. package/backend/node_modules/proxy-addr/README.md +139 -0
  504. package/backend/node_modules/proxy-addr/index.js +327 -0
  505. package/backend/node_modules/proxy-addr/package.json +47 -0
  506. package/backend/node_modules/qs/.editorconfig +46 -0
  507. package/backend/node_modules/qs/.github/FUNDING.yml +12 -0
  508. package/backend/node_modules/qs/.github/SECURITY.md +11 -0
  509. package/backend/node_modules/qs/.github/THREAT_MODEL.md +78 -0
  510. package/backend/node_modules/qs/.nycrc +13 -0
  511. package/backend/node_modules/qs/CHANGELOG.md +822 -0
  512. package/backend/node_modules/qs/LICENSE.md +29 -0
  513. package/backend/node_modules/qs/README.md +758 -0
  514. package/backend/node_modules/qs/dist/qs.js +141 -0
  515. package/backend/node_modules/qs/eslint.config.mjs +57 -0
  516. package/backend/node_modules/qs/lib/formats.js +23 -0
  517. package/backend/node_modules/qs/lib/index.js +11 -0
  518. package/backend/node_modules/qs/lib/parse.js +403 -0
  519. package/backend/node_modules/qs/lib/stringify.js +363 -0
  520. package/backend/node_modules/qs/lib/utils.js +342 -0
  521. package/backend/node_modules/qs/package.json +94 -0
  522. package/backend/node_modules/qs/test/empty-keys-cases.js +267 -0
  523. package/backend/node_modules/qs/test/parse.js +1703 -0
  524. package/backend/node_modules/qs/test/stringify.js +1448 -0
  525. package/backend/node_modules/qs/test/utils.js +432 -0
  526. package/backend/node_modules/range-parser/HISTORY.md +56 -0
  527. package/backend/node_modules/range-parser/LICENSE +23 -0
  528. package/backend/node_modules/range-parser/README.md +84 -0
  529. package/backend/node_modules/range-parser/index.js +162 -0
  530. package/backend/node_modules/range-parser/package.json +44 -0
  531. package/backend/node_modules/raw-body/LICENSE +22 -0
  532. package/backend/node_modules/raw-body/README.md +223 -0
  533. package/backend/node_modules/raw-body/index.d.ts +87 -0
  534. package/backend/node_modules/raw-body/index.js +336 -0
  535. package/backend/node_modules/raw-body/package.json +47 -0
  536. package/backend/node_modules/safe-buffer/LICENSE +21 -0
  537. package/backend/node_modules/safe-buffer/README.md +584 -0
  538. package/backend/node_modules/safe-buffer/index.d.ts +187 -0
  539. package/backend/node_modules/safe-buffer/index.js +65 -0
  540. package/backend/node_modules/safe-buffer/package.json +51 -0
  541. package/backend/node_modules/safer-buffer/LICENSE +21 -0
  542. package/backend/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  543. package/backend/node_modules/safer-buffer/Readme.md +156 -0
  544. package/backend/node_modules/safer-buffer/dangerous.js +58 -0
  545. package/backend/node_modules/safer-buffer/package.json +34 -0
  546. package/backend/node_modules/safer-buffer/safer.js +77 -0
  547. package/backend/node_modules/safer-buffer/tests.js +406 -0
  548. package/backend/node_modules/send/HISTORY.md +538 -0
  549. package/backend/node_modules/send/LICENSE +23 -0
  550. package/backend/node_modules/send/README.md +327 -0
  551. package/backend/node_modules/send/SECURITY.md +24 -0
  552. package/backend/node_modules/send/index.js +1142 -0
  553. package/backend/node_modules/send/node_modules/ms/index.js +162 -0
  554. package/backend/node_modules/send/node_modules/ms/license.md +21 -0
  555. package/backend/node_modules/send/node_modules/ms/package.json +38 -0
  556. package/backend/node_modules/send/node_modules/ms/readme.md +59 -0
  557. package/backend/node_modules/send/package.json +62 -0
  558. package/backend/node_modules/serve-static/HISTORY.md +493 -0
  559. package/backend/node_modules/serve-static/LICENSE +25 -0
  560. package/backend/node_modules/serve-static/README.md +257 -0
  561. package/backend/node_modules/serve-static/index.js +209 -0
  562. package/backend/node_modules/serve-static/package.json +42 -0
  563. package/backend/node_modules/setprototypeof/LICENSE +13 -0
  564. package/backend/node_modules/setprototypeof/README.md +31 -0
  565. package/backend/node_modules/setprototypeof/index.d.ts +2 -0
  566. package/backend/node_modules/setprototypeof/index.js +17 -0
  567. package/backend/node_modules/setprototypeof/package.json +38 -0
  568. package/backend/node_modules/setprototypeof/test/index.js +24 -0
  569. package/backend/node_modules/side-channel/.editorconfig +9 -0
  570. package/backend/node_modules/side-channel/.eslintrc +12 -0
  571. package/backend/node_modules/side-channel/.github/FUNDING.yml +12 -0
  572. package/backend/node_modules/side-channel/.nycrc +13 -0
  573. package/backend/node_modules/side-channel/CHANGELOG.md +120 -0
  574. package/backend/node_modules/side-channel/LICENSE +21 -0
  575. package/backend/node_modules/side-channel/README.md +61 -0
  576. package/backend/node_modules/side-channel/index.d.ts +14 -0
  577. package/backend/node_modules/side-channel/index.js +46 -0
  578. package/backend/node_modules/side-channel/package.json +85 -0
  579. package/backend/node_modules/side-channel/test/index.js +120 -0
  580. package/backend/node_modules/side-channel/tsconfig.json +9 -0
  581. package/backend/node_modules/side-channel-list/.editorconfig +9 -0
  582. package/backend/node_modules/side-channel-list/.eslintrc +11 -0
  583. package/backend/node_modules/side-channel-list/.github/FUNDING.yml +12 -0
  584. package/backend/node_modules/side-channel-list/.nycrc +13 -0
  585. package/backend/node_modules/side-channel-list/CHANGELOG.md +36 -0
  586. package/backend/node_modules/side-channel-list/LICENSE +21 -0
  587. package/backend/node_modules/side-channel-list/README.md +62 -0
  588. package/backend/node_modules/side-channel-list/index.d.ts +13 -0
  589. package/backend/node_modules/side-channel-list/index.js +111 -0
  590. package/backend/node_modules/side-channel-list/list.d.ts +14 -0
  591. package/backend/node_modules/side-channel-list/package.json +77 -0
  592. package/backend/node_modules/side-channel-list/test/index.js +154 -0
  593. package/backend/node_modules/side-channel-list/tsconfig.json +9 -0
  594. package/backend/node_modules/side-channel-map/.editorconfig +9 -0
  595. package/backend/node_modules/side-channel-map/.eslintrc +11 -0
  596. package/backend/node_modules/side-channel-map/.github/FUNDING.yml +12 -0
  597. package/backend/node_modules/side-channel-map/.nycrc +13 -0
  598. package/backend/node_modules/side-channel-map/CHANGELOG.md +22 -0
  599. package/backend/node_modules/side-channel-map/LICENSE +21 -0
  600. package/backend/node_modules/side-channel-map/README.md +62 -0
  601. package/backend/node_modules/side-channel-map/index.d.ts +15 -0
  602. package/backend/node_modules/side-channel-map/index.js +68 -0
  603. package/backend/node_modules/side-channel-map/package.json +80 -0
  604. package/backend/node_modules/side-channel-map/test/index.js +114 -0
  605. package/backend/node_modules/side-channel-map/tsconfig.json +9 -0
  606. package/backend/node_modules/side-channel-weakmap/.editorconfig +9 -0
  607. package/backend/node_modules/side-channel-weakmap/.eslintrc +12 -0
  608. package/backend/node_modules/side-channel-weakmap/.github/FUNDING.yml +12 -0
  609. package/backend/node_modules/side-channel-weakmap/.nycrc +13 -0
  610. package/backend/node_modules/side-channel-weakmap/CHANGELOG.md +28 -0
  611. package/backend/node_modules/side-channel-weakmap/LICENSE +21 -0
  612. package/backend/node_modules/side-channel-weakmap/README.md +62 -0
  613. package/backend/node_modules/side-channel-weakmap/index.d.ts +15 -0
  614. package/backend/node_modules/side-channel-weakmap/index.js +84 -0
  615. package/backend/node_modules/side-channel-weakmap/package.json +87 -0
  616. package/backend/node_modules/side-channel-weakmap/test/index.js +114 -0
  617. package/backend/node_modules/side-channel-weakmap/tsconfig.json +9 -0
  618. package/backend/node_modules/statuses/HISTORY.md +87 -0
  619. package/backend/node_modules/statuses/LICENSE +23 -0
  620. package/backend/node_modules/statuses/README.md +139 -0
  621. package/backend/node_modules/statuses/codes.json +65 -0
  622. package/backend/node_modules/statuses/index.js +146 -0
  623. package/backend/node_modules/statuses/package.json +49 -0
  624. package/backend/node_modules/toidentifier/HISTORY.md +9 -0
  625. package/backend/node_modules/toidentifier/LICENSE +21 -0
  626. package/backend/node_modules/toidentifier/README.md +61 -0
  627. package/backend/node_modules/toidentifier/index.js +32 -0
  628. package/backend/node_modules/toidentifier/package.json +38 -0
  629. package/backend/node_modules/type-is/HISTORY.md +259 -0
  630. package/backend/node_modules/type-is/LICENSE +23 -0
  631. package/backend/node_modules/type-is/README.md +170 -0
  632. package/backend/node_modules/type-is/index.js +266 -0
  633. package/backend/node_modules/type-is/package.json +45 -0
  634. package/backend/node_modules/unpipe/HISTORY.md +4 -0
  635. package/backend/node_modules/unpipe/LICENSE +22 -0
  636. package/backend/node_modules/unpipe/README.md +43 -0
  637. package/backend/node_modules/unpipe/index.js +69 -0
  638. package/backend/node_modules/unpipe/package.json +27 -0
  639. package/backend/node_modules/utils-merge/LICENSE +20 -0
  640. package/backend/node_modules/utils-merge/README.md +34 -0
  641. package/backend/node_modules/utils-merge/index.js +23 -0
  642. package/backend/node_modules/utils-merge/package.json +40 -0
  643. package/backend/node_modules/vary/HISTORY.md +39 -0
  644. package/backend/node_modules/vary/LICENSE +22 -0
  645. package/backend/node_modules/vary/README.md +101 -0
  646. package/backend/node_modules/vary/index.js +149 -0
  647. package/backend/node_modules/vary/package.json +43 -0
  648. package/backend/package-lock.json +854 -0
  649. package/backend/package.json +14 -0
  650. package/backend/parsers/antigravity.js +206 -0
  651. package/backend/parsers/claude.js +92 -0
  652. package/backend/parsers/codex.js +86 -0
  653. package/backend/parsers/copilot.js +379 -0
  654. package/backend/parsers/copilotEditingSessions.js +118 -0
  655. package/backend/parsers/cursor.js +215 -0
  656. package/backend/relay.js +835 -0
  657. package/backend/scripts/relay-context.js +9 -0
  658. package/backend/server.js +314 -0
  659. package/bin/relay.js +312 -0
  660. package/docs/QUICKSTART.md +94 -0
  661. package/mission-control/AGENTS.md +5 -0
  662. package/mission-control/CLAUDE.md +1 -0
  663. package/mission-control/README.md +20 -0
  664. package/mission-control/eslint.config.mjs +18 -0
  665. package/mission-control/next.config.ts +7 -0
  666. package/mission-control/package-lock.json +6695 -0
  667. package/mission-control/package.json +26 -0
  668. package/mission-control/page.css +1793 -0
  669. package/mission-control/page.html +1 -0
  670. package/mission-control/postcss.config.mjs +7 -0
  671. package/mission-control/public/file.svg +1 -0
  672. package/mission-control/public/globe.svg +1 -0
  673. package/mission-control/public/logos/1f733bb7-c1b3-4292-a7f7-71aafa2addaa.jpeg +0 -0
  674. package/mission-control/public/logos/Claude.png +0 -0
  675. package/mission-control/public/logos/Codex.png +0 -0
  676. package/mission-control/public/logos/Gemini_Generated_Image_7qmndr7qmndr7qmn.png +0 -0
  677. package/mission-control/public/logos/antigravity.png +0 -0
  678. package/mission-control/public/logos/cursor.png +0 -0
  679. package/mission-control/public/logos/github-copilot.png +0 -0
  680. package/mission-control/public/logos/logo.avif +0 -0
  681. package/mission-control/public/logos/logo.jpg +0 -0
  682. package/mission-control/public/logos/logo.png +0 -0
  683. package/mission-control/public/next.svg +1 -0
  684. package/mission-control/public/vercel.svg +1 -0
  685. package/mission-control/public/window.svg +1 -0
  686. package/mission-control/src/app/api/fs/route.ts +49 -0
  687. package/mission-control/src/app/globals.css +102 -0
  688. package/mission-control/src/app/layout.tsx +31 -0
  689. package/mission-control/src/app/onboarding/page.module.css +133 -0
  690. package/mission-control/src/app/onboarding/page.tsx +98 -0
  691. package/mission-control/src/app/page.module.css +51 -0
  692. package/mission-control/src/app/page.tsx +40 -0
  693. package/mission-control/src/components/ActivityTimeline.module.css +282 -0
  694. package/mission-control/src/components/ActivityTimeline.tsx +262 -0
  695. package/mission-control/src/components/AgentSessionChat.module.css +220 -0
  696. package/mission-control/src/components/AgentSessionChat.tsx +276 -0
  697. package/mission-control/src/components/CollaboratorsPanel.module.css +119 -0
  698. package/mission-control/src/components/CollaboratorsPanel.tsx +123 -0
  699. package/mission-control/src/components/ContextMemory.module.css +79 -0
  700. package/mission-control/src/components/ContextMemory.tsx +66 -0
  701. package/mission-control/src/components/DirectoryPicker.tsx +194 -0
  702. package/mission-control/src/components/GlobalHeader.module.css +165 -0
  703. package/mission-control/src/components/GlobalHeader.tsx +82 -0
  704. package/mission-control/src/components/ProjectDashboard.module.css +268 -0
  705. package/mission-control/src/components/ProjectDashboard.tsx +174 -0
  706. package/mission-control/src/components/RelayBrainPanel.module.css +85 -0
  707. package/mission-control/src/components/RelayBrainPanel.tsx +74 -0
  708. package/mission-control/src/components/Sidebar.module.css +201 -0
  709. package/mission-control/src/components/Sidebar.tsx +136 -0
  710. package/mission-control/src/components/TaskQueue.module.css +92 -0
  711. package/mission-control/src/components/TaskQueue.tsx +51 -0
  712. package/mission-control/src/components/WorkspaceRail.module.css +188 -0
  713. package/mission-control/src/components/WorkspaceRail.tsx +56 -0
  714. package/mission-control/src/lib/RelayContext.tsx +314 -0
  715. package/mission-control/src/lib/relay.ts +280 -0
  716. package/mission-control/src/lib/workspaces.ts +53 -0
  717. package/mission-control/tsconfig.json +34 -0
  718. package/package.json +48 -0
  719. package/scripts/postinstall.js +19 -0
  720. package/skills/relay-sync/SKILL.md +32 -0
  721. package/skills/relay-sync/agent-install.md +17 -0
@@ -0,0 +1,1793 @@
1
+ /*!*******************************************************************************************************************************************************************************************************************************************************************!*\
2
+ !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[3]!./src/app/page.module.css ***!
3
+ \*******************************************************************************************************************************************************************************************************************************************************************/
4
+ .page_appWrapper__ixmRj {
5
+ display: flex;
6
+ height: 100vh;
7
+ width: 100vw;
8
+ overflow: hidden;
9
+ background-color: var(--color-surface-1);
10
+ }
11
+
12
+ .page_layout__mbNju {
13
+ display: flex;
14
+ flex-direction: column;
15
+ flex-grow: 1;
16
+ height: 100vh;
17
+ /* Without min-width:0 a flex item grows to its content's intrinsic width,
18
+ letting wide chat/activity content push the control-room panel off-screen. */
19
+ min-width: 0;
20
+ }
21
+
22
+ .page_mainArea__jNVoP {
23
+ display: flex;
24
+ flex-grow: 1;
25
+ overflow: hidden;
26
+ min-width: 0;
27
+ }
28
+
29
+ .page_chatArea__X_m3M {
30
+ flex-grow: 1;
31
+ display: flex;
32
+ flex-direction: column;
33
+ /* min-width:0 lets this column shrink instead of forcing the control-room
34
+ panel off-screen when an event has wide content (diffs, long lines). */
35
+ min-width: 0;
36
+ overflow: hidden;
37
+ }
38
+
39
+ .page_controlRoomArea__U2Upi {
40
+ width: 440px;
41
+ flex-shrink: 0;
42
+ background-color: var(--color-surface-2);
43
+ border-left: 1px solid var(--color-border);
44
+ overflow-y: auto;
45
+ display: flex;
46
+ flex-direction: column;
47
+ gap: 16px;
48
+ padding: 16px;
49
+ }
50
+
51
+ .page_stackPanel__oXX82 {
52
+ height: 280px;
53
+ flex-shrink: 0;
54
+ }
55
+
56
+ /*!****************************************************************************************************************************************************************************************************************************************************************************************!*\
57
+ !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[3]!./src/components/CollaboratorsPanel.module.css ***!
58
+ \****************************************************************************************************************************************************************************************************************************************************************************************/
59
+ .CollaboratorsPanel_panel__r3Mh5 {
60
+ padding: 16px;
61
+ }
62
+
63
+ .CollaboratorsPanel_hint__D6V2h {
64
+ font-size: 11px;
65
+ color: var(--text-muted);
66
+ margin: 8px 0 12px;
67
+ line-height: 1.5;
68
+ }
69
+
70
+ .CollaboratorsPanel_muted__SsAZK {
71
+ font-size: 10px;
72
+ color: var(--text-muted);
73
+ font-weight: 400;
74
+ }
75
+
76
+ .CollaboratorsPanel_avatarRow__2LfiL {
77
+ display: flex;
78
+ flex-wrap: wrap;
79
+ gap: 8px;
80
+ margin-top: 4px;
81
+ }
82
+
83
+ .CollaboratorsPanel_avatarChip__HJgeA {
84
+ display: inline-flex;
85
+ align-items: center;
86
+ gap: 6px;
87
+ padding: 4px 10px 4px 4px;
88
+ border-radius: 999px;
89
+ border: 1px solid var(--color-border);
90
+ background: var(--color-surface-3);
91
+ }
92
+
93
+ .CollaboratorsPanel_avatar__NGw76 {
94
+ display: inline-flex;
95
+ align-items: center;
96
+ justify-content: center;
97
+ width: 24px;
98
+ height: 24px;
99
+ border-radius: 50%;
100
+ font-size: 10px;
101
+ font-weight: 800;
102
+ color: #0a0a0a;
103
+ letter-spacing: 0.02em;
104
+ }
105
+
106
+ .CollaboratorsPanel_avatarName__ew_BR {
107
+ font-size: 12px;
108
+ font-weight: 600;
109
+ color: var(--text-primary);
110
+ }
111
+
112
+ .CollaboratorsPanel_removeBtn__QA06p {
113
+ border: none;
114
+ background: transparent;
115
+ color: var(--text-muted);
116
+ font-size: 14px;
117
+ line-height: 1;
118
+ cursor: pointer;
119
+ padding: 0 0 0 2px;
120
+ }
121
+
122
+ .CollaboratorsPanel_removeBtn__QA06p:hover {
123
+ color: #ff9a9a;
124
+ }
125
+
126
+ .CollaboratorsPanel_addChip__pb9cs {
127
+ display: inline-flex;
128
+ align-items: center;
129
+ justify-content: center;
130
+ width: 32px;
131
+ height: 32px;
132
+ border-radius: 50%;
133
+ border: 1px dashed var(--color-border);
134
+ background: transparent;
135
+ color: var(--text-secondary);
136
+ font-size: 16px;
137
+ font-weight: 700;
138
+ cursor: pointer;
139
+ }
140
+
141
+ .CollaboratorsPanel_addChip__pb9cs:hover {
142
+ color: var(--text-primary);
143
+ border-color: var(--text-secondary);
144
+ }
145
+
146
+ .CollaboratorsPanel_addRow__2feKW {
147
+ display: flex;
148
+ gap: 8px;
149
+ margin-top: 10px;
150
+ }
151
+
152
+ .CollaboratorsPanel_input__V2ej6 {
153
+ flex: 1;
154
+ padding: 8px 10px;
155
+ border-radius: 6px;
156
+ border: 1px solid var(--color-border);
157
+ background: var(--color-surface-1);
158
+ color: var(--text-primary);
159
+ font-size: 13px;
160
+ }
161
+
162
+ .CollaboratorsPanel_addBtn__5Iu7r {
163
+ padding: 8px 12px;
164
+ border-radius: 6px;
165
+ border: 1px solid var(--color-border);
166
+ background: rgba(255, 255, 255, 0.06);
167
+ color: var(--text-primary);
168
+ font-size: 12px;
169
+ font-weight: 600;
170
+ cursor: pointer;
171
+ }
172
+
173
+ .CollaboratorsPanel_addBtn__5Iu7r:disabled {
174
+ opacity: 0.4;
175
+ cursor: not-allowed;
176
+ }
177
+
178
+ /*!***********************************************************************************************************************************************************************************************************************************************************************************!*\
179
+ !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[3]!./src/components/ContextMemory.module.css ***!
180
+ \***********************************************************************************************************************************************************************************************************************************************************************************/
181
+ .ContextMemory_panel__FaYj6 {
182
+ height: 100%;
183
+ display: flex;
184
+ flex-direction: column;
185
+ overflow: hidden;
186
+ }
187
+
188
+ .ContextMemory_count__YpPRB {
189
+ margin-left: auto;
190
+ color: var(--text-secondary);
191
+ font-weight: normal;
192
+ text-transform: none;
193
+ letter-spacing: 0;
194
+ float: right;
195
+ }
196
+
197
+ .ContextMemory_treeContainer__t2_cx {
198
+ flex-grow: 1;
199
+ overflow-y: auto;
200
+ font-size: 11px;
201
+ line-height: 1.6;
202
+ color: var(--text-secondary);
203
+ }
204
+
205
+ .ContextMemory_treeRoot__CprD6 {
206
+ font-weight: 700;
207
+ color: var(--text-primary);
208
+ margin-bottom: 4px;
209
+ }
210
+
211
+ .ContextMemory_treeNode__ino71 {
212
+ margin-left: 12px;
213
+ border-left: 1px solid var(--color-border);
214
+ padding-left: 8px;
215
+ }
216
+
217
+ .ContextMemory_nodeHeader__qvo4m {
218
+ display: flex;
219
+ align-items: center;
220
+ gap: 6px;
221
+ cursor: pointer;
222
+ padding: 2px 0;
223
+ }
224
+
225
+ .ContextMemory_nodeHeader__qvo4m:hover .ContextMemory_nodeName__0nQLV {
226
+ color: var(--text-primary);
227
+ }
228
+
229
+ .ContextMemory_nodeName__0nQLV {
230
+ color: var(--text-secondary);
231
+ }
232
+
233
+ .ContextMemory_icon__EZmD4 {
234
+ font-size: 12px;
235
+ opacity: 0.8;
236
+ width: 12px;
237
+ }
238
+
239
+ .ContextMemory_nodeChildren__PN3M5 {
240
+ margin-left: 14px;
241
+ border-left: 1px solid rgba(255, 255, 255, 0.05);
242
+ padding-left: 8px;
243
+ margin-top: 2px;
244
+ margin-bottom: 4px;
245
+ }
246
+
247
+ .ContextMemory_childNode___Kg4k {
248
+ display: flex;
249
+ gap: 8px;
250
+ padding: 2px 0;
251
+ }
252
+
253
+ .ContextMemory_childKey__kh8MV {
254
+ color: var(--color-active);
255
+ }
256
+
257
+ .ContextMemory_childValue__EHANj {
258
+ color: var(--text-primary);
259
+ }
260
+
261
+ /*!**********************************************************************************************************************************************************************************************************************************************************************************!*\
262
+ !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[3]!./src/components/GlobalHeader.module.css ***!
263
+ \**********************************************************************************************************************************************************************************************************************************************************************************/
264
+ .GlobalHeader_header__6Nhx4 {
265
+ height: 56px;
266
+ background-color: var(--color-surface-2);
267
+ border-bottom: 1px solid var(--color-border);
268
+ display: flex;
269
+ align-items: center;
270
+ justify-content: space-between;
271
+ padding: 0 16px;
272
+ flex-shrink: 0;
273
+ }
274
+
275
+ .GlobalHeader_left__l81hZ, .GlobalHeader_center__Jo1j6, .GlobalHeader_right__dbbkd {
276
+ display: flex;
277
+ align-items: center;
278
+ gap: 16px;
279
+ }
280
+
281
+ .GlobalHeader_logo__dWvxe {
282
+ font-weight: 900;
283
+ letter-spacing: 0.1em;
284
+ font-size: 14px;
285
+ display: flex;
286
+ align-items: center;
287
+ gap: 0;
288
+ }
289
+
290
+ .GlobalHeader_projectDropdown__LvSl0 {
291
+ background: var(--color-surface-3);
292
+ padding: 4px 12px;
293
+ border-radius: 4px;
294
+ font-size: 13px;
295
+ cursor: pointer;
296
+ border: 1px solid var(--color-border);
297
+ }
298
+
299
+ .GlobalHeader_arrow__WveSF {
300
+ font-size: 10px;
301
+ margin-left: 8px;
302
+ opacity: 0.5;
303
+ }
304
+
305
+ .GlobalHeader_teammatesOnline__5ExDt {
306
+ display: flex;
307
+ margin-left: 16px;
308
+ gap: -8px;
309
+ }
310
+
311
+ .GlobalHeader_avatarMini__JNpkh {
312
+ width: 24px;
313
+ height: 24px;
314
+ border-radius: 50%;
315
+ display: flex;
316
+ align-items: center;
317
+ justify-content: center;
318
+ font-size: 11px;
319
+ font-weight: bold;
320
+ border: 2px solid var(--color-surface-2);
321
+ margin-left: -6px;
322
+ color: #000000;
323
+ }
324
+
325
+ .GlobalHeader_bgPony__MnZ5c { background-color: var(--color-active); }
326
+ .GlobalHeader_bgUnnath__inT9H { background-color: var(--color-success); }
327
+ .GlobalHeader_bgArjun__rOGTd { background-color: rgba(255, 255, 255, 0.62); }
328
+
329
+ .GlobalHeader_inviteBtn__320g8 {
330
+ background: transparent;
331
+ border: 1px dashed var(--color-border);
332
+ color: var(--text-secondary);
333
+ border-radius: 4px;
334
+ padding: 4px 8px;
335
+ font-size: 12px;
336
+ cursor: pointer;
337
+ }
338
+ .GlobalHeader_inviteBtn__320g8:hover {
339
+ color: var(--text-primary);
340
+ border-color: var(--text-secondary);
341
+ }
342
+
343
+ .GlobalHeader_stats__G4II1 {
344
+ display: flex;
345
+ gap: 16px;
346
+ font-size: 12px;
347
+ color: var(--text-secondary);
348
+ }
349
+
350
+ .GlobalHeader_stats__G4II1 strong {
351
+ color: var(--text-primary);
352
+ }
353
+
354
+ .GlobalHeader_dropdownMenu__g8s7S {
355
+ position: absolute;
356
+ top: 100%;
357
+ left: 0;
358
+ margin-top: 6px;
359
+ min-width: 220px;
360
+ background: var(--color-surface-2);
361
+ border: 1px solid var(--color-border);
362
+ border-radius: 6px;
363
+ z-index: 50;
364
+ overflow: hidden;
365
+ }
366
+
367
+ .GlobalHeader_dropdownItem__zNgIT {
368
+ padding: 8px 12px;
369
+ font-size: 13px;
370
+ cursor: pointer;
371
+ color: var(--text-secondary);
372
+ }
373
+
374
+ .GlobalHeader_dropdownItem__zNgIT[data-active] {
375
+ color: var(--text-primary);
376
+ background: rgba(255, 255, 255, 0.06);
377
+ }
378
+
379
+ .GlobalHeader_dropdownAdd__PdSP4 {
380
+ padding: 8px 12px;
381
+ font-size: 13px;
382
+ cursor: pointer;
383
+ color: var(--text-secondary);
384
+ border-top: 1px solid var(--color-border);
385
+ }
386
+
387
+ .GlobalHeader_syncBtn__02GDD {
388
+ font-size: 12px;
389
+ font-weight: 600;
390
+ padding: 6px 12px;
391
+ border-radius: 6px;
392
+ border: 1px solid var(--color-border);
393
+ background: transparent;
394
+ color: var(--text-primary);
395
+ cursor: pointer;
396
+ }
397
+
398
+ .GlobalHeader_syncBtn__02GDD:disabled {
399
+ opacity: 0.5;
400
+ cursor: not-allowed;
401
+ }
402
+
403
+ .GlobalHeader_statusPill__PhBxR {
404
+ display: flex;
405
+ align-items: center;
406
+ gap: 6px;
407
+ font-size: 12px;
408
+ color: var(--text-secondary);
409
+ }
410
+
411
+ .GlobalHeader_statusDot__LeGV0 {
412
+ width: 8px;
413
+ height: 8px;
414
+ border-radius: 50%;
415
+ background: var(--text-muted);
416
+ }
417
+
418
+ .GlobalHeader_statusDot__LeGV0[data-live] {
419
+ background: var(--color-success);
420
+ box-shadow: 0 0 6px var(--color-success);
421
+ }
422
+
423
+ .GlobalHeader_settingsBtn__3ldv4 {
424
+ background: none;
425
+ border: none;
426
+ color: var(--text-secondary);
427
+ cursor: pointer;
428
+ }
429
+
430
+ /*!**************************************************************************************************************************************************************************************************************************************************************************************!*\
431
+ !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[3]!./src/components/ActivityTimeline.module.css ***!
432
+ \**************************************************************************************************************************************************************************************************************************************************************************************/
433
+ .ActivityTimeline_root__1Ausx {
434
+ display: flex;
435
+ flex: 1;
436
+ min-height: 0;
437
+ overflow: hidden;
438
+ }
439
+
440
+ .ActivityTimeline_nav__4nfHc {
441
+ width: 260px;
442
+ flex-shrink: 0;
443
+ border-right: 1px solid var(--color-border);
444
+ background: var(--color-surface-2);
445
+ overflow-y: auto;
446
+ padding: 12px 8px;
447
+ }
448
+
449
+ .ActivityTimeline_navAgent__Pjp9F {
450
+ margin-bottom: 16px;
451
+ }
452
+
453
+ .ActivityTimeline_navAgentHead__pHBZk {
454
+ display: flex;
455
+ align-items: center;
456
+ gap: 8px;
457
+ font-size: 11px;
458
+ font-weight: 700;
459
+ letter-spacing: 0.06em;
460
+ text-transform: uppercase;
461
+ color: var(--text-secondary);
462
+ padding: 4px 8px 8px;
463
+ }
464
+
465
+ .ActivityTimeline_navLogo__oKNLh {
466
+ width: 18px;
467
+ height: 18px;
468
+ object-fit: contain;
469
+ border-radius: 4px;
470
+ }
471
+
472
+ .ActivityTimeline_navCount__q232x {
473
+ margin-left: auto;
474
+ font-size: 10px;
475
+ color: var(--text-muted);
476
+ font-weight: 600;
477
+ }
478
+
479
+ .ActivityTimeline_navItem__AOQUD {
480
+ display: flex;
481
+ flex-direction: column;
482
+ gap: 2px;
483
+ width: 100%;
484
+ text-align: left;
485
+ border: none;
486
+ background: transparent;
487
+ border-radius: 8px;
488
+ padding: 8px 10px;
489
+ cursor: pointer;
490
+ transition: background 0.15s ease;
491
+ }
492
+
493
+ .ActivityTimeline_navItem__AOQUD:hover {
494
+ background: rgba(255, 255, 255, 0.04);
495
+ }
496
+
497
+ .ActivityTimeline_navItemActive__1iR_g {
498
+ background: rgba(255, 255, 255, 0.08);
499
+ box-shadow: inset 2px 0 0 var(--color-active);
500
+ }
501
+
502
+ .ActivityTimeline_navItemLabel__JUlEV {
503
+ font-size: 12px;
504
+ color: var(--text-primary);
505
+ line-height: 1.4;
506
+ display: -webkit-box;
507
+ -webkit-line-clamp: 2;
508
+ -webkit-box-orient: vertical;
509
+ overflow: hidden;
510
+ }
511
+
512
+ .ActivityTimeline_navItemTime__bxT3c {
513
+ font-size: 10px;
514
+ color: var(--text-muted);
515
+ }
516
+
517
+ .ActivityTimeline_main__8N55I {
518
+ flex: 1;
519
+ display: flex;
520
+ flex-direction: column;
521
+ min-width: 0;
522
+ min-height: 0;
523
+ }
524
+
525
+ .ActivityTimeline_filters__etU0X {
526
+ display: flex;
527
+ flex-wrap: wrap;
528
+ gap: 6px;
529
+ padding: 12px 16px;
530
+ border-bottom: 1px solid var(--color-border);
531
+ }
532
+
533
+ .ActivityTimeline_chip__mTQ9b {
534
+ font-size: 11px;
535
+ font-weight: 600;
536
+ padding: 5px 12px;
537
+ border-radius: 999px;
538
+ border: 1px solid var(--color-border);
539
+ background: transparent;
540
+ color: var(--text-secondary);
541
+ cursor: pointer;
542
+ }
543
+
544
+ .ActivityTimeline_chipActive__pKulL {
545
+ background: rgba(255, 255, 255, 0.08);
546
+ color: var(--text-primary);
547
+ border-color: rgba(255, 255, 255, 0.16);
548
+ }
549
+
550
+ .ActivityTimeline_feed__Mu_L8 {
551
+ flex: 1;
552
+ overflow-y: auto;
553
+ padding: 16px 20px 32px;
554
+ }
555
+
556
+ .ActivityTimeline_agentSection__ThgsD {
557
+ margin-bottom: 28px;
558
+ }
559
+
560
+ .ActivityTimeline_agentHeader__c0lhS {
561
+ display: flex;
562
+ align-items: center;
563
+ gap: 10px;
564
+ font-size: 14px;
565
+ font-weight: 700;
566
+ margin-bottom: 14px;
567
+ padding-bottom: 10px;
568
+ border-bottom: 1px solid var(--color-border);
569
+ position: sticky;
570
+ top: 0;
571
+ background: linear-gradient(var(--color-surface-1), rgba(0, 0, 0, 0.92));
572
+ z-index: 2;
573
+ }
574
+
575
+ .ActivityTimeline_agentLogo__QqvCc {
576
+ width: 24px;
577
+ height: 24px;
578
+ object-fit: contain;
579
+ }
580
+
581
+ .ActivityTimeline_agentHeaderCount__7UyFg {
582
+ margin-left: auto;
583
+ font-size: 11px;
584
+ font-weight: 500;
585
+ color: var(--text-muted);
586
+ }
587
+
588
+ .ActivityTimeline_segment__zjs8x {
589
+ margin-bottom: 20px;
590
+ scroll-margin-top: 56px;
591
+ }
592
+
593
+ .ActivityTimeline_segmentHead__HewW2 {
594
+ display: flex;
595
+ align-items: baseline;
596
+ justify-content: space-between;
597
+ gap: 12px;
598
+ margin-bottom: 10px;
599
+ }
600
+
601
+ .ActivityTimeline_segmentLabel__v8Sa0 {
602
+ font-size: 13px;
603
+ font-weight: 600;
604
+ color: var(--text-primary);
605
+ }
606
+
607
+ .ActivityTimeline_segmentTime__UKdRE {
608
+ font-size: 10px;
609
+ color: var(--text-muted);
610
+ flex-shrink: 0;
611
+ }
612
+
613
+ .ActivityTimeline_segmentBody__HPIny {
614
+ display: flex;
615
+ flex-direction: column;
616
+ gap: 10px;
617
+ padding-left: 12px;
618
+ border-left: 2px solid var(--color-border);
619
+ }
620
+
621
+ .ActivityTimeline_messageBlock__PC_dL {
622
+ border-radius: 8px;
623
+ padding: 10px 12px;
624
+ border: 1px solid var(--color-border);
625
+ }
626
+
627
+ .ActivityTimeline_messageUser__A3uRe {
628
+ background: rgba(92, 158, 255, 0.08);
629
+ border-color: rgba(92, 158, 255, 0.25);
630
+ }
631
+
632
+ .ActivityTimeline_messageAgent__YgFwz {
633
+ background: rgba(34, 208, 122, 0.06);
634
+ border-color: rgba(34, 208, 122, 0.2);
635
+ }
636
+
637
+ .ActivityTimeline_messageRole__Vsgi0 {
638
+ font-size: 10px;
639
+ font-weight: 700;
640
+ text-transform: uppercase;
641
+ letter-spacing: 0.06em;
642
+ color: var(--text-muted);
643
+ margin-bottom: 6px;
644
+ }
645
+
646
+ .ActivityTimeline_messageText__WCrXD {
647
+ font-size: 13px;
648
+ line-height: 1.65;
649
+ color: var(--text-primary);
650
+ white-space: pre-wrap;
651
+ word-break: break-word;
652
+ }
653
+
654
+ .ActivityTimeline_editBlock__fJ_Eo {
655
+ background: rgba(255, 184, 92, 0.06);
656
+ border: 1px solid rgba(255, 184, 92, 0.22);
657
+ border-radius: 8px;
658
+ padding: 10px 12px;
659
+ }
660
+
661
+ .ActivityTimeline_editFile__3wFkn {
662
+ font-family: var(--font-mono), monospace;
663
+ font-size: 12px;
664
+ color: #ffb85c;
665
+ margin-bottom: 4px;
666
+ }
667
+
668
+ .ActivityTimeline_editSummary__HvSyr {
669
+ font-size: 12px;
670
+ color: var(--text-secondary);
671
+ margin-bottom: 8px;
672
+ }
673
+
674
+ .ActivityTimeline_diff__x21Y_ {
675
+ font-size: 11px;
676
+ line-height: 1.5;
677
+ background: var(--color-surface-1);
678
+ border-radius: 6px;
679
+ padding: 8px;
680
+ max-height: 280px;
681
+ overflow: auto;
682
+ margin: 0;
683
+ }
684
+
685
+ .ActivityTimeline_diffAdd__zg8OR {
686
+ color: var(--color-success);
687
+ }
688
+
689
+ .ActivityTimeline_diffDel__Fy1Zx {
690
+ color: #ff9a9a;
691
+ }
692
+
693
+ .ActivityTimeline_empty__mxesl {
694
+ flex: 1;
695
+ display: flex;
696
+ flex-direction: column;
697
+ align-items: center;
698
+ justify-content: center;
699
+ gap: 12px;
700
+ color: var(--text-muted);
701
+ padding: 48px 24px;
702
+ text-align: center;
703
+ }
704
+
705
+ .ActivityTimeline_emptyIcon__rcI61 {
706
+ font-size: 40px;
707
+ opacity: 0.4;
708
+ }
709
+
710
+ .ActivityTimeline_empty__mxesl p {
711
+ max-width: 360px;
712
+ line-height: 1.6;
713
+ font-size: 13px;
714
+ }
715
+
716
+ /*!**************************************************************************************************************************************************************************************************************************************************************************************!*\
717
+ !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[3]!./src/components/AgentSessionChat.module.css ***!
718
+ \**************************************************************************************************************************************************************************************************************************************************************************************/
719
+ .AgentSessionChat_root___FT6B {
720
+ display: flex;
721
+ flex-direction: column;
722
+ flex: 1;
723
+ min-height: 0;
724
+ overflow: hidden;
725
+ }
726
+
727
+ .AgentSessionChat_banner__k8z8s {
728
+ margin: 12px 16px 0;
729
+ padding: 10px 12px;
730
+ border-radius: 8px;
731
+ border: 1px solid var(--color-border);
732
+ background: rgba(139, 92, 246, 0.08);
733
+ font-size: 12px;
734
+ line-height: 1.5;
735
+ color: var(--text-secondary);
736
+ }
737
+
738
+ .AgentSessionChat_banner__k8z8s strong {
739
+ color: var(--text-primary);
740
+ }
741
+
742
+ .AgentSessionChat_metaRow__LGjsN {
743
+ display: flex;
744
+ align-items: center;
745
+ gap: 12px;
746
+ padding: 8px 16px;
747
+ border-bottom: 1px solid var(--color-border);
748
+ font-size: 11px;
749
+ color: var(--text-muted);
750
+ }
751
+
752
+ .AgentSessionChat_metaLabel__miA5w {
753
+ display: inline-flex;
754
+ align-items: center;
755
+ gap: 6px;
756
+ }
757
+
758
+ .AgentSessionChat_select__Fc7MP {
759
+ padding: 4px 8px;
760
+ border-radius: 4px;
761
+ border: 1px solid var(--color-border);
762
+ background: var(--color-surface-1);
763
+ color: var(--text-primary);
764
+ font-size: 11px;
765
+ }
766
+
767
+ .AgentSessionChat_metaHint__9FyJa {
768
+ margin-left: auto;
769
+ }
770
+
771
+ .AgentSessionChat_messages__itsP6 {
772
+ flex: 1;
773
+ overflow-y: auto;
774
+ padding: 16px;
775
+ display: flex;
776
+ flex-direction: column;
777
+ gap: 10px;
778
+ }
779
+
780
+ .AgentSessionChat_empty__krHti {
781
+ color: var(--text-muted);
782
+ font-size: 13px;
783
+ line-height: 1.6;
784
+ text-align: center;
785
+ padding: 32px 16px;
786
+ }
787
+
788
+ .AgentSessionChat_msg__rgPMD {
789
+ background: var(--color-surface-2);
790
+ border: 1px solid var(--color-border);
791
+ border-radius: 10px;
792
+ padding: 10px 12px;
793
+ }
794
+
795
+ .AgentSessionChat_msgSystem__5RMPf {
796
+ border-color: rgba(139, 92, 246, 0.35);
797
+ background: rgba(139, 92, 246, 0.06);
798
+ }
799
+
800
+ .AgentSessionChat_msgMeta__hs3EH {
801
+ display: flex;
802
+ align-items: center;
803
+ gap: 8px;
804
+ font-size: 11px;
805
+ font-weight: 600;
806
+ color: var(--text-primary);
807
+ margin-bottom: 6px;
808
+ }
809
+
810
+ .AgentSessionChat_msgAgent__DzQt5 {
811
+ color: var(--color-active);
812
+ font-weight: 500;
813
+ }
814
+
815
+ .AgentSessionChat_msgTime__fRULS {
816
+ margin-left: auto;
817
+ font-weight: 400;
818
+ color: var(--text-muted);
819
+ }
820
+
821
+ .AgentSessionChat_msgText__KVUbW {
822
+ font-size: 13px;
823
+ line-height: 1.55;
824
+ color: var(--text-secondary);
825
+ white-space: pre-wrap;
826
+ }
827
+
828
+ .AgentSessionChat_mention__xF8p0 {
829
+ font-weight: 700;
830
+ }
831
+
832
+ .AgentSessionChat_compose__FrlEr {
833
+ position: relative;
834
+ display: flex;
835
+ gap: 10px;
836
+ padding: 12px 16px;
837
+ border-top: 1px solid var(--color-border);
838
+ background: var(--color-surface-2);
839
+ }
840
+
841
+ .AgentSessionChat_mentionPopup__w_TQW {
842
+ position: absolute;
843
+ left: 16px;
844
+ right: 16px;
845
+ bottom: 100%;
846
+ margin-bottom: 8px;
847
+ display: flex;
848
+ flex-direction: column;
849
+ gap: 2px;
850
+ padding: 6px;
851
+ border-radius: 8px;
852
+ border: 1px solid var(--color-border);
853
+ background: var(--color-surface-1);
854
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
855
+ max-height: 200px;
856
+ overflow-y: auto;
857
+ }
858
+
859
+ .AgentSessionChat_mentionItem__a_dRn {
860
+ display: flex;
861
+ align-items: center;
862
+ gap: 8px;
863
+ width: 100%;
864
+ padding: 6px 8px;
865
+ border: none;
866
+ border-radius: 6px;
867
+ background: transparent;
868
+ color: var(--text-secondary);
869
+ font-size: 12px;
870
+ font-weight: 600;
871
+ cursor: pointer;
872
+ text-align: left;
873
+ }
874
+
875
+ .AgentSessionChat_mentionItem__a_dRn:hover,
876
+ .AgentSessionChat_mentionItemActive___f6Ql {
877
+ background: rgba(255, 255, 255, 0.06);
878
+ color: var(--text-primary);
879
+ }
880
+
881
+ .AgentSessionChat_mentionLogo__lH3kY {
882
+ width: 16px;
883
+ height: 16px;
884
+ object-fit: contain;
885
+ }
886
+
887
+ .AgentSessionChat_mentionLabel__ePxiq {
888
+ flex: 1;
889
+ }
890
+
891
+ .AgentSessionChat_mentionStatus__MbDgj {
892
+ font-size: 9px;
893
+ text-transform: uppercase;
894
+ letter-spacing: 0.05em;
895
+ font-weight: 700;
896
+ color: var(--text-muted);
897
+ }
898
+
899
+ .AgentSessionChat_status_connected__cdn_x {
900
+ color: #6ee7b7;
901
+ }
902
+
903
+ .AgentSessionChat_status_handshaking__lEH_5 {
904
+ color: #fcd34d;
905
+ }
906
+
907
+ .AgentSessionChat_status_error__dmYY_ {
908
+ color: #f87171;
909
+ }
910
+
911
+ .AgentSessionChat_input__fint9 {
912
+ flex: 1;
913
+ resize: none;
914
+ padding: 10px 12px;
915
+ border-radius: 8px;
916
+ border: 1px solid var(--color-border);
917
+ background: var(--color-surface-1);
918
+ color: var(--text-primary);
919
+ font-size: 13px;
920
+ font-family: inherit;
921
+ }
922
+
923
+ .AgentSessionChat_sendBtn__WvFAG {
924
+ align-self: flex-end;
925
+ padding: 10px 16px;
926
+ border-radius: 8px;
927
+ border: 1px solid var(--color-border);
928
+ background: rgba(255, 255, 255, 0.08);
929
+ color: var(--text-primary);
930
+ font-size: 12px;
931
+ font-weight: 600;
932
+ cursor: pointer;
933
+ }
934
+
935
+ .AgentSessionChat_sendBtn__WvFAG:disabled {
936
+ opacity: 0.4;
937
+ cursor: not-allowed;
938
+ }
939
+
940
+ /*!**************************************************************************************************************************************************************************************************************************************************************************************!*\
941
+ !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[3]!./src/components/ProjectDashboard.module.css ***!
942
+ \**************************************************************************************************************************************************************************************************************************************************************************************/
943
+ .ProjectDashboard_root__ptEWN {
944
+ display: flex;
945
+ flex-direction: column;
946
+ flex: 1;
947
+ min-height: 0;
948
+ overflow: hidden;
949
+ }
950
+
951
+ .ProjectDashboard_toolbar__icZTP {
952
+ display: flex;
953
+ align-items: center;
954
+ justify-content: space-between;
955
+ gap: 12px;
956
+ padding: 10px 16px;
957
+ border-bottom: 1px solid var(--color-border);
958
+ background: var(--color-surface-2);
959
+ }
960
+
961
+ .ProjectDashboard_tabs__9fnVA {
962
+ display: flex;
963
+ gap: 4px;
964
+ background: var(--color-surface-1);
965
+ border: 1px solid var(--color-border);
966
+ border-radius: 999px;
967
+ padding: 4px;
968
+ }
969
+
970
+ .ProjectDashboard_tab__T4_TD {
971
+ border: none;
972
+ background: transparent;
973
+ color: var(--text-secondary);
974
+ font-size: 12px;
975
+ font-weight: 600;
976
+ padding: 7px 14px;
977
+ border-radius: 999px;
978
+ cursor: pointer;
979
+ }
980
+
981
+ .ProjectDashboard_tabActive__7_Skg {
982
+ background: rgba(255, 255, 255, 0.08);
983
+ color: var(--text-primary);
984
+ }
985
+
986
+ .ProjectDashboard_syncBtn__uFIvg {
987
+ font-size: 12px;
988
+ font-weight: 600;
989
+ padding: 8px 14px;
990
+ border-radius: 8px;
991
+ border: 1px solid var(--color-border);
992
+ background: transparent;
993
+ color: var(--text-primary);
994
+ cursor: pointer;
995
+ }
996
+
997
+ .ProjectDashboard_syncBtn__uFIvg:disabled {
998
+ opacity: 0.5;
999
+ cursor: not-allowed;
1000
+ }
1001
+
1002
+ .ProjectDashboard_body__7TWFU {
1003
+ flex: 1;
1004
+ min-height: 0;
1005
+ display: flex;
1006
+ flex-direction: column;
1007
+ overflow: hidden;
1008
+ }
1009
+
1010
+ .ProjectDashboard_empty__1H524 {
1011
+ flex: 1;
1012
+ display: grid;
1013
+ place-items: center;
1014
+ color: var(--text-muted);
1015
+ font-size: 13px;
1016
+ padding: 32px;
1017
+ text-align: center;
1018
+ }
1019
+
1020
+ .ProjectDashboard_editsList__YPsbL {
1021
+ flex: 1;
1022
+ overflow-y: auto;
1023
+ padding: 16px 20px;
1024
+ display: flex;
1025
+ flex-direction: column;
1026
+ gap: 10px;
1027
+ }
1028
+
1029
+ .ProjectDashboard_editCard__G8EuO {
1030
+ background: var(--color-surface-2);
1031
+ border: 1px solid var(--color-border);
1032
+ border-radius: 8px;
1033
+ padding: 10px 12px;
1034
+ }
1035
+
1036
+ .ProjectDashboard_editSummary__s0659 {
1037
+ display: flex;
1038
+ align-items: center;
1039
+ gap: 10px;
1040
+ cursor: pointer;
1041
+ list-style: none;
1042
+ }
1043
+
1044
+ .ProjectDashboard_editSummary__s0659::-webkit-details-marker {
1045
+ display: none;
1046
+ }
1047
+
1048
+ .ProjectDashboard_editLogo__wV0Ud {
1049
+ width: 20px;
1050
+ height: 20px;
1051
+ object-fit: contain;
1052
+ }
1053
+
1054
+ .ProjectDashboard_editFile__VuMX1 {
1055
+ font-family: var(--font-mono), monospace;
1056
+ font-size: 12px;
1057
+ color: #ffb85c;
1058
+ flex: 1;
1059
+ }
1060
+
1061
+ .ProjectDashboard_editTime__WGtNE {
1062
+ font-size: 10px;
1063
+ color: var(--text-muted);
1064
+ }
1065
+
1066
+ .ProjectDashboard_editMeta__TGG3b {
1067
+ font-size: 12px;
1068
+ color: var(--text-secondary);
1069
+ margin: 8px 0;
1070
+ }
1071
+
1072
+ .ProjectDashboard_diff__1p6BL {
1073
+ font-size: 11px;
1074
+ line-height: 1.5;
1075
+ background: var(--color-surface-1);
1076
+ border-radius: 6px;
1077
+ padding: 8px;
1078
+ overflow: auto;
1079
+ max-height: 240px;
1080
+ }
1081
+
1082
+ .ProjectDashboard_memoryLayout__N60Bm {
1083
+ flex: 1;
1084
+ display: flex;
1085
+ flex-direction: column;
1086
+ min-height: 0;
1087
+ overflow: hidden;
1088
+ }
1089
+
1090
+ .ProjectDashboard_irTabs__zgMTW {
1091
+ display: flex;
1092
+ flex-wrap: wrap;
1093
+ gap: 6px;
1094
+ padding: 12px 16px;
1095
+ border-bottom: 1px solid var(--color-border);
1096
+ }
1097
+
1098
+ .ProjectDashboard_irTab__c8Nwz {
1099
+ font-size: 11px;
1100
+ font-weight: 600;
1101
+ padding: 6px 12px;
1102
+ border-radius: 6px;
1103
+ border: 1px solid var(--color-border);
1104
+ background: var(--color-surface-2);
1105
+ color: var(--text-secondary);
1106
+ cursor: pointer;
1107
+ }
1108
+
1109
+ .ProjectDashboard_irTabActive___I7Bt {
1110
+ background: rgba(255, 255, 255, 0.08);
1111
+ color: var(--text-primary);
1112
+ }
1113
+
1114
+ .ProjectDashboard_memoryGrid__sud4o {
1115
+ flex: 1;
1116
+ display: grid;
1117
+ grid-template-columns: 1fr 1fr;
1118
+ gap: 12px;
1119
+ padding: 16px;
1120
+ min-height: 0;
1121
+ overflow: hidden;
1122
+ }
1123
+
1124
+ .ProjectDashboard_memoryCard__MatPq {
1125
+ display: flex;
1126
+ flex-direction: column;
1127
+ min-height: 0;
1128
+ background: var(--color-surface-2);
1129
+ border: 1px solid var(--color-border);
1130
+ border-radius: 10px;
1131
+ overflow: hidden;
1132
+ }
1133
+
1134
+ .ProjectDashboard_cardTitle__gKIfC {
1135
+ font-size: 11px;
1136
+ font-weight: 700;
1137
+ letter-spacing: 0.08em;
1138
+ text-transform: uppercase;
1139
+ color: var(--text-muted);
1140
+ padding: 12px 14px;
1141
+ border-bottom: 1px solid var(--color-border);
1142
+ }
1143
+
1144
+ .ProjectDashboard_md__VZ6QF {
1145
+ flex: 1;
1146
+ margin: 0;
1147
+ padding: 14px;
1148
+ font-size: 12px;
1149
+ line-height: 1.65;
1150
+ color: var(--text-secondary);
1151
+ white-space: pre-wrap;
1152
+ word-break: break-word;
1153
+ overflow-y: auto;
1154
+ font-family: var(--font-inter), sans-serif;
1155
+ }
1156
+
1157
+ .ProjectDashboard_settings__uDzpL {
1158
+ flex: 1;
1159
+ overflow-y: auto;
1160
+ padding: 20px;
1161
+ display: grid;
1162
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
1163
+ gap: 14px;
1164
+ align-content: start;
1165
+ }
1166
+
1167
+ .ProjectDashboard_settingsCard___550C {
1168
+ background: var(--color-surface-2);
1169
+ border: 1px solid var(--color-border);
1170
+ border-radius: 10px;
1171
+ padding: 14px;
1172
+ }
1173
+
1174
+ .ProjectDashboard_settingsRow__0sFE_ {
1175
+ display: flex;
1176
+ justify-content: space-between;
1177
+ gap: 12px;
1178
+ font-size: 13px;
1179
+ margin-top: 10px;
1180
+ color: var(--text-secondary);
1181
+ }
1182
+
1183
+ .ProjectDashboard_settingsRow__0sFE_ strong {
1184
+ color: var(--text-primary);
1185
+ text-align: right;
1186
+ }
1187
+
1188
+ .ProjectDashboard_hint__8FXmQ {
1189
+ font-size: 12px;
1190
+ color: var(--text-muted);
1191
+ margin-top: 8px;
1192
+ line-height: 1.5;
1193
+ }
1194
+
1195
+ .ProjectDashboard_apiKey__i_kwp {
1196
+ display: block;
1197
+ margin-top: 10px;
1198
+ padding: 10px;
1199
+ background: var(--color-surface-1);
1200
+ border-radius: 6px;
1201
+ font-size: 11px;
1202
+ word-break: break-all;
1203
+ color: var(--color-active);
1204
+ }
1205
+
1206
+ @media (max-width: 900px) {
1207
+ .ProjectDashboard_memoryGrid__sud4o {
1208
+ grid-template-columns: 1fr;
1209
+ }
1210
+ }
1211
+
1212
+ /*!*************************************************************************************************************************************************************************************************************************************************************************************!*\
1213
+ !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[3]!./src/components/RelayBrainPanel.module.css ***!
1214
+ \*************************************************************************************************************************************************************************************************************************************************************************************/
1215
+ .RelayBrainPanel_panel__qi_ma {
1216
+ padding: 16px;
1217
+ display: flex;
1218
+ flex-direction: column;
1219
+ min-height: 280px;
1220
+ max-height: 420px;
1221
+ }
1222
+
1223
+ .RelayBrainPanel_header__quJl9 {
1224
+ display: flex;
1225
+ align-items: center;
1226
+ justify-content: space-between;
1227
+ gap: 8px;
1228
+ margin-bottom: 10px;
1229
+ }
1230
+
1231
+ .RelayBrainPanel_refreshBtn__bw6MQ {
1232
+ border: 1px solid var(--color-border);
1233
+ background: transparent;
1234
+ color: var(--text-secondary);
1235
+ border-radius: 6px;
1236
+ width: 28px;
1237
+ height: 28px;
1238
+ cursor: pointer;
1239
+ font-size: 14px;
1240
+ }
1241
+
1242
+ .RelayBrainPanel_refreshBtn__bw6MQ:disabled {
1243
+ opacity: 0.4;
1244
+ cursor: not-allowed;
1245
+ }
1246
+
1247
+ .RelayBrainPanel_hint__hhb4A {
1248
+ font-size: 12px;
1249
+ color: var(--text-muted);
1250
+ line-height: 1.55;
1251
+ margin-top: 8px;
1252
+ }
1253
+
1254
+ .RelayBrainPanel_tabs__qTMo0 {
1255
+ display: flex;
1256
+ gap: 4px;
1257
+ overflow-x: auto;
1258
+ border-bottom: 1px solid var(--color-border);
1259
+ margin-bottom: 8px;
1260
+ flex-shrink: 0;
1261
+ }
1262
+
1263
+ .RelayBrainPanel_tab__wsUyC {
1264
+ flex-shrink: 0;
1265
+ border: none;
1266
+ background: transparent;
1267
+ color: var(--text-secondary);
1268
+ font-size: 11px;
1269
+ font-weight: 600;
1270
+ cursor: pointer;
1271
+ padding: 6px 10px;
1272
+ border-bottom: 2px solid transparent;
1273
+ white-space: nowrap;
1274
+ }
1275
+
1276
+ .RelayBrainPanel_tab__wsUyC:hover {
1277
+ color: var(--text-primary);
1278
+ }
1279
+
1280
+ .RelayBrainPanel_tabActive__8ZATE {
1281
+ color: var(--text-primary);
1282
+ border-bottom-color: var(--color-active);
1283
+ }
1284
+
1285
+ .RelayBrainPanel_body__OkZSK {
1286
+ flex: 1;
1287
+ margin: 0;
1288
+ padding: 12px;
1289
+ font-size: 11px;
1290
+ line-height: 1.55;
1291
+ color: var(--text-secondary);
1292
+ white-space: pre-wrap;
1293
+ word-break: break-word;
1294
+ overflow-y: auto;
1295
+ border: 1px solid var(--color-border);
1296
+ border-radius: 8px;
1297
+ background: var(--color-surface-3);
1298
+ font-family: var(--font-inter), sans-serif;
1299
+ }
1300
+
1301
+ /*!*****************************************************************************************************************************************************************************************************************************************************************************!*\
1302
+ !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[3]!./src/components/Sidebar.module.css ***!
1303
+ \*****************************************************************************************************************************************************************************************************************************************************************************/
1304
+ .Sidebar_sidebar__v6daX {
1305
+ width: 260px;
1306
+ height: 100%;
1307
+ background-color: var(--color-surface-2);
1308
+ border-right: 1px solid var(--color-border);
1309
+ display: flex;
1310
+ flex-direction: column;
1311
+ padding: 16px 0;
1312
+ flex-shrink: 0;
1313
+ }
1314
+
1315
+ .Sidebar_sectionTitle__v71N0 {
1316
+ font-size: 10px;
1317
+ font-weight: 800;
1318
+ color: var(--text-secondary);
1319
+ padding: 0 16px;
1320
+ margin-bottom: 12px;
1321
+ letter-spacing: 1px;
1322
+ text-transform: uppercase;
1323
+ }
1324
+
1325
+ .Sidebar_integrationsList__Mz7R6 {
1326
+ display: flex;
1327
+ flex-direction: column;
1328
+ padding: 0 16px;
1329
+ gap: 8px;
1330
+ }
1331
+
1332
+ .Sidebar_initBtn__KkrCw {
1333
+ background: var(--color-surface-3);
1334
+ color: var(--text-primary);
1335
+ border: 1px solid var(--color-border);
1336
+ border-radius: 4px;
1337
+ padding: 8px 12px;
1338
+ font-size: 11px;
1339
+ font-weight: 600;
1340
+ cursor: pointer;
1341
+ transition: all 0.2s ease;
1342
+ text-align: left;
1343
+ display: flex;
1344
+ align-items: center;
1345
+ gap: 8px;
1346
+ }
1347
+
1348
+ .Sidebar_btnLogo__uEOD9 {
1349
+ width: 14px;
1350
+ height: 14px;
1351
+ object-fit: contain;
1352
+ filter: grayscale(1) brightness(1.5);
1353
+ transition: all 0.2s ease;
1354
+ }
1355
+
1356
+ .Sidebar_initBtn__KkrCw:hover .Sidebar_btnLogo__uEOD9 {
1357
+ filter: none;
1358
+ }
1359
+
1360
+ .Sidebar_initBtn__KkrCw:hover {
1361
+ background: var(--color-accent);
1362
+ color: white;
1363
+ border-color: var(--color-accent);
1364
+ }
1365
+
1366
+ .Sidebar_initHint__QUU2F {
1367
+ background: rgba(0, 0, 0, 0.2);
1368
+ padding: 8px;
1369
+ border-radius: 4px;
1370
+ font-size: 10px;
1371
+ color: var(--color-success);
1372
+ border: 1px solid var(--color-success);
1373
+ margin-top: 4px;
1374
+ line-height: 1.4;
1375
+ }
1376
+
1377
+ .Sidebar_initHint__QUU2F code {
1378
+ font-family: var(--font-mono);
1379
+ background: rgba(255, 255, 255, 0.1);
1380
+ padding: 2px 4px;
1381
+ border-radius: 2px;
1382
+ color: white;
1383
+ }
1384
+
1385
+ .Sidebar_spacerSmall__mF0_K {
1386
+ height: 24px;
1387
+ flex-shrink: 0;
1388
+ }
1389
+
1390
+ .Sidebar_teammatesList__3n2PV {
1391
+ display: flex;
1392
+ flex-direction: column;
1393
+ padding: 0 16px;
1394
+ gap: 12px;
1395
+ }
1396
+
1397
+ .Sidebar_teammateCard__mmkB2 {
1398
+ background: var(--color-surface-1);
1399
+ border: 1px solid var(--color-border);
1400
+ border-radius: 6px;
1401
+ padding: 12px;
1402
+ }
1403
+
1404
+ .Sidebar_profileIcon__7QzYq {
1405
+ width: 20px;
1406
+ height: 20px;
1407
+ border-radius: 50%;
1408
+ display: flex;
1409
+ align-items: center;
1410
+ justify-content: center;
1411
+ color: #000;
1412
+ font-weight: 800;
1413
+ font-size: 10px;
1414
+ flex-shrink: 0;
1415
+ }
1416
+
1417
+ .Sidebar_tmHeader__FKS6u {
1418
+ display: flex;
1419
+ align-items: center;
1420
+ gap: 8px;
1421
+ margin-bottom: 8px;
1422
+ }
1423
+
1424
+ .Sidebar_statusDot__paZ2a {
1425
+ width: 10px;
1426
+ height: 10px;
1427
+ border-radius: 50%;
1428
+ }
1429
+
1430
+ .Sidebar_green__WCM9A { background-color: var(--color-success); }
1431
+ .Sidebar_yellow__hNSP6 { background-color: var(--color-warning); }
1432
+ .Sidebar_grey__1o8nN { background-color: var(--text-muted); }
1433
+
1434
+ .Sidebar_tmName__W2MJw {
1435
+ font-weight: 600;
1436
+ color: var(--text-primary);
1437
+ font-size: 13px;
1438
+ }
1439
+
1440
+ .Sidebar_tmDetails__jPx0r {
1441
+ padding-left: 18px;
1442
+ display: flex;
1443
+ flex-direction: column;
1444
+ gap: 4px;
1445
+ }
1446
+
1447
+ .Sidebar_tmTool__TnKRI {
1448
+ font-size: 11px;
1449
+ color: var(--text-secondary);
1450
+ font-weight: 600;
1451
+ }
1452
+
1453
+ .Sidebar_tmFile__OMC_c {
1454
+ font-size: 11px;
1455
+ font-family: var(--font-mono);
1456
+ color: var(--text-muted);
1457
+ }
1458
+
1459
+ .Sidebar_tmMsg__1VjRS {
1460
+ font-size: 11px;
1461
+ color: var(--text-primary);
1462
+ font-style: italic;
1463
+ margin-top: 4px;
1464
+ }
1465
+
1466
+ .Sidebar_spacer__jN5qO {
1467
+ flex-grow: 1;
1468
+ }
1469
+
1470
+ .Sidebar_proposalsList__WgVAD {
1471
+ display: flex;
1472
+ flex-direction: column;
1473
+ padding: 0 16px;
1474
+ gap: 12px;
1475
+ }
1476
+
1477
+ .Sidebar_proposalItem__9R7rL {
1478
+ display: flex;
1479
+ gap: 8px;
1480
+ }
1481
+
1482
+ .Sidebar_proposalIcon__tvyeZ {
1483
+ font-size: 12px;
1484
+ flex-shrink: 0;
1485
+ margin-top: 2px;
1486
+ color: var(--text-secondary);
1487
+ }
1488
+
1489
+ .Sidebar_proposalContent__JZPfh {
1490
+ display: flex;
1491
+ flex-direction: column;
1492
+ gap: 2px;
1493
+ }
1494
+
1495
+ .Sidebar_proposalText__riGfH {
1496
+ font-size: 11px;
1497
+ color: var(--text-primary);
1498
+ line-height: 1.4;
1499
+ }
1500
+
1501
+ .Sidebar_proposalTime__ilapE {
1502
+ font-size: 10px;
1503
+ color: var(--text-muted);
1504
+ }
1505
+
1506
+ /*!*******************************************************************************************************************************************************************************************************************************************************************************!*\
1507
+ !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[3]!./src/components/TaskQueue.module.css ***!
1508
+ \*******************************************************************************************************************************************************************************************************************************************************************************/
1509
+ .TaskQueue_panel__data9 {
1510
+ height: 100%;
1511
+ display: flex;
1512
+ flex-direction: column;
1513
+ overflow: hidden;
1514
+ }
1515
+
1516
+ .TaskQueue_count__6rJ5_ {
1517
+ margin-left: auto;
1518
+ color: var(--text-secondary);
1519
+ font-weight: normal;
1520
+ text-transform: none;
1521
+ letter-spacing: 0;
1522
+ float: right;
1523
+ }
1524
+
1525
+ .TaskQueue_queueContainer__Z7t88 {
1526
+ flex-grow: 1;
1527
+ overflow-y: auto;
1528
+ display: flex;
1529
+ flex-direction: column;
1530
+ gap: 12px;
1531
+ padding-right: 4px;
1532
+ }
1533
+
1534
+ .TaskQueue_taskCard__S8JmH {
1535
+ background: var(--color-surface-2);
1536
+ border: 1px solid var(--color-border);
1537
+ border-left: 2px solid var(--color-active);
1538
+ padding: 10px 12px;
1539
+ border-radius: 4px;
1540
+ position: relative;
1541
+ }
1542
+
1543
+ .TaskQueue_voteBadge__zB5dE {
1544
+ position: absolute;
1545
+ top: 8px;
1546
+ right: 8px;
1547
+ font-size: 9px;
1548
+ font-weight: 800;
1549
+ background: var(--color-active);
1550
+ color: #000000;
1551
+ padding: 2px 6px;
1552
+ border-radius: 4px;
1553
+ }
1554
+
1555
+ .TaskQueue_taskTitle__E6fEH {
1556
+ font-size: 12px;
1557
+ font-weight: 600;
1558
+ color: var(--text-primary);
1559
+ margin-bottom: 4px;
1560
+ padding-right: 32px;
1561
+ }
1562
+
1563
+ .TaskQueue_taskMeta__IZCRN {
1564
+ font-size: 10px;
1565
+ color: var(--text-secondary);
1566
+ margin-bottom: 4px;
1567
+ }
1568
+
1569
+ .TaskQueue_taskMsg__wwuyU {
1570
+ font-size: 11px;
1571
+ color: var(--text-primary);
1572
+ font-style: italic;
1573
+ margin-bottom: 8px;
1574
+ }
1575
+
1576
+ .TaskQueue_voteStats__H9Wqs {
1577
+ font-size: 10px;
1578
+ color: var(--text-secondary);
1579
+ margin-bottom: 8px;
1580
+ font-weight: 600;
1581
+ }
1582
+
1583
+ .TaskQueue_voteActions__hfGZZ {
1584
+ display: flex;
1585
+ gap: 8px;
1586
+ }
1587
+
1588
+ .TaskQueue_btnYes__Sci7F, .TaskQueue_btnNo__qu1yz, .TaskQueue_btnMsg__nAxDI {
1589
+ flex: 1;
1590
+ padding: 4px 0;
1591
+ border-radius: 4px;
1592
+ font-size: 10px;
1593
+ cursor: pointer;
1594
+ font-weight: 600;
1595
+ border: none;
1596
+ }
1597
+
1598
+ .TaskQueue_btnYes__Sci7F { background: rgba(16, 185, 129, 0.1); color: #10b981; border: 1px solid #10b981; box-shadow: 0 0 10px rgba(16, 185, 129, 0.15); }
1599
+ .TaskQueue_btnNo__qu1yz { background: rgba(239, 68, 68, 0.1); color: #ef4444; border: 1px solid #ef4444; box-shadow: 0 0 10px rgba(239, 68, 68, 0.15); }
1600
+ .TaskQueue_btnMsg__nAxDI { background: transparent; color: var(--text-primary); border: 1px solid var(--color-border); }
1601
+
1602
+ /*!***********************************************************************************************************************************************************************************************************************************************************************************!*\
1603
+ !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[15].oneOf[5].use[3]!./src/components/WorkspaceRail.module.css ***!
1604
+ \***********************************************************************************************************************************************************************************************************************************************************************************/
1605
+ .WorkspaceRail_rail__7vAJJ {
1606
+ width: 72px;
1607
+ height: 100vh;
1608
+ background-color: var(--color-surface-3);
1609
+ display: flex;
1610
+ flex-direction: column;
1611
+ justify-content: space-between;
1612
+ padding: 16px 0;
1613
+ flex-shrink: 0;
1614
+ border-right: 1px solid var(--color-border);
1615
+ transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
1616
+ overflow-x: hidden;
1617
+ }
1618
+
1619
+ .WorkspaceRail_rail__7vAJJ.WorkspaceRail_expanded__98vNV {
1620
+ width: 240px;
1621
+ }
1622
+
1623
+ .WorkspaceRail_topSection__4__OY, .WorkspaceRail_bottomSection__gVik2 {
1624
+ display: flex;
1625
+ flex-direction: column;
1626
+ gap: 12px;
1627
+ width: 100%;
1628
+ }
1629
+
1630
+ .WorkspaceRail_sectionTitle__RKOaV {
1631
+ font-size: 10px;
1632
+ font-weight: 800;
1633
+ color: var(--text-secondary);
1634
+ padding: 0 16px;
1635
+ margin-top: 8px;
1636
+ letter-spacing: 1px;
1637
+ text-transform: uppercase;
1638
+ white-space: nowrap;
1639
+ animation: WorkspaceRail_fadeIn__G6CbP 0.2s ease forwards;
1640
+ }
1641
+
1642
+ @keyframes WorkspaceRail_fadeIn__G6CbP {
1643
+ from { opacity: 0; }
1644
+ to { opacity: 1; }
1645
+ }
1646
+
1647
+ .WorkspaceRail_itemWrapper__1uXMd {
1648
+ display: flex;
1649
+ align-items: center;
1650
+ padding: 0 12px;
1651
+ gap: 12px;
1652
+ cursor: pointer;
1653
+ border-radius: 8px;
1654
+ margin: 0 4px;
1655
+ }
1656
+
1657
+ .WorkspaceRail_itemWrapper__1uXMd:hover {
1658
+ background-color: rgba(255, 255, 255, 0.05);
1659
+ }
1660
+
1661
+ .WorkspaceRail_activeWrapper__r7pua {
1662
+ background-color: rgba(255, 255, 255, 0.02);
1663
+ }
1664
+
1665
+ .WorkspaceRail_itemText__yB_NL {
1666
+ color: var(--text-primary);
1667
+ font-size: 13px;
1668
+ font-weight: 600;
1669
+ white-space: nowrap;
1670
+ animation: WorkspaceRail_fadeIn__G6CbP 0.2s ease forwards;
1671
+ }
1672
+
1673
+ .WorkspaceRail_workspaceIcon__d_wIW {
1674
+ width: 48px;
1675
+ height: 48px;
1676
+ border-radius: 24px;
1677
+ background-color: var(--color-surface-1);
1678
+ color: var(--text-primary);
1679
+ display: flex;
1680
+ align-items: center;
1681
+ justify-content: center;
1682
+ font-weight: 800;
1683
+ font-size: 14px;
1684
+ flex-shrink: 0;
1685
+ transition: all 0.2s ease;
1686
+ border: 1px solid var(--color-border);
1687
+ }
1688
+
1689
+ .WorkspaceRail_itemWrapper__1uXMd:hover .WorkspaceRail_workspaceIcon__d_wIW {
1690
+ border-radius: 16px;
1691
+ background-color: var(--color-active);
1692
+ color: #000000;
1693
+ border-color: var(--color-active);
1694
+ }
1695
+
1696
+ .WorkspaceRail_workspaceIcon__d_wIW.WorkspaceRail_active__RqVud {
1697
+ border-radius: 16px;
1698
+ background-color: var(--color-active);
1699
+ color: #000000;
1700
+ border-color: var(--color-active);
1701
+ }
1702
+
1703
+ .WorkspaceRail_separator__aGZ81 {
1704
+ width: 32px;
1705
+ height: 2px;
1706
+ background-color: var(--color-border);
1707
+ margin: 4px auto;
1708
+ border-radius: 1px;
1709
+ }
1710
+
1711
+ .WorkspaceRail_addWorkspace__YpvsM {
1712
+ width: 48px;
1713
+ height: 48px;
1714
+ border-radius: 24px;
1715
+ background-color: transparent;
1716
+ color: var(--color-success);
1717
+ display: flex;
1718
+ align-items: center;
1719
+ justify-content: center;
1720
+ font-size: 24px;
1721
+ flex-shrink: 0;
1722
+ border: 1px dashed var(--color-success);
1723
+ transition: all 0.2s ease;
1724
+ }
1725
+
1726
+ .WorkspaceRail_itemWrapper__1uXMd:hover .WorkspaceRail_addWorkspace__YpvsM {
1727
+ border-radius: 16px;
1728
+ background-color: rgba(255, 255, 255, 0.08);
1729
+ }
1730
+
1731
+ .WorkspaceRail_allMemoriesIcon__iYSWM {
1732
+ width: 48px;
1733
+ height: 48px;
1734
+ border-radius: 24px;
1735
+ background-color: rgba(255, 255, 255, 0.08);
1736
+ color: rgba(255, 255, 255, 0.82);
1737
+ display: flex;
1738
+ align-items: center;
1739
+ justify-content: center;
1740
+ font-size: 16px;
1741
+ font-weight: bold;
1742
+ flex-shrink: 0;
1743
+ border: 1px solid rgba(255, 255, 255, 0.3);
1744
+ transition: all 0.2s ease;
1745
+ }
1746
+
1747
+ .WorkspaceRail_itemWrapper__1uXMd:hover .WorkspaceRail_allMemoriesIcon__iYSWM {
1748
+ border-radius: 16px;
1749
+ background-color: rgba(255, 255, 255, 0.12);
1750
+ }
1751
+
1752
+ .WorkspaceRail_actionIcon__SeSDf {
1753
+ width: 48px;
1754
+ height: 48px;
1755
+ display: flex;
1756
+ align-items: center;
1757
+ justify-content: center;
1758
+ color: var(--text-secondary);
1759
+ font-size: 20px;
1760
+ flex-shrink: 0;
1761
+ }
1762
+
1763
+ .WorkspaceRail_itemWrapper__1uXMd:hover .WorkspaceRail_actionIcon__SeSDf {
1764
+ color: var(--text-primary);
1765
+ }
1766
+
1767
+ .WorkspaceRail_profileAvatar__mzSdh {
1768
+ width: 48px;
1769
+ height: 48px;
1770
+ border-radius: 24px;
1771
+ background-color: var(--color-active);
1772
+ color: #000000;
1773
+ display: flex;
1774
+ align-items: center;
1775
+ justify-content: center;
1776
+ font-weight: bold;
1777
+ font-size: 18px;
1778
+ flex-shrink: 0;
1779
+ position: relative;
1780
+ }
1781
+
1782
+ .WorkspaceRail_profileAvatar__mzSdh::after {
1783
+ content: '';
1784
+ position: absolute;
1785
+ bottom: 0;
1786
+ right: 0;
1787
+ width: 14px;
1788
+ height: 14px;
1789
+ background-color: var(--color-success);
1790
+ border: 3px solid var(--color-surface-3);
1791
+ border-radius: 50%;
1792
+ }
1793
+