claudeship 0.2.12 → 0.2.15

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 (128) hide show
  1. package/README.md +18 -0
  2. package/apps/server/dist/app.module.js +10 -0
  3. package/apps/server/dist/app.module.js.map +1 -1
  4. package/apps/server/dist/chat/prompts/fullstack-express-prompt.d.ts +1 -1
  5. package/apps/server/dist/chat/prompts/fullstack-express-prompt.js +109 -1
  6. package/apps/server/dist/chat/prompts/fullstack-express-prompt.js.map +1 -1
  7. package/apps/server/dist/chat/prompts/fullstack-fastapi-prompt.d.ts +1 -1
  8. package/apps/server/dist/chat/prompts/fullstack-fastapi-prompt.js +109 -1
  9. package/apps/server/dist/chat/prompts/fullstack-fastapi-prompt.js.map +1 -1
  10. package/apps/server/dist/chat/prompts/web-system-prompt.d.ts +1 -1
  11. package/apps/server/dist/chat/prompts/web-system-prompt.js +156 -0
  12. package/apps/server/dist/chat/prompts/web-system-prompt.js.map +1 -1
  13. package/apps/server/dist/checkpoint/checkpoint.controller.d.ts +19 -0
  14. package/apps/server/dist/checkpoint/checkpoint.controller.js +93 -0
  15. package/apps/server/dist/checkpoint/checkpoint.controller.js.map +1 -0
  16. package/apps/server/dist/checkpoint/checkpoint.module.d.ts +2 -0
  17. package/apps/server/dist/checkpoint/checkpoint.module.js +25 -0
  18. package/apps/server/dist/checkpoint/checkpoint.module.js.map +1 -0
  19. package/apps/server/dist/checkpoint/checkpoint.service.d.ts +41 -0
  20. package/apps/server/dist/checkpoint/checkpoint.service.js +261 -0
  21. package/apps/server/dist/checkpoint/checkpoint.service.js.map +1 -0
  22. package/apps/server/dist/database/database.controller.d.ts +23 -0
  23. package/apps/server/dist/database/database.controller.js +109 -0
  24. package/apps/server/dist/database/database.controller.js.map +1 -0
  25. package/apps/server/dist/database/database.module.d.ts +2 -0
  26. package/apps/server/dist/database/database.module.js +25 -0
  27. package/apps/server/dist/database/database.module.js.map +1 -0
  28. package/apps/server/dist/database/database.service.d.ts +32 -0
  29. package/apps/server/dist/database/database.service.js +238 -0
  30. package/apps/server/dist/database/database.service.js.map +1 -0
  31. package/apps/server/dist/env/env.controller.d.ts +14 -0
  32. package/apps/server/dist/env/env.controller.js +84 -0
  33. package/apps/server/dist/env/env.controller.js.map +1 -0
  34. package/apps/server/dist/env/env.module.d.ts +2 -0
  35. package/apps/server/dist/env/env.module.js +25 -0
  36. package/apps/server/dist/env/env.module.js.map +1 -0
  37. package/apps/server/dist/env/env.service.d.ts +21 -0
  38. package/apps/server/dist/env/env.service.js +194 -0
  39. package/apps/server/dist/env/env.service.js.map +1 -0
  40. package/apps/server/dist/preview/preview.controller.d.ts +5 -0
  41. package/apps/server/dist/preview/preview.controller.js +41 -0
  42. package/apps/server/dist/preview/preview.controller.js.map +1 -1
  43. package/apps/server/dist/preview/preview.service.d.ts +20 -0
  44. package/apps/server/dist/preview/preview.service.js +51 -2
  45. package/apps/server/dist/preview/preview.service.js.map +1 -1
  46. package/apps/server/dist/project/project.controller.d.ts +10 -1
  47. package/apps/server/dist/project/project.controller.js +57 -0
  48. package/apps/server/dist/project/project.controller.js.map +1 -1
  49. package/apps/server/dist/project/project.service.d.ts +15 -0
  50. package/apps/server/dist/project/project.service.js +111 -0
  51. package/apps/server/dist/project/project.service.js.map +1 -1
  52. package/apps/server/dist/project-context/project-context.controller.d.ts +42 -0
  53. package/apps/server/dist/project-context/project-context.controller.js +127 -0
  54. package/apps/server/dist/project-context/project-context.controller.js.map +1 -0
  55. package/apps/server/dist/project-context/project-context.module.d.ts +2 -0
  56. package/apps/server/dist/project-context/project-context.module.js +25 -0
  57. package/apps/server/dist/project-context/project-context.module.js.map +1 -0
  58. package/apps/server/dist/project-context/project-context.service.d.ts +36 -0
  59. package/apps/server/dist/project-context/project-context.service.js +260 -0
  60. package/apps/server/dist/project-context/project-context.service.js.map +1 -0
  61. package/apps/server/dist/testing/testing.controller.d.ts +24 -0
  62. package/apps/server/dist/testing/testing.controller.js +126 -0
  63. package/apps/server/dist/testing/testing.controller.js.map +1 -0
  64. package/apps/server/dist/testing/testing.module.d.ts +2 -0
  65. package/apps/server/dist/testing/testing.module.js +26 -0
  66. package/apps/server/dist/testing/testing.module.js.map +1 -0
  67. package/apps/server/dist/testing/testing.service.d.ts +62 -0
  68. package/apps/server/dist/testing/testing.service.js +269 -0
  69. package/apps/server/dist/testing/testing.service.js.map +1 -0
  70. package/apps/server/dist/tsconfig.tsbuildinfo +1 -1
  71. package/apps/server/package.json +1 -1
  72. package/apps/web/.next/BUILD_ID +1 -1
  73. package/apps/web/.next/app-build-manifest.json +5 -5
  74. package/apps/web/.next/build-manifest.json +2 -2
  75. package/apps/web/.next/cache/.previewinfo +1 -1
  76. package/apps/web/.next/cache/.rscinfo +1 -1
  77. package/apps/web/.next/cache/.tsbuildinfo +1 -1
  78. package/apps/web/.next/cache/config.json +3 -3
  79. package/apps/web/.next/cache/eslint/.cache_j3uhuz +1 -1
  80. package/apps/web/.next/cache/webpack/client-production/0.pack +0 -0
  81. package/apps/web/.next/cache/webpack/client-production/index.pack +0 -0
  82. package/apps/web/.next/cache/webpack/edge-server-production/index.pack +0 -0
  83. package/apps/web/.next/cache/webpack/server-production/0.pack +0 -0
  84. package/apps/web/.next/cache/webpack/server-production/index.pack +0 -0
  85. package/apps/web/.next/prerender-manifest.json +10 -10
  86. package/apps/web/.next/server/app/_not-found/page_client-reference-manifest.js +1 -1
  87. package/apps/web/.next/server/app/_not-found.html +1 -1
  88. package/apps/web/.next/server/app/_not-found.rsc +2 -2
  89. package/apps/web/.next/server/app/index.html +1 -1
  90. package/apps/web/.next/server/app/index.rsc +3 -3
  91. package/apps/web/.next/server/app/page.js +2 -2
  92. package/apps/web/.next/server/app/page_client-reference-manifest.js +1 -1
  93. package/apps/web/.next/server/app/project/[id]/page.js +2 -2
  94. package/apps/web/.next/server/app/project/[id]/page_client-reference-manifest.js +1 -1
  95. package/apps/web/.next/server/app/settings/page_client-reference-manifest.js +1 -1
  96. package/apps/web/.next/server/app/settings.html +1 -1
  97. package/apps/web/.next/server/app/settings.rsc +3 -3
  98. package/apps/web/.next/server/chunks/392.js +1 -1
  99. package/apps/web/.next/server/pages/404.html +1 -1
  100. package/apps/web/.next/server/pages/500.html +1 -1
  101. package/apps/web/.next/server/server-reference-manifest.json +1 -1
  102. package/apps/web/.next/static/chunks/574-1fe2bcd6cfb41646.js +1 -0
  103. package/apps/web/.next/static/chunks/app/page-f19cfa58541ca83d.js +1 -0
  104. package/apps/web/.next/static/chunks/app/project/[id]/page-dffaa1d02f012216.js +1 -0
  105. package/apps/web/.next/static/chunks/app/settings/page-d1318c2fd58729a5.js +1 -0
  106. package/apps/web/.next/static/css/0a24552d9794f8c8.css +3 -0
  107. package/apps/web/.next/trace +18 -17
  108. package/apps/web/node_modules/.bin/eslint +2 -2
  109. package/apps/web/package.json +2 -1
  110. package/apps/web/src/components/checkpoint/CheckpointPanel.tsx +384 -0
  111. package/apps/web/src/components/database/DatabasePanel.tsx +405 -0
  112. package/apps/web/src/components/env/EnvPanel.tsx +356 -0
  113. package/apps/web/src/components/preview/ConsoleViewer.tsx +270 -0
  114. package/apps/web/src/components/preview/ErrorOverlay.tsx +189 -0
  115. package/apps/web/src/components/preview/PreviewPanel.tsx +148 -6
  116. package/apps/web/src/components/testing/TestRunner.tsx +481 -0
  117. package/apps/web/src/components/ui/tabs.tsx +55 -0
  118. package/apps/web/src/components/visual-editor/VisualEditor.tsx +382 -0
  119. package/apps/web/src/components/workspace/WorkspaceLayout.tsx +66 -4
  120. package/apps/web/src/lib/api.ts +5 -2
  121. package/package.json +1 -1
  122. package/apps/web/.next/static/chunks/298-6f3d6b321c288cd3.js +0 -1
  123. package/apps/web/.next/static/chunks/app/page-3d093f7f480a8599.js +0 -1
  124. package/apps/web/.next/static/chunks/app/project/[id]/page-e5cda6f9050b0a52.js +0 -1
  125. package/apps/web/.next/static/chunks/app/settings/page-92d28565c3d8c755.js +0 -1
  126. package/apps/web/.next/static/css/8f946046a2047594.css +0 -3
  127. /package/apps/web/.next/static/{aXT20mSdxaem1-z8VH2F1 → mkY_TTl_ho_ehDKiX10AN}/_buildManifest.js +0 -0
  128. /package/apps/web/.next/static/{aXT20mSdxaem1-z8VH2F1 → mkY_TTl_ho_ehDKiX10AN}/_ssgManifest.js +0 -0
@@ -1,17 +1,18 @@
1
- [{"name":"generate-buildid","duration":284,"timestamp":66296349,"id":4,"parentId":1,"tags":{},"startTime":1767363433585,"traceId":"f0add02174dc0eb2"},{"name":"load-custom-routes","duration":467,"timestamp":66296781,"id":5,"parentId":1,"tags":{},"startTime":1767363433585,"traceId":"f0add02174dc0eb2"},{"name":"create-dist-dir","duration":42761,"timestamp":66418934,"id":6,"parentId":1,"tags":{},"startTime":1767363433708,"traceId":"f0add02174dc0eb2"},{"name":"create-pages-mapping","duration":271,"timestamp":66466928,"id":7,"parentId":1,"tags":{},"startTime":1767363433756,"traceId":"f0add02174dc0eb2"},{"name":"collect-app-files","duration":3092,"timestamp":66467242,"id":8,"parentId":1,"tags":{},"startTime":1767363433756,"traceId":"f0add02174dc0eb2"},{"name":"create-app-mapping","duration":1512,"timestamp":66470367,"id":9,"parentId":1,"tags":{},"startTime":1767363433759,"traceId":"f0add02174dc0eb2"},{"name":"create-app-layouts","duration":181,"timestamp":66471920,"id":10,"parentId":1,"tags":{},"startTime":1767363433761,"traceId":"f0add02174dc0eb2"},{"name":"collect-default-files","duration":691,"timestamp":66474256,"id":12,"parentId":1,"tags":{},"startTime":1767363433763,"traceId":"f0add02174dc0eb2"},{"name":"generate-route-types","duration":19917,"timestamp":66472510,"id":11,"parentId":1,"tags":{},"startTime":1767363433761,"traceId":"f0add02174dc0eb2"},{"name":"public-dir-conflict-check","duration":677,"timestamp":66492521,"id":13,"parentId":1,"tags":{},"startTime":1767363433781,"traceId":"f0add02174dc0eb2"},{"name":"generate-routes-manifest","duration":2378,"timestamp":66493419,"id":14,"parentId":1,"tags":{},"startTime":1767363433782,"traceId":"f0add02174dc0eb2"},{"name":"create-entrypoints","duration":20297,"timestamp":67586563,"id":18,"parentId":16,"tags":{},"startTime":1767363434875,"traceId":"f0add02174dc0eb2"},{"name":"generate-webpack-config","duration":128440,"timestamp":67607062,"id":19,"parentId":17,"tags":{},"startTime":1767363434896,"traceId":"f0add02174dc0eb2"},{"name":"next-trace-entrypoint-plugin","duration":10858,"timestamp":67878274,"id":21,"parentId":20,"tags":{},"startTime":1767363435167,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":55070,"timestamp":68046508,"id":35,"parentId":24,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_app.js","layer":"pages-dir-node"},"startTime":1767363435335,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":90001,"timestamp":68032434,"id":34,"parentId":25,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!","layer":"pages-dir-node"},"startTime":1767363435321,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":150691,"timestamp":68049877,"id":36,"parentId":29,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_document.js","layer":"pages-dir-node"},"startTime":1767363435339,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":374,"timestamp":68216536,"id":37,"parentId":35,"tags":{"name":"react/jsx-runtime","layer":null},"startTime":1767363435505,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":167,"timestamp":68216999,"id":38,"parentId":35,"tags":{"name":"react","layer":null},"startTime":1767363435506,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":384134,"timestamp":68017182,"id":30,"parentId":23,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?page=%2F_not-found%2Fpage&name=app%2F_not-found%2Fpage&pagePath=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found.js&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!","layer":"rsc"},"startTime":1767363435306,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":381867,"timestamp":68031125,"id":31,"parentId":26,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?page=%2Fpage&name=app%2Fpage&pagePath=private-next-app-dir%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!","layer":"rsc"},"startTime":1767363435320,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3452,"timestamp":68445126,"id":39,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/get-page-files.js","layer":"pages-dir-node"},"startTime":1767363435734,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4511,"timestamp":68445870,"id":40,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/htmlescape.js","layer":"pages-dir-node"},"startTime":1767363435734,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7575,"timestamp":68446250,"id":41,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/utils.js","layer":"pages-dir-node"},"startTime":1767363435735,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9252,"timestamp":68446480,"id":42,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-error.js","layer":"pages-dir-node"},"startTime":1767363435735,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10898,"timestamp":68446566,"id":43,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/pretty-bytes.js","layer":"pages-dir-node"},"startTime":1767363435735,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":31621,"timestamp":68447119,"id":47,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/tracer.js","layer":"pages-dir-node"},"startTime":1767363435736,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":32385,"timestamp":68447179,"id":48,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/utils.js","layer":"pages-dir-node"},"startTime":1767363435736,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":75,"timestamp":68495811,"id":49,"parentId":30,"tags":{"name":"path","layer":null},"startTime":1767363435784,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":2294,"timestamp":68495981,"id":50,"parentId":30,"tags":{"name":"next/dist/shared/lib/router/utils/app-paths","layer":null},"startTime":1767363435785,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":48,"timestamp":68498345,"id":51,"parentId":30,"tags":{"name":"next/dist/shared/lib/router/utils/is-bot","layer":null},"startTime":1767363435787,"traceId":"f0add02174dc0eb2"},{"name":"build-module-external","duration":22,"timestamp":68498415,"id":52,"parentId":30,"tags":{"name":"next/dist/shared/lib/no-fallback-error.external","layer":null},"startTime":1767363435787,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":65697,"timestamp":68446648,"id":44,"parentId":35,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"pages-dir-node"},"startTime":1767363435735,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":69770,"timestamp":68446967,"id":46,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":"pages-dir-node"},"startTime":1767363435736,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":94799,"timestamp":68446794,"id":45,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/constants.js","layer":"pages-dir-node"},"startTime":1767363435735,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":645014,"timestamp":68032087,"id":33,"parentId":28,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?page=%2Fsettings%2Fpage&name=app%2Fsettings%2Fpage&pagePath=private-next-app-dir%2Fsettings%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fsettings%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!","layer":"rsc"},"startTime":1767363435321,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":692221,"timestamp":68031691,"id":32,"parentId":27,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?page=%2Fproject%2F%5Bid%5D%2Fpage&name=app%2Fproject%2F%5Bid%5D%2Fpage&pagePath=private-next-app-dir%2Fproject%2F%5Bid%5D%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fproject%2F%5Bid%5D%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!","layer":"rsc"},"startTime":1767363435320,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2313,"timestamp":68746661,"id":53,"parentId":34,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-kind.js","layer":"pages-dir-node"},"startTime":1767363436035,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2632,"timestamp":68747099,"id":55,"parentId":34,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/templates/helpers.js","layer":"pages-dir-node"},"startTime":1767363436036,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6220,"timestamp":68747191,"id":56,"parentId":34,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/module.compiled.js","layer":"pages-dir-node"},"startTime":1767363436036,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":18888,"timestamp":68747266,"id":57,"parentId":34,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/pages-handler.js","layer":"pages-dir-node"},"startTime":1767363436036,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":29028,"timestamp":68747788,"id":61,"parentId":47,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/constants.js","layer":"pages-dir-node"},"startTime":1767363436036,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":54044,"timestamp":68746782,"id":54,"parentId":34,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_error.js","layer":"pages-dir-node"},"startTime":1767363436035,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":54334,"timestamp":68747339,"id":58,"parentId":42,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"pages-dir-node"},"startTime":1767363436036,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":54694,"timestamp":68747474,"id":59,"parentId":47,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-thenable.js","layer":"pages-dir-node"},"startTime":1767363436036,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":55042,"timestamp":68747576,"id":60,"parentId":45,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":"pages-dir-node"},"startTime":1767363436036,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5102,"timestamp":68807394,"id":64,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/vendored/contexts/html-context.js","layer":"pages-dir-node"},"startTime":1767363436096,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12050,"timestamp":68807503,"id":65,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-kind.js","layer":"rsc"},"startTime":1767363436096,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":16007,"timestamp":68808819,"id":66,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1767363436097,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":20340,"timestamp":68809128,"id":67,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1767363436098,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":21157,"timestamp":68809399,"id":68,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request-meta.js","layer":"rsc"},"startTime":1767363436098,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":24807,"timestamp":68809560,"id":69,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/send-payload.js","layer":"rsc"},"startTime":1767363436098,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":27549,"timestamp":68809711,"id":70,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/render-result.js","layer":"rsc"},"startTime":1767363436098,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":28690,"timestamp":68809850,"id":71,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/server-action-request-meta.js","layer":"rsc"},"startTime":1767363436098,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":30187,"timestamp":68810043,"id":72,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/fallback.js","layer":"rsc"},"startTime":1767363436099,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":34153,"timestamp":68810180,"id":73,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1767363436099,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":37999,"timestamp":68810321,"id":74,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/streaming-metadata.js","layer":"rsc"},"startTime":1767363436099,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":38904,"timestamp":68810453,"id":75,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1767363436099,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":39256,"timestamp":68810636,"id":76,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/instrumentation/utils.js","layer":"rsc"},"startTime":1767363436099,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":39937,"timestamp":68810786,"id":77,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/interop-default.js","layer":"rsc"},"startTime":1767363436099,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":40411,"timestamp":68810917,"id":78,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/strip-flight-headers.js","layer":"rsc"},"startTime":1767363436100,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":41929,"timestamp":68811207,"id":80,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/action-utils.js","layer":"rsc"},"startTime":1767363436100,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":44947,"timestamp":68811331,"id":81,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1767363436100,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":50988,"timestamp":68811452,"id":82,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/base-http/node.js","layer":"rsc"},"startTime":1767363436100,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":52155,"timestamp":68811571,"id":83,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/fallback-params.js","layer":"rsc"},"startTime":1767363436100,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":52897,"timestamp":68811695,"id":84,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/experimental/ppr.js","layer":"rsc"},"startTime":1767363436100,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":53545,"timestamp":68811816,"id":85,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/encoded-tags.js","layer":"rsc"},"startTime":1767363436100,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":55631,"timestamp":68811939,"id":86,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/index.js","layer":"rsc"},"startTime":1767363436101,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":124626,"timestamp":68747861,"id":62,"parentId":39,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":"pages-dir-node"},"startTime":1767363436036,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":128544,"timestamp":68747974,"id":63,"parentId":39,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/normalize-page-path.js","layer":"pages-dir-node"},"startTime":1767363436037,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":35390,"timestamp":68892203,"id":93,"parentId":47,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"pages-dir-node"},"startTime":1767363436181,"traceId":"f0add02174dc0eb2"},{"name":"build-module-cjs","duration":36711,"timestamp":68892283,"id":94,"parentId":35,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/cjs/_interop_require_default.cjs","layer":"pages-dir-node"},"startTime":1767363436181,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":151068,"timestamp":68811071,"id":79,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/encryption-utils.js","layer":"rsc"},"startTime":1767363436100,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":82859,"timestamp":68891093,"id":87,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-headers.js","layer":"rsc"},"startTime":1767363436180,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":83499,"timestamp":68891348,"id":88,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"rsc"},"startTime":1767363436180,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":84820,"timestamp":68891591,"id":89,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-error.js","layer":"rsc"},"startTime":1767363436180,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":85706,"timestamp":68891762,"id":90,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/not-found.js","layer":"rsc"},"startTime":1767363436180,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":86370,"timestamp":68891895,"id":91,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/forbidden.js","layer":"rsc"},"startTime":1767363436181,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":87847,"timestamp":68892070,"id":92,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/unauthorized.js","layer":"rsc"},"startTime":1767363436181,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":1099654,"timestamp":67899201,"id":24,"parentId":22,"tags":{"request":"next/dist/pages/_app"},"startTime":1767363435188,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":102,"timestamp":68999980,"id":95,"parentId":56,"tags":{"name":"next/dist/compiled/next-server/pages.runtime.prod.js","layer":null},"startTime":1767363436289,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2362,"timestamp":69000112,"id":96,"parentId":54,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request-meta.js","layer":"pages-dir-node"},"startTime":1767363436289,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":14204,"timestamp":69000236,"id":97,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/constants.js","layer":"pages-dir-node"},"startTime":1767363436289,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":16547,"timestamp":69000323,"id":98,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/send-payload.js","layer":"pages-dir-node"},"startTime":1767363436289,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":21549,"timestamp":69000380,"id":99,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/render-result.js","layer":"pages-dir-node"},"startTime":1767363436289,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":21992,"timestamp":69000431,"id":100,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/interop-default.js","layer":"pages-dir-node"},"startTime":1767363436289,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":22341,"timestamp":69000479,"id":101,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/instrumentation/utils.js","layer":"pages-dir-node"},"startTime":1767363436289,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":74,"timestamp":69042044,"id":103,"parentId":75,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.prod.js","layer":null},"startTime":1767363436331,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9135,"timestamp":69042793,"id":107,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/index.js","layer":"pages-dir-node"},"startTime":1767363436331,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":79646,"timestamp":69042151,"id":104,"parentId":66,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1767363436331,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":127248,"timestamp":69000527,"id":102,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"pages-dir-node"},"startTime":1767363436289,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":92398,"timestamp":69042486,"id":105,"parentId":69,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"rsc"},"startTime":1767363436331,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":92731,"timestamp":69042658,"id":106,"parentId":66,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-thenable.js","layer":"rsc"},"startTime":1767363436331,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":8219,"timestamp":69146091,"id":108,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/layout.tsx","layer":"rsc"},"startTime":1767363436435,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":10436,"timestamp":69147432,"id":109,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"rsc"},"startTime":1767363436436,"traceId":"f0add02174dc0eb2"},{"name":"build-module-external","duration":174,"timestamp":69173589,"id":110,"parentId":57,"tags":{"name":"../../../shared/lib/no-fallback-error.external","layer":null},"startTime":1767363436462,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1251,"timestamp":69174381,"id":113,"parentId":98,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/cache-control.js","layer":"pages-dir-node"},"startTime":1767363436463,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2045,"timestamp":69174470,"id":114,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/redirect-status.js","layer":"pages-dir-node"},"startTime":1767363436463,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3383,"timestamp":69174764,"id":116,"parentId":107,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/utils.js","layer":"pages-dir-node"},"startTime":1767363436463,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7525,"timestamp":69174088,"id":112,"parentId":69,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/cache-control.js","layer":"rsc"},"startTime":1767363436463,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8995,"timestamp":69174530,"id":115,"parentId":86,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/utils.js","layer":"rsc"},"startTime":1767363436463,"traceId":"f0add02174dc0eb2"}]
2
- [{"name":"build-module-js","duration":23849,"timestamp":69173866,"id":111,"parentId":54,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"pages-dir-node"},"startTime":1767363436462,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2645,"timestamp":69212964,"id":118,"parentId":99,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/pipe-readable.js","layer":"pages-dir-node"},"startTime":1767363436502,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10496,"timestamp":69213314,"id":120,"parentId":99,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/node-web-streams-helper.js","layer":"pages-dir-node"},"startTime":1767363436502,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11535,"timestamp":69213614,"id":122,"parentId":98,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/etag.js","layer":"pages-dir-node"},"startTime":1767363436502,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":16624,"timestamp":69212606,"id":117,"parentId":70,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/pipe-readable.js","layer":"rsc"},"startTime":1767363436501,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":25440,"timestamp":69213067,"id":119,"parentId":70,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/node-web-streams-helper.js","layer":"rsc"},"startTime":1767363436502,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":26436,"timestamp":69213373,"id":121,"parentId":69,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/etag.js","layer":"rsc"},"startTime":1767363436502,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":28242,"timestamp":69213667,"id":123,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/normalize-data-path.js","layer":"pages-dir-node"},"startTime":1767363436502,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7216,"timestamp":69268564,"id":125,"parentId":99,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/invariant-error.js","layer":"pages-dir-node"},"startTime":1767363436557,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8062,"timestamp":69268318,"id":124,"parentId":70,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/invariant-error.js","layer":"rsc"},"startTime":1767363436557,"traceId":"f0add02174dc0eb2"},{"name":"build-module-external","duration":75,"timestamp":69285045,"id":127,"parentId":80,"tags":{"name":"./work-async-storage.external","layer":null},"startTime":1767363436574,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4163,"timestamp":69284874,"id":126,"parentId":120,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/encoded-tags.js","layer":"pages-dir-node"},"startTime":1767363436574,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4626,"timestamp":69285498,"id":129,"parentId":107,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/batcher.js","layer":"pages-dir-node"},"startTime":1767363436574,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5350,"timestamp":69285798,"id":131,"parentId":107,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/scheduler.js","layer":"pages-dir-node"},"startTime":1767363436574,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7621,"timestamp":69285165,"id":128,"parentId":86,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/batcher.js","layer":"rsc"},"startTime":1767363436574,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8289,"timestamp":69285562,"id":130,"parentId":86,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/scheduler.js","layer":"rsc"},"startTime":1767363436574,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12676,"timestamp":69285853,"id":132,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1767363436574,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":14514,"timestamp":69285991,"id":133,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1767363436575,"traceId":"f0add02174dc0eb2"},{"name":"build-module-external","duration":41,"timestamp":69300954,"id":134,"parentId":81,"tags":{"name":"./work-unit-async-storage.external","layer":null},"startTime":1767363436590,"traceId":"f0add02174dc0eb2"},{"name":"build-module-external","duration":17,"timestamp":69301061,"id":135,"parentId":81,"tags":{"name":"../app-render/action-async-storage.external","layer":null},"startTime":1767363436590,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10161,"timestamp":69304538,"id":138,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/search-params.js","layer":"rsc"},"startTime":1767363436593,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17697,"timestamp":69301095,"id":136,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1767363436590,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17992,"timestamp":69301322,"id":137,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-segment.js","layer":"rsc"},"startTime":1767363436590,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":19234,"timestamp":69304748,"id":139,"parentId":33,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"rsc"},"startTime":1767363436593,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":14213,"timestamp":69341899,"id":140,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/params.js","layer":"rsc"},"startTime":1767363436631,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":20794,"timestamp":69342270,"id":141,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/collect-segment-data.js","layer":"rsc"},"startTime":1767363436631,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":40991,"timestamp":69342492,"id":142,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1767363436631,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":41801,"timestamp":69342709,"id":143,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/base-http/index.js","layer":"rsc"},"startTime":1767363436631,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":46782,"timestamp":69342910,"id":144,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1767363436632,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1184,"timestamp":69398742,"id":146,"parentId":107,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/types.js","layer":"pages-dir-node"},"startTime":1767363436687,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8351,"timestamp":69398422,"id":145,"parentId":86,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/types.js","layer":"rsc"},"startTime":1767363436687,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11930,"timestamp":69398815,"id":147,"parentId":62,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":"pages-dir-node"},"startTime":1767363436687,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12193,"timestamp":69398907,"id":148,"parentId":63,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"pages-dir-node"},"startTime":1767363436688,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4402,"timestamp":69420786,"id":151,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/metadata.js","layer":"rsc"},"startTime":1767363436709,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7178,"timestamp":69418900,"id":149,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js","layer":"rsc"},"startTime":1767363436708,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7805,"timestamp":69419171,"id":150,"parentId":90,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-fallback.js","layer":"rsc"},"startTime":1767363436708,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":22909,"timestamp":69421054,"id":152,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-components.js","layer":"rsc"},"startTime":1767363436710,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2213,"timestamp":69461552,"id":153,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1767363436750,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2110,"timestamp":69461889,"id":154,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1767363436751,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2678,"timestamp":69462125,"id":155,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1767363436751,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5227,"timestamp":69462269,"id":156,"parentId":74,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"rsc"},"startTime":1767363436751,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5910,"timestamp":69462366,"id":157,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"pages-dir-node"},"startTime":1767363436751,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11294,"timestamp":69469931,"id":160,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"pages-dir-node"},"startTime":1767363436759,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":18298,"timestamp":69469820,"id":159,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"pages-dir-node"},"startTime":1767363436758,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":16120,"timestamp":69472792,"id":161,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"pages-dir-node"},"startTime":1767363436761,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":21134,"timestamp":69468809,"id":158,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"rsc"},"startTime":1767363436757,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3931,"timestamp":69530395,"id":162,"parentId":158,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"rsc"},"startTime":1767363436819,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4307,"timestamp":69530673,"id":163,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"rsc"},"startTime":1767363436819,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5309,"timestamp":69530873,"id":164,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":"rsc"},"startTime":1767363436819,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5408,"timestamp":69531294,"id":167,"parentId":123,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"pages-dir-node"},"startTime":1767363436820,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":21598,"timestamp":69531184,"id":166,"parentId":83,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"rsc"},"startTime":1767363436820,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":22824,"timestamp":69531047,"id":165,"parentId":83,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"rsc"},"startTime":1767363436820,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8008,"timestamp":69562543,"id":170,"parentId":166,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"rsc"},"startTime":1767363436851,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9122,"timestamp":69562673,"id":171,"parentId":111,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"pages-dir-node"},"startTime":1767363436851,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":11943,"timestamp":69562082,"id":168,"parentId":32,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"rsc"},"startTime":1767363436851,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12748,"timestamp":69562441,"id":169,"parentId":111,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"pages-dir-node"},"startTime":1767363436851,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6893,"timestamp":69576943,"id":172,"parentId":111,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"pages-dir-node"},"startTime":1767363436866,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1701,"timestamp":69586577,"id":174,"parentId":118,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/detached-promise.js","layer":"pages-dir-node"},"startTime":1767363436875,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4311,"timestamp":69586882,"id":176,"parentId":118,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/client-component-renderer-logger.js","layer":"pages-dir-node"},"startTime":1767363436875,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11406,"timestamp":69587162,"id":178,"parentId":120,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/uint8array-helpers.js","layer":"pages-dir-node"},"startTime":1767363436876,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17040,"timestamp":69586210,"id":173,"parentId":89,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-loader/module-proxy.js","layer":"rsc"},"startTime":1767363436875,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17199,"timestamp":69586650,"id":175,"parentId":117,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/detached-promise.js","layer":"rsc"},"startTime":1767363436875,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":18001,"timestamp":69586935,"id":177,"parentId":117,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/client-component-renderer-logger.js","layer":"rsc"},"startTime":1767363436876,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":18855,"timestamp":69587212,"id":179,"parentId":119,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/uint8array-helpers.js","layer":"rsc"},"startTime":1767363436876,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":30188,"timestamp":69587414,"id":180,"parentId":120,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/errors/constants.js","layer":"pages-dir-node"},"startTime":1767363436876,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":36129,"timestamp":69587498,"id":181,"parentId":119,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/errors/constants.js","layer":"rsc"},"startTime":1767363436876,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6650,"timestamp":69624118,"id":182,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/api-utils/index.js","layer":"rsc"},"startTime":1767363436913,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":20910,"timestamp":69624675,"id":185,"parentId":119,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/output-export-prefetch-encoding.js","layer":"rsc"},"startTime":1767363436913,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":21721,"timestamp":69624592,"id":184,"parentId":120,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/output-export-prefetch-encoding.js","layer":"pages-dir-node"},"startTime":1767363436913,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":22344,"timestamp":69624481,"id":183,"parentId":62,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"pages-dir-node"},"startTime":1767363436913,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6405,"timestamp":69688785,"id":186,"parentId":138,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/dynamic-rendering-utils.js","layer":"rsc"},"startTime":1767363436977,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7744,"timestamp":69689145,"id":187,"parentId":138,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/create-deduped-by-callsite-server-error-logger.js","layer":"rsc"},"startTime":1767363436978,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8978,"timestamp":69690552,"id":191,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-webpack-server.js","layer":"rsc"},"startTime":1767363436979,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9079,"timestamp":69690799,"id":192,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-webpack-static.js","layer":"rsc"},"startTime":1767363436979,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":20480,"timestamp":69689871,"id":190,"parentId":138,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/reflect-utils.js","layer":"rsc"},"startTime":1767363436978,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":22101,"timestamp":69689410,"id":188,"parentId":138,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/utils.js","layer":"rsc"},"startTime":1767363436978,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":32189,"timestamp":69689642,"id":189,"parentId":138,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1767363436978,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2874,"timestamp":69729902,"id":193,"parentId":118,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/next-request.js","layer":"pages-dir-node"},"startTime":1767363437019,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7123,"timestamp":69730063,"id":194,"parentId":117,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/next-request.js","layer":"rsc"},"startTime":1767363437019,"traceId":"f0add02174dc0eb2"},{"name":"build-module-external","duration":65,"timestamp":69760874,"id":195,"parentId":140,"tags":{"name":"../app-render/dynamic-access-async-storage.external","layer":null},"startTime":1767363437050,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1492,"timestamp":69760977,"id":196,"parentId":138,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1767363437050,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8572,"timestamp":69768889,"id":197,"parentId":141,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/create-error-handler.js","layer":"rsc"},"startTime":1767363437058,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11923,"timestamp":69769296,"id":198,"parentId":142,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1767363437058,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":19261,"timestamp":69769516,"id":199,"parentId":142,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1767363437058,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":21840,"timestamp":69769717,"id":200,"parentId":141,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js","layer":"rsc"},"startTime":1767363437058,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2741,"timestamp":69819108,"id":203,"parentId":98,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/fresh/index.js","layer":"pages-dir-node"},"startTime":1767363437108,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7474,"timestamp":69815999,"id":201,"parentId":197,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-error.js","layer":"rsc"},"startTime":1767363437105,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5934,"timestamp":69818765,"id":202,"parentId":69,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/fresh/index.js","layer":"rsc"},"startTime":1767363437107,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5965,"timestamp":69819181,"id":204,"parentId":143,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/api-utils/get-cookie-parser.js","layer":"rsc"},"startTime":1767363437108,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4425,"timestamp":69826763,"id":205,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/pathname.js","layer":"rsc"},"startTime":1767363437115,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4639,"timestamp":69827099,"id":206,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-constants.js","layer":"rsc"},"startTime":1767363437116,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":19904,"timestamp":69827339,"id":207,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolve-metadata.js","layer":"rsc"},"startTime":1767363437116,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":24495,"timestamp":69827566,"id":208,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"rsc"},"startTime":1767363437116,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8807,"timestamp":69869830,"id":209,"parentId":201,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"rsc"},"startTime":1767363437158,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6359,"timestamp":69883833,"id":210,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/basic.js","layer":"rsc"},"startTime":1767363437172,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7037,"timestamp":69884228,"id":211,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/alternate.js","layer":"rsc"},"startTime":1767363437173,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11675,"timestamp":69884500,"id":212,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/opengraph.js","layer":"rsc"},"startTime":1767363437173,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12692,"timestamp":69884748,"id":213,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icons.js","layer":"rsc"},"startTime":1767363437173,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3724,"timestamp":69905753,"id":214,"parentId":141,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js","layer":"rsc"},"startTime":1767363437194,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5316,"timestamp":69906160,"id":215,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/meta.js","layer":"rsc"},"startTime":1767363437195,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5274,"timestamp":69906675,"id":217,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/router-utils/is-postpone.js","layer":"rsc"},"startTime":1767363437195,"traceId":"f0add02174dc0eb2"}]
3
- [{"name":"build-module-js","duration":12315,"timestamp":69906511,"id":216,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/metadata/async-metadata.js","layer":"rsc"},"startTime":1767363437195,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7606,"timestamp":69931043,"id":218,"parentId":156,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"rsc"},"startTime":1767363437220,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8081,"timestamp":69931418,"id":220,"parentId":150,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/styles/access-error-styles.js","layer":"rsc"},"startTime":1767363437220,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17577,"timestamp":69931296,"id":219,"parentId":157,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"pages-dir-node"},"startTime":1767363437220,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11855,"timestamp":69939729,"id":221,"parentId":207,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"rsc"},"startTime":1767363437228,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12249,"timestamp":69940053,"id":223,"parentId":163,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"rsc"},"startTime":1767363437229,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":12731,"timestamp":69940217,"id":225,"parentId":108,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"rsc"},"startTime":1767363437229,"traceId":"f0add02174dc0eb2"},{"name":"build-module-cjs","duration":1736,"timestamp":69956523,"id":226,"parentId":111,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs","layer":"pages-dir-node"},"startTime":1767363437245,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":23108,"timestamp":69940159,"id":224,"parentId":159,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"pages-dir-node"},"startTime":1767363437229,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":29349,"timestamp":69939931,"id":222,"parentId":160,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"pages-dir-node"},"startTime":1767363437229,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1156,"timestamp":69974807,"id":227,"parentId":141,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-server-dom-webpack/client.node.js","layer":"rsc"},"startTime":1767363437263,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8824,"timestamp":69987368,"id":228,"parentId":166,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"rsc"},"startTime":1767363437276,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10341,"timestamp":69987628,"id":229,"parentId":166,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"rsc"},"startTime":1767363437276,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11686,"timestamp":69987804,"id":230,"parentId":166,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js","layer":"rsc"},"startTime":1767363437276,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1150,"timestamp":69999952,"id":231,"parentId":111,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/vendored/contexts/amp-context.js","layer":"pages-dir-node"},"startTime":1767363437289,"traceId":"f0add02174dc0eb2"},{"name":"build-module-css","duration":1041,"timestamp":70000280,"id":233,"parentId":108,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css","layer":"rsc"},"startTime":1767363437289,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5003,"timestamp":70004945,"id":234,"parentId":182,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/headers.js","layer":"rsc"},"startTime":1767363437294,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17137,"timestamp":70000083,"id":232,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js","layer":"rsc"},"startTime":1767363437289,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":22555,"timestamp":70005325,"id":235,"parentId":183,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"pages-dir-node"},"startTime":1767363437294,"traceId":"f0add02174dc0eb2"},{"name":"build-module-external","duration":41,"timestamp":70041144,"id":237,"parentId":188,"tags":{"name":"../app-render/after-task-async-storage.external","layer":null},"startTime":1767363437330,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":813,"timestamp":70041035,"id":236,"parentId":111,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/vendored/contexts/head-manager-context.js","layer":"pages-dir-node"},"startTime":1767363437330,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5602,"timestamp":70045122,"id":240,"parentId":193,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/utils.js","layer":"pages-dir-node"},"startTime":1767363437334,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6084,"timestamp":70045476,"id":242,"parentId":193,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/base-http/helpers.js","layer":"pages-dir-node"},"startTime":1767363437334,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13058,"timestamp":70045781,"id":244,"parentId":193,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/request.js","layer":"pages-dir-node"},"startTime":1767363437334,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":19963,"timestamp":70045199,"id":241,"parentId":194,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/utils.js","layer":"rsc"},"startTime":1767363437334,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":20428,"timestamp":70045545,"id":243,"parentId":194,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/base-http/helpers.js","layer":"rsc"},"startTime":1767363437334,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":23877,"timestamp":70045838,"id":245,"parentId":194,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/request.js","layer":"rsc"},"startTime":1767363437334,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":30299,"timestamp":70041420,"id":239,"parentId":183,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"pages-dir-node"},"startTime":1767363437330,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":31606,"timestamp":70041215,"id":238,"parentId":188,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1767363437330,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10357,"timestamp":70074373,"id":247,"parentId":189,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"rsc"},"startTime":1767363437363,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":15814,"timestamp":70074052,"id":246,"parentId":197,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/format-server-error.js","layer":"rsc"},"startTime":1767363437363,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2257,"timestamp":70090383,"id":249,"parentId":197,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/error-telemetry-utils.js","layer":"rsc"},"startTime":1767363437379,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2412,"timestamp":70090537,"id":250,"parentId":207,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/interop-default.js","layer":"rsc"},"startTime":1767363437379,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2523,"timestamp":70090745,"id":252,"parentId":197,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/react-large-shell-error.js","layer":"rsc"},"startTime":1767363437379,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4816,"timestamp":70090248,"id":248,"parentId":239,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"pages-dir-node"},"startTime":1767363437379,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4900,"timestamp":70090661,"id":251,"parentId":197,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/is-next-router-error.js","layer":"rsc"},"startTime":1767363437379,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2076,"timestamp":70096866,"id":253,"parentId":187,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js","layer":"rsc"},"startTime":1767363437385,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2447,"timestamp":70097182,"id":254,"parentId":207,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/app-dir-module.js","layer":"rsc"},"startTime":1767363437386,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2729,"timestamp":70097390,"id":255,"parentId":207,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/default-metadata.js","layer":"rsc"},"startTime":1767363437386,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3009,"timestamp":70097592,"id":256,"parentId":207,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/utils.js","layer":"rsc"},"startTime":1767363437386,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4182,"timestamp":70102350,"id":257,"parentId":207,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-opengraph.js","layer":"rsc"},"startTime":1767363437391,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4236,"timestamp":70103089,"id":258,"parentId":207,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-title.js","layer":"rsc"},"startTime":1767363437392,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7965,"timestamp":70114421,"id":259,"parentId":248,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"pages-dir-node"},"startTime":1767363437403,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2002,"timestamp":70124654,"id":260,"parentId":215,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/non-nullable.js","layer":"rsc"},"startTime":1767363437413,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2260,"timestamp":70124893,"id":261,"parentId":210,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/constants.js","layer":"rsc"},"startTime":1767363437414,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5283,"timestamp":70125083,"id":262,"parentId":207,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-basics.js","layer":"rsc"},"startTime":1767363437414,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5827,"timestamp":70125230,"id":263,"parentId":207,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-icons.js","layer":"rsc"},"startTime":1767363437414,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7617,"timestamp":70125488,"id":265,"parentId":207,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1767363437414,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11871,"timestamp":70125363,"id":264,"parentId":213,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icon-mark.js","layer":"rsc"},"startTime":1767363437414,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3591,"timestamp":70134656,"id":266,"parentId":259,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"pages-dir-node"},"startTime":1767363437423,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":2239013,"timestamp":67899392,"id":29,"parentId":22,"tags":{"request":"next/dist/pages/_document"},"startTime":1767363435188,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":81081,"timestamp":70141846,"id":267,"parentId":182,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/cookie/index.js","layer":"rsc"},"startTime":1767363437430,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3182,"timestamp":70223385,"id":274,"parentId":232,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/route-pattern-normalizer.js","layer":"rsc"},"startTime":1767363437512,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3836,"timestamp":70237884,"id":277,"parentId":244,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/next-url.js","layer":"pages-dir-node"},"startTime":1767363437527,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4348,"timestamp":70238154,"id":279,"parentId":244,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/error.js","layer":"pages-dir-node"},"startTime":1767363437527,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4791,"timestamp":70238338,"id":281,"parentId":244,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/cookies.js","layer":"pages-dir-node"},"startTime":1767363437527,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6877,"timestamp":70237649,"id":276,"parentId":197,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/string-hash/index.js","layer":"rsc"},"startTime":1767363437526,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9983,"timestamp":70237949,"id":278,"parentId":245,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/next-url.js","layer":"rsc"},"startTime":1767363437527,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11130,"timestamp":70238200,"id":280,"parentId":245,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/error.js","layer":"rsc"},"startTime":1767363437527,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11482,"timestamp":70238373,"id":282,"parentId":245,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/cookies.js","layer":"rsc"},"startTime":1767363437527,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":55654,"timestamp":70223732,"id":275,"parentId":227,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.node.production.js","layer":"rsc"},"startTime":1767363437512,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8573,"timestamp":70295295,"id":283,"parentId":257,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1767363437584,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11075,"timestamp":70295661,"id":284,"parentId":251,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-error.js","layer":"rsc"},"startTime":1767363437584,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":40,"timestamp":70313693,"id":285,"parentId":275,"tags":{"name":"util","layer":null},"startTime":1767363437602,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3011,"timestamp":70314611,"id":286,"parentId":265,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1767363437603,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4641,"timestamp":70314909,"id":287,"parentId":265,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/lru-cache.js","layer":"rsc"},"startTime":1767363437604,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6194,"timestamp":70315150,"id":288,"parentId":257,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-url.js","layer":"rsc"},"startTime":1767363437604,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4265,"timestamp":70328598,"id":289,"parentId":153,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-dom.js","layer":"rsc"},"startTime":1767363437617,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4911,"timestamp":70328925,"id":290,"parentId":277,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-hostname.js","layer":"pages-dir-node"},"startTime":1767363437618,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5301,"timestamp":70329069,"id":291,"parentId":278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-hostname.js","layer":"rsc"},"startTime":1767363437618,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6372,"timestamp":70329212,"id":292,"parentId":277,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","layer":"pages-dir-node"},"startTime":1767363437618,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7490,"timestamp":70329297,"id":293,"parentId":278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","layer":"rsc"},"startTime":1767363437618,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7258,"timestamp":70342735,"id":296,"parentId":232,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/path-to-regexp/index.js","layer":"rsc"},"startTime":1767363437631,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":22734,"timestamp":70329410,"id":294,"parentId":277,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","layer":"pages-dir-node"},"startTime":1767363437618,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":23335,"timestamp":70329488,"id":295,"parentId":278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","layer":"rsc"},"startTime":1767363437618,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2044,"timestamp":70357490,"id":298,"parentId":207,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/server-only/empty.js","layer":"rsc"},"startTime":1767363437646,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3066,"timestamp":70357315,"id":297,"parentId":292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":"pages-dir-node"},"startTime":1767363437646,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3004,"timestamp":70357734,"id":299,"parentId":277,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","layer":"pages-dir-node"},"startTime":1767363437646,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3979,"timestamp":70357825,"id":300,"parentId":278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","layer":"rsc"},"startTime":1767363437646,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1970,"timestamp":70360860,"id":301,"parentId":295,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"rsc"},"startTime":1767363437649,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5163,"timestamp":70372930,"id":302,"parentId":288,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/isomorphic/path.js","layer":"rsc"},"startTime":1767363437662,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3027,"timestamp":70379869,"id":303,"parentId":292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":"pages-dir-node"},"startTime":1767363437668,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3448,"timestamp":70380077,"id":304,"parentId":293,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":"rsc"},"startTime":1767363437669,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2018,"timestamp":70384090,"id":305,"parentId":294,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":"pages-dir-node"},"startTime":1767363437673,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2793,"timestamp":70384321,"id":307,"parentId":294,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":"pages-dir-node"},"startTime":1767363437673,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3288,"timestamp":70384374,"id":308,"parentId":295,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":"rsc"},"startTime":1767363437673,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7185,"timestamp":70384209,"id":306,"parentId":295,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":"rsc"},"startTime":1767363437673,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8327,"timestamp":70400090,"id":309,"parentId":281,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js","layer":"pages-dir-node"},"startTime":1767363437689,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13005,"timestamp":70400225,"id":310,"parentId":282,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js","layer":"rsc"},"startTime":1767363437689,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":2515557,"timestamp":67899271,"id":25,"parentId":22,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1767363435188,"traceId":"f0add02174dc0eb2"},{"name":"font-loader","duration":300122,"timestamp":70187595,"id":271,"parentId":270,"tags":{},"startTime":1767363437476,"traceId":"f0add02174dc0eb2"},{"name":"postcss","duration":4974,"timestamp":70788598,"id":311,"parentId":270,"tags":{},"startTime":1767363438077,"traceId":"f0add02174dc0eb2"},{"name":"next-font-loader","duration":648452,"timestamp":70145764,"id":270,"parentId":268,"tags":{},"startTime":1767363437434,"traceId":"f0add02174dc0eb2"},{"name":"css-loader","duration":37336,"timestamp":70793771,"id":312,"parentId":268,"tags":{"astUsed":"true"},"startTime":1767363438082,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":689649,"timestamp":70142092,"id":268,"parentId":108,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}","layer":"rsc"},"startTime":1767363437431,"traceId":"f0add02174dc0eb2"},{"name":"font-loader","duration":622837,"timestamp":70215805,"id":273,"parentId":272,"tags":{},"startTime":1767363437504,"traceId":"f0add02174dc0eb2"},{"name":"postcss","duration":1071,"timestamp":70838718,"id":313,"parentId":272,"tags":{},"startTime":1767363438127,"traceId":"f0add02174dc0eb2"},{"name":"next-font-loader","duration":624149,"timestamp":70215730,"id":272,"parentId":269,"tags":{},"startTime":1767363437504,"traceId":"f0add02174dc0eb2"},{"name":"css-loader","duration":2424,"timestamp":70839834,"id":314,"parentId":269,"tags":{"astUsed":"true"},"startTime":1767363438128,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":697266,"timestamp":70145457,"id":269,"parentId":108,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}","layer":"rsc"},"startTime":1767363437434,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":2944471,"timestamp":67898443,"id":23,"parentId":22,"tags":{"request":"next-app-loader?page=%2F_not-found%2Fpage&name=app%2F_not-found%2Fpage&pagePath=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found.js&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!"},"startTime":1767363435187,"traceId":"f0add02174dc0eb2"}]
4
- [{"name":"add-entry","duration":2943611,"timestamp":67899315,"id":26,"parentId":22,"tags":{"request":"next-app-loader?page=%2Fpage&name=app%2Fpage&pagePath=private-next-app-dir%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!"},"startTime":1767363435188,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":2943561,"timestamp":67899372,"id":28,"parentId":22,"tags":{"request":"next-app-loader?page=%2Fsettings%2Fpage&name=app%2Fsettings%2Fpage&pagePath=private-next-app-dir%2Fsettings%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fsettings%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!"},"startTime":1767363435188,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":2943590,"timestamp":67899349,"id":27,"parentId":22,"tags":{"request":"next-app-loader?page=%2Fproject%2F%5Bid%5D%2Fpage&name=app%2Fproject%2F%5Bid%5D%2Fpage&pagePath=private-next-app-dir%2Fproject%2F%5Bid%5D%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fproject%2F%5Bid%5D%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!"},"startTime":1767363435188,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":3010,"timestamp":70981173,"id":337,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fcomponents%2FDevErrorRecovery.tsx%22%2C%22ids%22%3A%5B%22DevErrorRecovery%22%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-sans%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistSans%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist_Mono%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-mono%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistMono%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767363438270,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":515,"timestamp":70984230,"id":338,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fcomponents%2FDevErrorRecovery.tsx%22%2C%22ids%22%3A%5B%22DevErrorRecovery%22%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-sans%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistSans%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist_Mono%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-mono%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistMono%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767363438273,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":1820,"timestamp":70984777,"id":339,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-error.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-segment.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fhttp-access-fallback%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fmetadata%2Fasync-metadata.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fframework%2Fboundary-components.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fmetadata%2Fgenerate%2Ficon-mark.js%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767363438273,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":976,"timestamp":70986632,"id":340,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-error.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-segment.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fhttp-access-fallback%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fmetadata%2Fasync-metadata.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fframework%2Fboundary-components.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fmetadata%2Fgenerate%2Ficon-mark.js%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767363438275,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":328,"timestamp":70987638,"id":341,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767363438276,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":341,"timestamp":70987989,"id":342,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767363438277,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":360,"timestamp":70988353,"id":343,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767363438277,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":325,"timestamp":70988737,"id":344,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767363438277,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":512,"timestamp":70989082,"id":345,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767363438278,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":324,"timestamp":70989613,"id":346,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767363438278,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":9320,"timestamp":71015904,"id":349,"parentId":343,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"ssr"},"startTime":1767363438305,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":11858,"timestamp":71015745,"id":348,"parentId":345,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"ssr"},"startTime":1767363438304,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":23442,"timestamp":71016068,"id":350,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-error.js","layer":"ssr"},"startTime":1767363438305,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":25383,"timestamp":71016611,"id":351,"parentId":337,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"ssr"},"startTime":1767363438305,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":28823,"timestamp":71014599,"id":347,"parentId":341,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"ssr"},"startTime":1767363438303,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":27348,"timestamp":71016979,"id":355,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1767363438306,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":29560,"timestamp":71016806,"id":353,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-segment.js","layer":"ssr"},"startTime":1767363438305,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":29503,"timestamp":71020607,"id":358,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/metadata/async-metadata.js","layer":"ssr"},"startTime":1767363438309,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":34359,"timestamp":71020050,"id":356,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-components.js","layer":"ssr"},"startTime":1767363438309,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":36954,"timestamp":71020442,"id":357,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js","layer":"ssr"},"startTime":1767363438309,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":42191,"timestamp":71016739,"id":352,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1767363438305,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":54397,"timestamp":71016868,"id":354,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1767363438305,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9747,"timestamp":71100486,"id":361,"parentId":353,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/params.js","layer":"ssr"},"startTime":1767363438389,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10412,"timestamp":71100721,"id":362,"parentId":356,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-constants.js","layer":"ssr"},"startTime":1767363438389,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":22073,"timestamp":71100949,"id":363,"parentId":352,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/search-params.js","layer":"ssr"},"startTime":1767363438390,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":32748,"timestamp":71091821,"id":359,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icon-mark.js","layer":"ssr"},"startTime":1767363438380,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":25759,"timestamp":71101300,"id":365,"parentId":357,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1767363438390,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":27121,"timestamp":71101188,"id":364,"parentId":357,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"ssr"},"startTime":1767363438390,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":28475,"timestamp":71100259,"id":360,"parentId":353,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/invariant-error.js","layer":"ssr"},"startTime":1767363438389,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":28179,"timestamp":71101395,"id":366,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1767363438390,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4563,"timestamp":71149517,"id":367,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/dynamic-rendering-utils.js","layer":"ssr"},"startTime":1767363438438,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5575,"timestamp":71149848,"id":368,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/create-deduped-by-callsite-server-error-logger.js","layer":"ssr"},"startTime":1767363438438,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5092,"timestamp":71150802,"id":373,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1767363438439,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":16007,"timestamp":71150575,"id":371,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/reflect-utils.js","layer":"ssr"},"startTime":1767363438439,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":16002,"timestamp":71151040,"id":374,"parentId":366,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1767363438440,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17040,"timestamp":71150691,"id":372,"parentId":366,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1767363438439,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":18257,"timestamp":71150367,"id":370,"parentId":363,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/utils.js","layer":"ssr"},"startTime":1767363438439,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":28553,"timestamp":71150139,"id":369,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1767363438439,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2659,"timestamp":71199711,"id":375,"parentId":369,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/scheduler.js","layer":"ssr"},"startTime":1767363438488,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7192,"timestamp":71200022,"id":376,"parentId":370,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1767363438489,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10526,"timestamp":71200199,"id":377,"parentId":369,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1767363438489,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11144,"timestamp":71200308,"id":378,"parentId":369,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1767363438489,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9258,"timestamp":71207412,"id":379,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1767363438496,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9659,"timestamp":71207605,"id":380,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1767363438496,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10241,"timestamp":71207726,"id":381,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1767363438496,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11197,"timestamp":71207913,"id":383,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/use-action-queue.js","layer":"ssr"},"startTime":1767363438497,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12208,"timestamp":71207997,"id":384,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/bfcache.js","layer":"ssr"},"startTime":1767363438497,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12922,"timestamp":71208108,"id":385,"parentId":357,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation-untracked.js","layer":"ssr"},"startTime":1767363438497,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":14917,"timestamp":71208186,"id":386,"parentId":350,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/handle-isr-error.js","layer":"ssr"},"startTime":1767363438497,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":15618,"timestamp":71208266,"id":387,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.js","layer":"ssr"},"startTime":1767363438497,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17936,"timestamp":71207829,"id":382,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1767363438496,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4054,"timestamp":71243749,"id":392,"parentId":355,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1767363438532,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5129,"timestamp":71244554,"id":393,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1767363438533,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9694,"timestamp":71243400,"id":388,"parentId":379,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1767363438532,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10162,"timestamp":71243692,"id":391,"parentId":379,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1767363438532,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10959,"timestamp":71243634,"id":390,"parentId":382,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-error.js","layer":"ssr"},"startTime":1767363438532,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10714,"timestamp":71244765,"id":394,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1767363438533,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11174,"timestamp":71244936,"id":396,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"ssr"},"startTime":1767363438534,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12876,"timestamp":71243559,"id":389,"parentId":383,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-thenable.js","layer":"ssr"},"startTime":1767363438532,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17416,"timestamp":71244855,"id":395,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1767363438533,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5668,"timestamp":71266563,"id":397,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"ssr"},"startTime":1767363438555,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6982,"timestamp":71289132,"id":399,"parentId":391,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"ssr"},"startTime":1767363438578,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7902,"timestamp":71288915,"id":398,"parentId":390,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1767363438578,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1388,"timestamp":71298158,"id":401,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js","layer":"ssr"},"startTime":1767363438587,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1383,"timestamp":71298443,"id":402,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js","layer":"ssr"},"startTime":1767363438587,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10464,"timestamp":71296986,"id":400,"parentId":395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1767363438586,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7418,"timestamp":71302497,"id":403,"parentId":397,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"ssr"},"startTime":1767363438591,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1718,"timestamp":71312975,"id":404,"parentId":401,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1767363438602,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4045,"timestamp":71313204,"id":405,"parentId":379,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/nav-failure-handler.js","layer":"ssr"},"startTime":1767363438602,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5690,"timestamp":71313293,"id":406,"parentId":382,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1767363438602,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7114,"timestamp":71313359,"id":407,"parentId":382,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1767363438602,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4656,"timestamp":71330268,"id":408,"parentId":395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1767363438619,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4928,"timestamp":71330788,"id":411,"parentId":395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-build-id.js","layer":"ssr"},"startTime":1767363438619,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6596,"timestamp":71330655,"id":410,"parentId":395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1767363438619,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12338,"timestamp":71330980,"id":413,"parentId":395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/set-cache-busting-search-param.js","layer":"ssr"},"startTime":1767363438620,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13740,"timestamp":71330493,"id":409,"parentId":395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-find-source-map-url.js","layer":"ssr"},"startTime":1767363438619,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":14797,"timestamp":71330890,"id":412,"parentId":395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/route-params.js","layer":"ssr"},"startTime":1767363438620,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2014,"timestamp":71350074,"id":414,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-dom.js","layer":"ssr"},"startTime":1767363438639,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":4451,"timestamp":71353918,"id":416,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/Header.tsx","layer":"ssr"},"startTime":1767363438643,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4728,"timestamp":71355678,"id":417,"parentId":412,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js","layer":"ssr"},"startTime":1767363438644,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":7167,"timestamp":71356293,"id":419,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/input.tsx","layer":"ssr"},"startTime":1767363438645,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":7866,"timestamp":71356081,"id":418,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/button.tsx","layer":"ssr"},"startTime":1767363438645,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":8314,"timestamp":71356490,"id":420,"parentId":349,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/workspace/WorkspaceLayout.tsx","layer":"ssr"},"startTime":1767363438645,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":11384,"timestamp":71368055,"id":421,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectList.tsx","layer":"ssr"},"startTime":1767363438657,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":13124,"timestamp":71368348,"id":422,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectModal.tsx","layer":"ssr"},"startTime":1767363438657,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1172,"timestamp":71382337,"id":423,"parentId":355,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js","layer":"ssr"},"startTime":1767363438671,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":30257,"timestamp":71353672,"id":415,"parentId":349,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1767363438642,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1401,"timestamp":71409312,"id":424,"parentId":395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-server-dom-webpack-client.js","layer":"ssr"},"startTime":1767363438698,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":5702,"timestamp":71409513,"id":425,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/api.ts","layer":"ssr"},"startTime":1767363438698,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":6584,"timestamp":71409646,"id":426,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useProjectStore.ts","layer":"ssr"},"startTime":1767363438698,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3700,"timestamp":71440538,"id":429,"parentId":406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unrecognized-action-error.js","layer":"ssr"},"startTime":1767363438729,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4502,"timestamp":71440431,"id":428,"parentId":406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1767363438729,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8203,"timestamp":71440174,"id":427,"parentId":406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1767363438729,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2532,"timestamp":71452621,"id":432,"parentId":385,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js","layer":"ssr"},"startTime":1767363438741,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10692,"timestamp":71445446,"id":430,"parentId":405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"ssr"},"startTime":1767363438734,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11165,"timestamp":71445614,"id":431,"parentId":406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"ssr"},"startTime":1767363438734,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5598,"timestamp":71452928,"id":433,"parentId":413,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/cache-busting-search-param.js","layer":"ssr"},"startTime":1767363438742,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":4811,"timestamp":71464122,"id":435,"parentId":416,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/LanguageSwitcher.tsx","layer":"ssr"},"startTime":1767363438753,"traceId":"f0add02174dc0eb2"}]
5
- [{"name":"build-module-ts","duration":7092,"timestamp":71463767,"id":434,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/index.ts","layer":"ssr"},"startTime":1767363438752,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":12157,"timestamp":71472241,"id":437,"parentId":421,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectCard.tsx","layer":"ssr"},"startTime":1767363438761,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":14315,"timestamp":71471927,"id":436,"parentId":421,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectCard.tsx","layer":"ssr"},"startTime":1767363438761,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":65352,"timestamp":71472474,"id":438,"parentId":348,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Check,FolderOpen,Loader2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363438761,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":30126,"timestamp":71508803,"id":442,"parentId":427,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1767363438797,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":30959,"timestamp":71508978,"id":443,"parentId":427,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/forbidden.js","layer":"ssr"},"startTime":1767363438798,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":31706,"timestamp":71509128,"id":444,"parentId":427,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unauthorized.js","layer":"ssr"},"startTime":1767363438798,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":32289,"timestamp":71509211,"id":445,"parentId":427,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unstable-rethrow.js","layer":"ssr"},"startTime":1767363438798,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":82964,"timestamp":71472721,"id":440,"parentId":416,"tags":{"name":"__barrel_optimize__?names=ArrowLeft,Settings!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363438761,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":83220,"timestamp":71472830,"id":441,"parentId":420,"tags":{"name":"__barrel_optimize__?names=FolderTree,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363438761,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":83995,"timestamp":71472610,"id":439,"parentId":349,"tags":{"name":"__barrel_optimize__?names=AlertCircle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363438761,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":16130,"timestamp":71542433,"id":446,"parentId":437,"tags":{"name":"__barrel_optimize__?names=Plus,Sparkles!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363438831,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":16168,"timestamp":71542635,"id":447,"parentId":436,"tags":{"name":"__barrel_optimize__?names=Globe,Server,Smartphone,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363438831,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7985,"timestamp":71563383,"id":448,"parentId":433,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1767363438852,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1145,"timestamp":71572063,"id":451,"parentId":406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/server-inserted-html.js","layer":"ssr"},"startTime":1767363438861,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":3771,"timestamp":71572189,"id":452,"parentId":419,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/utils.ts","layer":"ssr"},"startTime":1767363438861,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":8872,"timestamp":71571701,"id":449,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/dialog.tsx","layer":"ssr"},"startTime":1767363438860,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17686,"timestamp":71571910,"id":450,"parentId":416,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/api/image.js","layer":"ssr"},"startTime":1767363438861,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":9034,"timestamp":71581960,"id":454,"parentId":420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ChatPanel.tsx","layer":"ssr"},"startTime":1767363438871,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":17495,"timestamp":71586861,"id":455,"parentId":420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/PreviewPanel.tsx","layer":"ssr"},"startTime":1767363438875,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":26992,"timestamp":71581816,"id":453,"parentId":416,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-dir/link.js","layer":"ssr"},"startTime":1767363438870,"traceId":"f0add02174dc0eb2"},{"name":"build-module-json","duration":1387,"timestamp":71624228,"id":457,"parentId":434,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/en.json","layer":"ssr"},"startTime":1767363438913,"traceId":"f0add02174dc0eb2"},{"name":"build-module-json","duration":1067,"timestamp":71624683,"id":458,"parentId":434,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/ko.json","layer":"ssr"},"startTime":1767363438913,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":16017,"timestamp":71624070,"id":456,"parentId":445,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unstable-rethrow.server.js","layer":"ssr"},"startTime":1767363438913,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":17920,"timestamp":71624718,"id":459,"parentId":420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileExplorer.tsx","layer":"ssr"},"startTime":1767363438913,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":19377,"timestamp":71624851,"id":460,"parentId":420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileViewer.tsx","layer":"ssr"},"startTime":1767363438913,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9970,"timestamp":71645531,"id":461,"parentId":454,"tags":{"name":"__barrel_optimize__?names=MessageSquarePlus!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363438934,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":6758,"timestamp":71656127,"id":464,"parentId":418,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/class-variance-authority@0.7.1/node_modules/class-variance-authority/dist/index.mjs","layer":"ssr"},"startTime":1767363438945,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":34364,"timestamp":71655776,"id":462,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1767363438944,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":35887,"timestamp":71655981,"id":463,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1767363438945,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":36281,"timestamp":71656328,"id":465,"parentId":455,"tags":{"name":"__barrel_optimize__?names=ExternalLink,Loader2,Package,Play,RefreshCw,RotateCcw,Square,Zap!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363438945,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3361,"timestamp":71697328,"id":466,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/router-utils/is-postpone.js","layer":"ssr"},"startTime":1767363438986,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":10883,"timestamp":71704646,"id":469,"parentId":434,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/middleware.mjs","layer":"ssr"},"startTime":1767363438993,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17748,"timestamp":71704501,"id":468,"parentId":460,"tags":{"name":"__barrel_optimize__?names=Check,Copy,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363438993,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":18308,"timestamp":71704289,"id":467,"parentId":459,"tags":{"name":"__barrel_optimize__?names=ChevronDown,ChevronRight,File,Folder,FolderOpen,RefreshCw!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363438993,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4742,"timestamp":71721234,"id":470,"parentId":463,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1767363439010,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5860,"timestamp":71732313,"id":471,"parentId":438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-alert.js","layer":"ssr"},"startTime":1767363439021,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6124,"timestamp":71732508,"id":472,"parentId":438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/check.js","layer":"ssr"},"startTime":1767363439021,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6427,"timestamp":71732632,"id":473,"parentId":438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-open.js","layer":"ssr"},"startTime":1767363439021,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6684,"timestamp":71732741,"id":474,"parentId":438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/loader-circle.js","layer":"ssr"},"startTime":1767363439021,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6908,"timestamp":71732847,"id":475,"parentId":440,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-left.js","layer":"ssr"},"startTime":1767363439021,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8497,"timestamp":71732940,"id":476,"parentId":440,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings.js","layer":"ssr"},"startTime":1767363439022,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8769,"timestamp":71733060,"id":477,"parentId":441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-tree.js","layer":"ssr"},"startTime":1767363439022,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9062,"timestamp":71733159,"id":478,"parentId":441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/x.js","layer":"ssr"},"startTime":1767363439022,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":894,"timestamp":71743773,"id":479,"parentId":426,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/index.mjs","layer":"ssr"},"startTime":1767363439032,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2305,"timestamp":71747033,"id":480,"parentId":446,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/plus.js","layer":"ssr"},"startTime":1767363439036,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4129,"timestamp":71749471,"id":481,"parentId":446,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sparkles.js","layer":"ssr"},"startTime":1767363439038,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4157,"timestamp":71749793,"id":484,"parentId":447,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/smartphone.js","layer":"ssr"},"startTime":1767363439038,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4578,"timestamp":71749708,"id":483,"parentId":447,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/globe.js","layer":"ssr"},"startTime":1767363439038,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5263,"timestamp":71749952,"id":486,"parentId":450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-external.js","layer":"ssr"},"startTime":1767363439039,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6977,"timestamp":71749622,"id":482,"parentId":447,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/server.js","layer":"ssr"},"startTime":1767363439038,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":10275,"timestamp":71751351,"id":487,"parentId":437,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/card.tsx","layer":"ssr"},"startTime":1767363439040,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11110,"timestamp":71751571,"id":488,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/use-merged-ref.js","layer":"ssr"},"startTime":1767363439040,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13276,"timestamp":71749878,"id":485,"parentId":447,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/trash-2.js","layer":"ssr"},"startTime":1767363439038,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12384,"timestamp":71751670,"id":489,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1767363439040,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9267,"timestamp":71766049,"id":490,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/links.js","layer":"ssr"},"startTime":1767363439055,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8445,"timestamp":71776498,"id":494,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/segment-cache.js","layer":"ssr"},"startTime":1767363439065,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9181,"timestamp":71776294,"id":492,"parentId":461,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-plus.js","layer":"ssr"},"startTime":1767363439065,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":10488,"timestamp":71775982,"id":491,"parentId":454,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageList.tsx","layer":"ssr"},"startTime":1767363439065,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11701,"timestamp":71776685,"id":496,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1767363439065,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":15596,"timestamp":71780703,"id":497,"parentId":489,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1767363439069,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":23507,"timestamp":71776411,"id":493,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-instance.js","layer":"ssr"},"startTime":1767363439065,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":19351,"timestamp":71781108,"id":499,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/package.js","layer":"ssr"},"startTime":1767363439070,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":19656,"timestamp":71781219,"id":500,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/external-link.js","layer":"ssr"},"startTime":1767363439070,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":24711,"timestamp":71776588,"id":495,"parentId":453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/error-once.js","layer":"ssr"},"startTime":1767363439065,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":22469,"timestamp":71780866,"id":498,"parentId":454,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageInput.tsx","layer":"ssr"},"startTime":1767363439069,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3587,"timestamp":71816495,"id":501,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/play.js","layer":"ssr"},"startTime":1767363439105,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3811,"timestamp":71816708,"id":502,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rotate-ccw.js","layer":"ssr"},"startTime":1767363439105,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6707,"timestamp":71816947,"id":504,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/zap.js","layer":"ssr"},"startTime":1767363439106,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7243,"timestamp":71816839,"id":503,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/refresh-cw.js","layer":"ssr"},"startTime":1767363439105,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7234,"timestamp":71817193,"id":506,"parentId":468,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/copy.js","layer":"ssr"},"startTime":1767363439106,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7669,"timestamp":71817081,"id":505,"parentId":465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square.js","layer":"ssr"},"startTime":1767363439106,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8844,"timestamp":71817285,"id":507,"parentId":467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-down.js","layer":"ssr"},"startTime":1767363439106,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5827,"timestamp":71820857,"id":509,"parentId":497,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1767363439109,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5877,"timestamp":71821111,"id":511,"parentId":467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-right.js","layer":"ssr"},"startTime":1767363439110,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6348,"timestamp":71820970,"id":510,"parentId":467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file.js","layer":"ssr"},"startTime":1767363439110,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6381,"timestamp":71821225,"id":512,"parentId":467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder.js","layer":"ssr"},"startTime":1767363439110,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12233,"timestamp":71820684,"id":508,"parentId":498,"tags":{"name":"__barrel_optimize__?names=Clock,Paperclip,Send!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363439109,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3331,"timestamp":71836147,"id":513,"parentId":471,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/createLucideIcon.js","layer":"ssr"},"startTime":1767363439125,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":12613,"timestamp":71861575,"id":515,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/usePreviewStore.ts","layer":"ssr"},"startTime":1767363439150,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":19845,"timestamp":71861816,"id":516,"parentId":486,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/image-component.js","layer":"ssr"},"startTime":1767363439150,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":21035,"timestamp":71886187,"id":520,"parentId":479,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/vanilla.mjs","layer":"ssr"},"startTime":1767363439175,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":63652,"timestamp":71861924,"id":517,"parentId":486,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-img-props.js","layer":"ssr"},"startTime":1767363439151,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":74360,"timestamp":71861244,"id":514,"parentId":454,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useChatStore.ts","layer":"ssr"},"startTime":1767363439150,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":66784,"timestamp":71882721,"id":518,"parentId":489,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1767363439171,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":72859,"timestamp":71882945,"id":519,"parentId":490,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1767363439172,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":9194,"timestamp":71958461,"id":521,"parentId":452,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","layer":"ssr"},"startTime":1767363439247,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":9690,"timestamp":71958912,"id":522,"parentId":479,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/react.mjs","layer":"ssr"},"startTime":1767363439248,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8416,"timestamp":71975955,"id":523,"parentId":516,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"ssr"},"startTime":1767363439265,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":14869,"timestamp":71980347,"id":525,"parentId":519,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1767363439269,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":15704,"timestamp":71980156,"id":524,"parentId":518,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1767363439269,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":16139,"timestamp":71980465,"id":526,"parentId":493,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1767363439269,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":12202,"timestamp":71985735,"id":527,"parentId":491,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageItem.tsx","layer":"ssr"},"startTime":1767363439274,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":13255,"timestamp":71986045,"id":528,"parentId":491,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/StreamingMessage.tsx","layer":"ssr"},"startTime":1767363439275,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13305,"timestamp":71986272,"id":529,"parentId":508,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock.js","layer":"ssr"},"startTime":1767363439275,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13891,"timestamp":71986409,"id":530,"parentId":493,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1767363439275,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":23965,"timestamp":72001533,"id":531,"parentId":452,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/tailwind-merge@2.6.0/node_modules/tailwind-merge/dist/bundle-mjs.mjs","layer":"ssr"},"startTime":1767363439290,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":7219,"timestamp":72033729,"id":534,"parentId":422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/index.ts","layer":"ssr"},"startTime":1767363439322,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9280,"timestamp":72033620,"id":533,"parentId":523,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"ssr"},"startTime":1767363439322,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10249,"timestamp":72033445,"id":532,"parentId":523,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"ssr"},"startTime":1767363439322,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7061,"timestamp":72036927,"id":538,"parentId":508,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/paperclip.js","layer":"ssr"},"startTime":1767363439326,"traceId":"f0add02174dc0eb2"}]
6
- [{"name":"build-module-js","duration":7530,"timestamp":72036826,"id":537,"parentId":525,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1767363439325,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7566,"timestamp":72037041,"id":539,"parentId":508,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/send.js","layer":"ssr"},"startTime":1767363439326,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8435,"timestamp":72036540,"id":535,"parentId":527,"tags":{"name":"__barrel_optimize__?names=Bot,CheckCircle2,Edit3,FileText,FolderSearch,Globe,ListTodo,Search,Terminal!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363439325,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8638,"timestamp":72036700,"id":536,"parentId":528,"tags":{"name":"__barrel_optimize__?names=Bot,CheckCircle2,Edit3,FileText,FolderSearch,Globe,ListTodo,Loader2,Search,Terminal!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363439325,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":5669,"timestamp":72048452,"id":541,"parentId":498,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/FilePreview.tsx","layer":"ssr"},"startTime":1767363439337,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7570,"timestamp":72048312,"id":540,"parentId":486,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-loader.js","layer":"ssr"},"startTime":1767363439337,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":10606,"timestamp":72048576,"id":542,"parentId":498,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ModeToggle.tsx","layer":"ssr"},"startTime":1767363439337,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11775,"timestamp":72048689,"id":543,"parentId":513,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/Icon.js","layer":"ssr"},"startTime":1767363439337,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6352,"timestamp":72067375,"id":544,"parentId":516,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config.js","layer":"ssr"},"startTime":1767363439356,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8088,"timestamp":72073981,"id":545,"parentId":513,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/shared/src/utils.js","layer":"ssr"},"startTime":1767363439363,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7251,"timestamp":72076180,"id":549,"parentId":517,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-blur-svg.js","layer":"ssr"},"startTime":1767363439365,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8100,"timestamp":72076289,"id":550,"parentId":519,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1767363439365,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8886,"timestamp":72076112,"id":548,"parentId":519,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1767363439365,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10341,"timestamp":72076385,"id":551,"parentId":519,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1767363439365,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11256,"timestamp":72075864,"id":546,"parentId":541,"tags":{"name":"__barrel_optimize__?names=FileText,Loader2,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363439364,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":21737,"timestamp":72075997,"id":547,"parentId":542,"tags":{"name":"__barrel_optimize__?names=Hammer,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363439365,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11419,"timestamp":72087883,"id":552,"parentId":519,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"ssr"},"startTime":1767363439377,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6974,"timestamp":72103685,"id":553,"parentId":530,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1767363439392,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8337,"timestamp":72105379,"id":556,"parentId":526,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1767363439394,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9209,"timestamp":72105251,"id":555,"parentId":526,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"ssr"},"startTime":1767363439394,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10018,"timestamp":72105480,"id":557,"parentId":526,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/hmr-refresh-reducer.js","layer":"ssr"},"startTime":1767363439394,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10659,"timestamp":72105719,"id":560,"parentId":519,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/root-error-boundary.js","layer":"ssr"},"startTime":1767363439394,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":16532,"timestamp":72103826,"id":554,"parentId":526,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1767363439392,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":16347,"timestamp":72105639,"id":559,"parentId":526,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1767363439394,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":45890,"timestamp":72105559,"id":558,"parentId":526,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"ssr"},"startTime":1767363439394,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":43395,"timestamp":72111301,"id":561,"parentId":530,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1767363439400,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":84744,"timestamp":72163245,"id":563,"parentId":460,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/prism-react-renderer@2.4.1_react@19.2.3/node_modules/prism-react-renderer/dist/index.mjs","layer":"ssr"},"startTime":1767363439452,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":91134,"timestamp":72162964,"id":562,"parentId":535,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bot.js","layer":"ssr"},"startTime":1767363439452,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4458,"timestamp":72254506,"id":564,"parentId":535,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-check.js","layer":"ssr"},"startTime":1767363439543,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4474,"timestamp":72254791,"id":566,"parentId":535,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-text.js","layer":"ssr"},"startTime":1767363439543,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4675,"timestamp":72254854,"id":567,"parentId":535,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-search.js","layer":"ssr"},"startTime":1767363439543,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4879,"timestamp":72254909,"id":568,"parentId":535,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-todo.js","layer":"ssr"},"startTime":1767363439544,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5212,"timestamp":72254962,"id":569,"parentId":535,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/terminal.js","layer":"ssr"},"startTime":1767363439544,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5691,"timestamp":72254713,"id":565,"parentId":535,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pen-line.js","layer":"ssr"},"startTime":1767363439543,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5608,"timestamp":72255035,"id":570,"parentId":535,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/search.js","layer":"ssr"},"startTime":1767363439544,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":4989,"timestamp":72261185,"id":571,"parentId":527,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MarkdownRenderer.tsx","layer":"ssr"},"startTime":1767363439550,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4841,"timestamp":72268932,"id":573,"parentId":543,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/defaultAttributes.js","layer":"ssr"},"startTime":1767363439558,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":7324,"timestamp":72268619,"id":572,"parentId":528,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/AskUserQuestionBlock.tsx","layer":"ssr"},"startTime":1767363439557,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4052,"timestamp":72276385,"id":574,"parentId":523,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/amp-context.js","layer":"ssr"},"startTime":1767363439565,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3951,"timestamp":72276672,"id":575,"parentId":523,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/head-manager-context.js","layer":"ssr"},"startTime":1767363439565,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7179,"timestamp":72276999,"id":577,"parentId":547,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-question.js","layer":"ssr"},"startTime":1767363439566,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7633,"timestamp":72276880,"id":576,"parentId":547,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hammer.js","layer":"ssr"},"startTime":1767363439565,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4589,"timestamp":72292061,"id":578,"parentId":572,"tags":{"name":"__barrel_optimize__?names=Check,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363439581,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2096,"timestamp":72299401,"id":581,"parentId":516,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/image-config-context.js","layer":"ssr"},"startTime":1767363439588,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1950,"timestamp":72299805,"id":583,"parentId":516,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/router-context.js","layer":"ssr"},"startTime":1767363439588,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":9349,"timestamp":72296904,"id":579,"parentId":534,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/chat.ts","layer":"ssr"},"startTime":1767363439586,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":7393,"timestamp":72299167,"id":580,"parentId":534,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/preview.ts","layer":"ssr"},"startTime":1767363439588,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8181,"timestamp":72299990,"id":584,"parentId":560,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/graceful-degrade-boundary.js","layer":"ssr"},"startTime":1767363439589,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":9100,"timestamp":72299619,"id":582,"parentId":534,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/project.ts","layer":"ssr"},"startTime":1767363439588,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":14728,"timestamp":72300114,"id":585,"parentId":556,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1767363439589,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5337,"timestamp":72324306,"id":586,"parentId":555,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"ssr"},"startTime":1767363439613,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5362,"timestamp":72330411,"id":588,"parentId":555,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1767363439619,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8126,"timestamp":72330239,"id":587,"parentId":585,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"ssr"},"startTime":1767363439619,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8824,"timestamp":72330551,"id":589,"parentId":555,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1767363439619,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7600,"timestamp":72332366,"id":590,"parentId":557,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1767363439621,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8273,"timestamp":72332490,"id":591,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"ssr"},"startTime":1767363439621,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8828,"timestamp":72332571,"id":592,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1767363439621,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":14003,"timestamp":72332728,"id":594,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"ssr"},"startTime":1767363439621,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":18858,"timestamp":72332647,"id":593,"parentId":554,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/aliased-prefetch-navigations.js","layer":"ssr"},"startTime":1767363439621,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":20440,"timestamp":72332816,"id":595,"parentId":559,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"ssr"},"startTime":1767363439621,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7642,"timestamp":72354784,"id":596,"parentId":586,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"ssr"},"startTime":1767363439643,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4157,"timestamp":72362703,"id":597,"parentId":558,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/assign-location.js","layer":"ssr"},"startTime":1767363439651,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5021,"timestamp":72362852,"id":598,"parentId":558,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/server-reference-info.js","layer":"ssr"},"startTime":1767363439651,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4116,"timestamp":72376804,"id":599,"parentId":588,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"ssr"},"startTime":1767363439665,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2935,"timestamp":72386815,"id":600,"parentId":553,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1767363439675,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3049,"timestamp":72387134,"id":601,"parentId":553,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1767363439676,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":4018,"timestamp":72387602,"id":603,"parentId":572,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/checkbox.tsx","layer":"ssr"},"startTime":1767363439676,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":4816,"timestamp":72387364,"id":602,"parentId":572,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/label.tsx","layer":"ssr"},"startTime":1767363439676,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":10870,"timestamp":72387816,"id":604,"parentId":572,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/radio-group.tsx","layer":"ssr"},"startTime":1767363439676,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2365,"timestamp":72402079,"id":606,"parentId":571,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/index.js","layer":"ssr"},"startTime":1767363439691,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2480,"timestamp":72402263,"id":607,"parentId":571,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/index.js","layer":"ssr"},"startTime":1767363439691,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5565,"timestamp":72401870,"id":605,"parentId":603,"tags":{"name":"__barrel_optimize__?names=Check!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363439690,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3120,"timestamp":72405301,"id":608,"parentId":604,"tags":{"name":"__barrel_optimize__?names=Circle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767363439694,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2942,"timestamp":72410712,"id":609,"parentId":599,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"ssr"},"startTime":1767363439699,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2178,"timestamp":72415655,"id":610,"parentId":608,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle.js","layer":"ssr"},"startTime":1767363439704,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3994,"timestamp":72417963,"id":611,"parentId":606,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/lib/index.js","layer":"ssr"},"startTime":1767363439707,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4401,"timestamp":72418211,"id":612,"parentId":607,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/lib/index.js","layer":"ssr"},"startTime":1767363439707,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":3272,"timestamp":72450304,"id":613,"parentId":602,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-label@2.1.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2.7__ggc7d2jno3gcorzflrswkya7gm/node_modules/@radix-ui/react-label/dist/index.mjs","layer":"ssr"},"startTime":1767363439739,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":8122,"timestamp":72455026,"id":614,"parentId":604,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-radio-group@1.3.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@1_cjtgf3xmcqtfujhoownb73bnbi/node_modules/@radix-ui/react-radio-group/dist/index.mjs","layer":"ssr"},"startTime":1767363439744,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":7164,"timestamp":72464769,"id":615,"parentId":603,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-checkbox@1.3.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2_bewiq6cjocmach7p37abfyy75a/node_modules/@radix-ui/react-checkbox/dist/index.mjs","layer":"ssr"},"startTime":1767363439753,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":815,"timestamp":72500040,"id":616,"parentId":611,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-to-jsx-runtime@2.3.6/node_modules/hast-util-to-jsx-runtime/index.js","layer":"ssr"},"startTime":1767363439789,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":843,"timestamp":72512675,"id":617,"parentId":611,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/html-url-attributes@3.0.1/node_modules/html-url-attributes/index.js","layer":"ssr"},"startTime":1767363439801,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":651,"timestamp":72522577,"id":618,"parentId":611,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/index.js","layer":"ssr"},"startTime":1767363439811,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":613,"timestamp":72526936,"id":619,"parentId":611,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/index.js","layer":"ssr"},"startTime":1767363439816,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":759,"timestamp":72542643,"id":620,"parentId":611,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.js","layer":"ssr"},"startTime":1767363439831,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":700,"timestamp":72542847,"id":621,"parentId":611,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.js","layer":"ssr"},"startTime":1767363439831,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":697,"timestamp":72550761,"id":622,"parentId":611,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit@5.0.0/node_modules/unist-util-visit/index.js","layer":"ssr"},"startTime":1767363439839,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":691,"timestamp":72552464,"id":623,"parentId":612,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/index.js","layer":"ssr"},"startTime":1767363439841,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1056,"timestamp":72557399,"id":624,"parentId":612,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm@3.0.0/node_modules/micromark-extension-gfm/index.js","layer":"ssr"},"startTime":1767363439846,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":897,"timestamp":72567065,"id":625,"parentId":611,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/devlop@1.1.0/node_modules/devlop/lib/default.js","layer":"ssr"},"startTime":1767363439856,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3635,"timestamp":72635808,"id":626,"parentId":616,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-to-jsx-runtime@2.3.6/node_modules/hast-util-to-jsx-runtime/lib/index.js","layer":"ssr"},"startTime":1767363439924,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":916,"timestamp":72642607,"id":627,"parentId":617,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/html-url-attributes@3.0.1/node_modules/html-url-attributes/lib/index.js","layer":"ssr"},"startTime":1767363439931,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1196,"timestamp":72642784,"id":628,"parentId":618,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/lib/index.js","layer":"ssr"},"startTime":1767363439931,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1374,"timestamp":72654392,"id":629,"parentId":619,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/lib/index.js","layer":"ssr"},"startTime":1767363439943,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3649,"timestamp":72657247,"id":630,"parentId":620,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/index.js","layer":"ssr"},"startTime":1767363439946,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3540,"timestamp":72662255,"id":631,"parentId":621,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/index.js","layer":"ssr"},"startTime":1767363439951,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1697,"timestamp":72670174,"id":632,"parentId":622,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit@5.0.0/node_modules/unist-util-visit/lib/index.js","layer":"ssr"},"startTime":1767363439959,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1861,"timestamp":72670518,"id":633,"parentId":623,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/lib/index.js","layer":"ssr"},"startTime":1767363439959,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1128,"timestamp":72691543,"id":634,"parentId":613,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-primitive@2.1.4_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._4sfldbbhvd3xapj4euqmtg5wga/node_modules/@radix-ui/react-primitive/dist/index.mjs","layer":"ssr"},"startTime":1767363439980,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1308,"timestamp":72696149,"id":635,"parentId":614,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-primitive@2.1.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._vrijsupjqixawruberrfb56pbm/node_modules/@radix-ui/react-primitive/dist/index.mjs","layer":"ssr"},"startTime":1767363439985,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":2601,"timestamp":72696325,"id":636,"parentId":614,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-context@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-context/dist/index.mjs","layer":"ssr"},"startTime":1767363439985,"traceId":"f0add02174dc0eb2"}]
7
- [{"name":"build-module-mjs","duration":14237,"timestamp":72701646,"id":637,"parentId":614,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-roving-focus@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react_olorlwzqifzjwjsjwfg7df3ffe/node_modules/@radix-ui/react-roving-focus/dist/index.mjs","layer":"ssr"},"startTime":1767363439990,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":915,"timestamp":72735310,"id":638,"parentId":619,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/index.js","layer":"ssr"},"startTime":1767363440024,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1423,"timestamp":72750225,"id":639,"parentId":624,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-combine-extensions@2.0.1/node_modules/micromark-util-combine-extensions/index.js","layer":"ssr"},"startTime":1767363440039,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":2554,"timestamp":72750436,"id":640,"parentId":614,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-controllable-state@1.2.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-controllable-state/dist/index.mjs","layer":"ssr"},"startTime":1767363440039,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":579,"timestamp":72760491,"id":641,"parentId":624,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/index.js","layer":"ssr"},"startTime":1767363440049,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":963,"timestamp":72779092,"id":642,"parentId":624,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/index.js","layer":"ssr"},"startTime":1767363440068,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":558,"timestamp":72783325,"id":643,"parentId":624,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/index.js","layer":"ssr"},"startTime":1767363440072,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1077,"timestamp":72789081,"id":644,"parentId":614,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-compose-refs@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-compose-refs/dist/index.mjs","layer":"ssr"},"startTime":1767363440078,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1472,"timestamp":72789264,"id":645,"parentId":614,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+primitive@1.1.3/node_modules/@radix-ui/primitive/dist/index.mjs","layer":"ssr"},"startTime":1767363440078,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":2693,"timestamp":72804076,"id":646,"parentId":614,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-size@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-size/dist/index.mjs","layer":"ssr"},"startTime":1767363440093,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2867,"timestamp":72804365,"id":647,"parentId":630,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.js","layer":"ssr"},"startTime":1767363440093,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2880,"timestamp":72804567,"id":648,"parentId":631,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minpath.js","layer":"ssr"},"startTime":1767363440093,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2862,"timestamp":72804764,"id":649,"parentId":631,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minproc.js","layer":"ssr"},"startTime":1767363440093,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2867,"timestamp":72804966,"id":650,"parentId":631,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.js","layer":"ssr"},"startTime":1767363440094,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1740,"timestamp":72810645,"id":651,"parentId":624,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/index.js","layer":"ssr"},"startTime":1767363440099,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":2214,"timestamp":72810922,"id":652,"parentId":614,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-direction@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-direction/dist/index.mjs","layer":"ssr"},"startTime":1767363440100,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1198,"timestamp":72817783,"id":653,"parentId":614,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-previous@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-previous/dist/index.mjs","layer":"ssr"},"startTime":1767363440106,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":808,"timestamp":72821154,"id":654,"parentId":624,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-tagfilter@2.0.0/node_modules/micromark-extension-gfm-tagfilter/index.js","layer":"ssr"},"startTime":1767363440110,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":828,"timestamp":72830932,"id":656,"parentId":624,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/index.js","layer":"ssr"},"startTime":1767363440120,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":6745,"timestamp":72829371,"id":655,"parentId":614,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-presence@1.1.5_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2_g7nvzcflnhogkdp32witcuayfy/node_modules/@radix-ui/react-presence/dist/index.mjs","layer":"ssr"},"startTime":1767363440118,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":53,"timestamp":72864222,"id":657,"parentId":648,"tags":{"name":"node:path","layer":null},"startTime":1767363440153,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":14,"timestamp":72864302,"id":658,"parentId":649,"tags":{"name":"node:process","layer":null},"startTime":1767363440153,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":9,"timestamp":72864325,"id":659,"parentId":650,"tags":{"name":"node:url","layer":null},"startTime":1767363440153,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1285,"timestamp":72864345,"id":660,"parentId":626,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/comma-separated-tokens@2.0.3/node_modules/comma-separated-tokens/index.js","layer":"ssr"},"startTime":1767363440153,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":549,"timestamp":72882306,"id":661,"parentId":626,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/estree-util-is-identifier-name@3.0.0/node_modules/estree-util-is-identifier-name/index.js","layer":"ssr"},"startTime":1767363440171,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":515,"timestamp":72889408,"id":662,"parentId":626,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-whitespace@3.0.0/node_modules/hast-util-whitespace/index.js","layer":"ssr"},"startTime":1767363440178,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":774,"timestamp":72890745,"id":663,"parentId":626,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/index.js","layer":"ssr"},"startTime":1767363440179,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":632,"timestamp":72896112,"id":664,"parentId":626,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/space-separated-tokens@2.0.2/node_modules/space-separated-tokens/index.js","layer":"ssr"},"startTime":1767363440185,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":495,"timestamp":72900956,"id":665,"parentId":626,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-position@5.0.0/node_modules/unist-util-position/index.js","layer":"ssr"},"startTime":1767363440190,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":457,"timestamp":72904152,"id":666,"parentId":626,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/index.js","layer":"ssr"},"startTime":1767363440193,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":713,"timestamp":72908377,"id":667,"parentId":628,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/index.js","layer":"ssr"},"startTime":1767363440197,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1742,"timestamp":72944213,"id":668,"parentId":626,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-js@1.1.21/node_modules/style-to-js/cjs/index.js","layer":"ssr"},"startTime":1767363440233,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":948,"timestamp":72961129,"id":669,"parentId":630,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/bail@2.0.2/node_modules/bail/index.js","layer":"ssr"},"startTime":1767363440250,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1107,"timestamp":72972985,"id":670,"parentId":630,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/is-plain-obj@4.1.0/node_modules/is-plain-obj/index.js","layer":"ssr"},"startTime":1767363440262,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":927,"timestamp":72997230,"id":671,"parentId":630,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.js","layer":"ssr"},"startTime":1767363440286,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2052,"timestamp":73004742,"id":672,"parentId":630,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/extend@3.0.2/node_modules/extend/index.js","layer":"ssr"},"startTime":1767363440293,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4950,"timestamp":73038567,"id":673,"parentId":633,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-autolink-literal@2.0.1/node_modules/mdast-util-gfm-autolink-literal/index.js","layer":"ssr"},"startTime":1767363440327,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2363,"timestamp":73042020,"id":674,"parentId":638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/index.js","layer":"ssr"},"startTime":1767363440331,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9764,"timestamp":73042307,"id":675,"parentId":638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/footer.js","layer":"ssr"},"startTime":1767363440331,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1881,"timestamp":73057221,"id":676,"parentId":638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/index.js","layer":"ssr"},"startTime":1767363440346,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":807,"timestamp":73069549,"id":677,"parentId":632,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/index.js","layer":"ssr"},"startTime":1767363440358,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":797,"timestamp":73077867,"id":678,"parentId":633,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/index.js","layer":"ssr"},"startTime":1767363440366,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":690,"timestamp":73080597,"id":679,"parentId":633,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/index.js","layer":"ssr"},"startTime":1767363440369,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5418,"timestamp":73085249,"id":680,"parentId":641,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js","layer":"ssr"},"startTime":1767363440374,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5807,"timestamp":73085505,"id":681,"parentId":641,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/lib/html.js","layer":"ssr"},"startTime":1767363440374,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1030,"timestamp":73093422,"id":682,"parentId":650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.shared.js","layer":"ssr"},"startTime":1767363440382,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1145,"timestamp":73096025,"id":683,"parentId":633,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-strikethrough@2.0.0/node_modules/mdast-util-gfm-strikethrough/index.js","layer":"ssr"},"startTime":1767363440385,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13102,"timestamp":73096280,"id":684,"parentId":642,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/syntax.js","layer":"ssr"},"startTime":1767363440385,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1574,"timestamp":73116978,"id":685,"parentId":633,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-task-list-item@2.0.0/node_modules/mdast-util-gfm-task-list-item/index.js","layer":"ssr"},"startTime":1767363440406,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3274,"timestamp":73117314,"id":686,"parentId":642,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/html.js","layer":"ssr"},"startTime":1767363440406,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1390,"timestamp":73149220,"id":687,"parentId":643,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/html.js","layer":"ssr"},"startTime":1767363440438,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3041,"timestamp":73149532,"id":688,"parentId":643,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js","layer":"ssr"},"startTime":1767363440438,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1998,"timestamp":73159747,"id":689,"parentId":651,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/html.js","layer":"ssr"},"startTime":1767363440448,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5656,"timestamp":73160026,"id":690,"parentId":651,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/syntax.js","layer":"ssr"},"startTime":1767363440449,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":911,"timestamp":73181379,"id":691,"parentId":654,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-tagfilter@2.0.0/node_modules/micromark-extension-gfm-tagfilter/lib/index.js","layer":"ssr"},"startTime":1767363440470,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":914,"timestamp":73189355,"id":692,"parentId":656,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/lib/html.js","layer":"ssr"},"startTime":1767363440478,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1306,"timestamp":73189584,"id":693,"parentId":656,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js","layer":"ssr"},"startTime":1767363440478,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":843,"timestamp":73205155,"id":694,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-chunked@2.0.1/node_modules/micromark-util-chunked/index.js","layer":"ssr"},"startTime":1767363440494,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2917,"timestamp":73210235,"id":695,"parentId":661,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/estree-util-is-identifier-name@3.0.0/node_modules/estree-util-is-identifier-name/lib/index.js","layer":"ssr"},"startTime":1767363440499,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2319,"timestamp":73214551,"id":696,"parentId":662,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-whitespace@3.0.0/node_modules/hast-util-whitespace/lib/index.js","layer":"ssr"},"startTime":1767363440503,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2737,"timestamp":73214785,"id":697,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/aria.js","layer":"ssr"},"startTime":1767363440503,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2257,"timestamp":73218927,"id":698,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/html.js","layer":"ssr"},"startTime":1767363440508,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3759,"timestamp":73219147,"id":699,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/svg.js","layer":"ssr"},"startTime":1767363440508,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4039,"timestamp":73219267,"id":700,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xlink.js","layer":"ssr"},"startTime":1767363440508,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1141,"timestamp":73224824,"id":701,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xmlns.js","layer":"ssr"},"startTime":1767363440513,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1206,"timestamp":73225063,"id":702,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xml.js","layer":"ssr"},"startTime":1767363440514,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":963,"timestamp":73227710,"id":703,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/hast-to-react.js","layer":"ssr"},"startTime":1767363440516,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1600,"timestamp":73227917,"id":704,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/find.js","layer":"ssr"},"startTime":1767363440517,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1186,"timestamp":73234238,"id":705,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/normalize.js","layer":"ssr"},"startTime":1767363440523,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1114,"timestamp":73234616,"id":706,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/merge.js","layer":"ssr"},"startTime":1767363440523,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1084,"timestamp":73237823,"id":707,"parentId":665,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-position@5.0.0/node_modules/unist-util-position/lib/index.js","layer":"ssr"},"startTime":1767363440526,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1659,"timestamp":73237959,"id":708,"parentId":666,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/lib/index.js","layer":"ssr"},"startTime":1767363440527,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4286,"timestamp":73240737,"id":709,"parentId":667,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/lib/index.js","layer":"ssr"},"startTime":1767363440529,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3334,"timestamp":73247992,"id":710,"parentId":674,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/state.js","layer":"ssr"},"startTime":1767363440537,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3752,"timestamp":73248288,"id":711,"parentId":668,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-js@1.1.21/node_modules/style-to-js/cjs/utilities.js","layer":"ssr"},"startTime":1767363440537,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3781,"timestamp":73248467,"id":712,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js","layer":"ssr"},"startTime":1767363440537,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1421,"timestamp":73255737,"id":713,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/break.js","layer":"ssr"},"startTime":1767363440544,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1522,"timestamp":73255973,"id":714,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/code.js","layer":"ssr"},"startTime":1767363440545,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1455,"timestamp":73256214,"id":715,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/delete.js","layer":"ssr"},"startTime":1767363440545,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1467,"timestamp":73256356,"id":716,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js","layer":"ssr"},"startTime":1767363440545,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1774,"timestamp":73256456,"id":717,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js","layer":"ssr"},"startTime":1767363440545,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":743,"timestamp":73259444,"id":718,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/heading.js","layer":"ssr"},"startTime":1767363440548,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":809,"timestamp":73259578,"id":719,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/html.js","layer":"ssr"},"startTime":1767363440548,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":894,"timestamp":73260913,"id":720,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js","layer":"ssr"},"startTime":1767363440550,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1082,"timestamp":73261061,"id":721,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/image.js","layer":"ssr"},"startTime":1767363440550,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1339,"timestamp":73261165,"id":722,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js","layer":"ssr"},"startTime":1767363440550,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1427,"timestamp":73266539,"id":723,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js","layer":"ssr"},"startTime":1767363440555,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1617,"timestamp":73266708,"id":724,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/link.js","layer":"ssr"},"startTime":1767363440555,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2213,"timestamp":73266829,"id":725,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/list-item.js","layer":"ssr"},"startTime":1767363440555,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2475,"timestamp":73266934,"id":726,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/list.js","layer":"ssr"},"startTime":1767363440556,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2544,"timestamp":73267061,"id":727,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js","layer":"ssr"},"startTime":1767363440556,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":749,"timestamp":73273178,"id":728,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/root.js","layer":"ssr"},"startTime":1767363440562,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":773,"timestamp":73273352,"id":729,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/strong.js","layer":"ssr"},"startTime":1767363440562,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":888,"timestamp":73274547,"id":730,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table.js","layer":"ssr"},"startTime":1767363440563,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1089,"timestamp":73274679,"id":731,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table-row.js","layer":"ssr"},"startTime":1767363440563,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1158,"timestamp":73274780,"id":732,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js","layer":"ssr"},"startTime":1767363440563,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1402,"timestamp":73278799,"id":733,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/text.js","layer":"ssr"},"startTime":1767363440567,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1396,"timestamp":73279038,"id":734,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js","layer":"ssr"},"startTime":1767363440568,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2135,"timestamp":73279199,"id":735,"parentId":671,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.js","layer":"ssr"},"startTime":1767363440568,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2831,"timestamp":73282437,"id":736,"parentId":673,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-autolink-literal@2.0.1/node_modules/mdast-util-gfm-autolink-literal/lib/index.js","layer":"ssr"},"startTime":1767363440571,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1395,"timestamp":73288848,"id":737,"parentId":677,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/lib/index.js","layer":"ssr"},"startTime":1767363440577,"traceId":"f0add02174dc0eb2"}]
8
- [{"name":"build-module-js","duration":1785,"timestamp":73290974,"id":738,"parentId":678,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/lib/index.js","layer":"ssr"},"startTime":1767363440580,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1495,"timestamp":73297789,"id":739,"parentId":679,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/lib/index.js","layer":"ssr"},"startTime":1767363440586,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1035,"timestamp":73307148,"id":740,"parentId":683,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-strikethrough@2.0.0/node_modules/mdast-util-gfm-strikethrough/lib/index.js","layer":"ssr"},"startTime":1767363440596,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1545,"timestamp":73321041,"id":741,"parentId":685,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-task-list-item@2.0.0/node_modules/mdast-util-gfm-task-list-item/lib/index.js","layer":"ssr"},"startTime":1767363440610,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1233,"timestamp":73335282,"id":742,"parentId":668,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-object@1.0.14/node_modules/style-to-object/cjs/index.js","layer":"ssr"},"startTime":1767363440624,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1283,"timestamp":73342941,"id":743,"parentId":675,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-sanitize-uri@2.0.1/node_modules/micromark-util-sanitize-uri/index.js","layer":"ssr"},"startTime":1767363440632,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1678,"timestamp":73349253,"id":744,"parentId":690,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/edit-map.js","layer":"ssr"},"startTime":1767363440638,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1912,"timestamp":73349496,"id":745,"parentId":690,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/infer.js","layer":"ssr"},"startTime":1767363440638,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1698,"timestamp":73382456,"id":746,"parentId":680,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-character@2.1.1/node_modules/micromark-util-character/index.js","layer":"ssr"},"startTime":1767363440671,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":2761,"timestamp":73392658,"id":747,"parentId":634,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-slot@1.2.4_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs","layer":"ssr"},"startTime":1767363440681,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":4306,"timestamp":73392936,"id":748,"parentId":635,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-slot@1.2.3_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs","layer":"ssr"},"startTime":1767363440682,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1348,"timestamp":73401651,"id":749,"parentId":684,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/index.js","layer":"ssr"},"startTime":1767363440690,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1432,"timestamp":73411319,"id":750,"parentId":684,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-space@2.0.1/node_modules/micromark-factory-space/index.js","layer":"ssr"},"startTime":1767363440700,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1000,"timestamp":73421867,"id":751,"parentId":684,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-normalize-identifier@2.0.1/node_modules/micromark-util-normalize-identifier/index.js","layer":"ssr"},"startTime":1767363440710,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":859,"timestamp":73445710,"id":753,"parentId":697,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/types.js","layer":"ssr"},"startTime":1767363440734,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":15705,"timestamp":73436416,"id":752,"parentId":637,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-collection@1.1.7_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19_3vqfgunzp4tkkuqnqgefg7qsai/node_modules/@radix-ui/react-collection/dist/index.mjs","layer":"ssr"},"startTime":1767363440725,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1103,"timestamp":73453720,"id":754,"parentId":637,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-id@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-id/dist/index.mjs","layer":"ssr"},"startTime":1767363440742,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1215,"timestamp":73453917,"id":755,"parentId":637,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-callback-ref@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs","layer":"ssr"},"startTime":1767363440743,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1904,"timestamp":73459886,"id":756,"parentId":697,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/create.js","layer":"ssr"},"startTime":1767363440749,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1924,"timestamp":73460163,"id":757,"parentId":698,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-insensitive-transform.js","layer":"ssr"},"startTime":1767363440749,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1958,"timestamp":73460329,"id":758,"parentId":699,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-sensitive-transform.js","layer":"ssr"},"startTime":1767363440749,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1639,"timestamp":73463997,"id":759,"parentId":640,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-layout-effect@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-layout-effect/dist/index.mjs","layer":"ssr"},"startTime":1767363440753,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1772,"timestamp":73464192,"id":760,"parentId":720,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/revert.js","layer":"ssr"},"startTime":1767363440753,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1943,"timestamp":73464297,"id":761,"parentId":704,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/info.js","layer":"ssr"},"startTime":1767363440753,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2216,"timestamp":73464393,"id":762,"parentId":704,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/defined-info.js","layer":"ssr"},"startTime":1767363440753,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2324,"timestamp":73464485,"id":763,"parentId":706,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/schema.js","layer":"ssr"},"startTime":1767363440753,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":812,"timestamp":73469540,"id":764,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-classify-character@2.0.1/node_modules/micromark-util-classify-character/index.js","layer":"ssr"},"startTime":1767363440758,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1096,"timestamp":73475636,"id":765,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-resolve-all@2.0.1/node_modules/micromark-util-resolve-all/index.js","layer":"ssr"},"startTime":1767363440764,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1494,"timestamp":73482319,"id":766,"parentId":640,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-effect-event@0.0.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-effect-event/dist/index.mjs","layer":"ssr"},"startTime":1767363440771,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1526,"timestamp":73482578,"id":767,"parentId":737,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/lib/color.node.js","layer":"ssr"},"startTime":1767363440771,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":533,"timestamp":73507442,"id":768,"parentId":708,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/index.js","layer":"ssr"},"startTime":1767363440796,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":951,"timestamp":73519547,"id":769,"parentId":709,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/index.js","layer":"ssr"},"startTime":1767363440808,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":714,"timestamp":73521413,"id":770,"parentId":709,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-decode-numeric-character-reference@2.0.2/node_modules/micromark-util-decode-numeric-character-reference/index.js","layer":"ssr"},"startTime":1767363440810,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":720,"timestamp":73528703,"id":771,"parentId":709,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/decode-named-character-reference@1.2.0/node_modules/decode-named-character-reference/index.js","layer":"ssr"},"startTime":1767363440817,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":498,"timestamp":73532746,"id":772,"parentId":709,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-string@4.0.0/node_modules/mdast-util-to-string/index.js","layer":"ssr"},"startTime":1767363440821,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1000,"timestamp":73535396,"id":773,"parentId":709,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-decode-string@2.0.1/node_modules/micromark-util-decode-string/index.js","layer":"ssr"},"startTime":1767363440824,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":898,"timestamp":73541903,"id":774,"parentId":733,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trim-lines@3.0.1/node_modules/trim-lines/index.js","layer":"ssr"},"startTime":1767363440831,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":750,"timestamp":73549549,"id":775,"parentId":736,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/ccount@2.0.1/node_modules/ccount/index.js","layer":"ssr"},"startTime":1767363440838,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":595,"timestamp":73556133,"id":776,"parentId":736,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-find-and-replace@3.0.2/node_modules/mdast-util-find-and-replace/index.js","layer":"ssr"},"startTime":1767363440845,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":559,"timestamp":73565858,"id":777,"parentId":737,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-is@6.0.1/node_modules/unist-util-is/index.js","layer":"ssr"},"startTime":1767363440854,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1292,"timestamp":73570200,"id":778,"parentId":675,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/index.js","layer":"ssr"},"startTime":1767363440859,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5778,"timestamp":73570376,"id":779,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/attention.js","layer":"ssr"},"startTime":1767363440859,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7097,"timestamp":73570480,"id":780,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/autolink.js","layer":"ssr"},"startTime":1767363440859,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2972,"timestamp":73579354,"id":781,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/blank-line.js","layer":"ssr"},"startTime":1767363440868,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3390,"timestamp":73579630,"id":782,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/block-quote.js","layer":"ssr"},"startTime":1767363440868,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3566,"timestamp":73579809,"id":783,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-escape.js","layer":"ssr"},"startTime":1767363440868,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4104,"timestamp":73579981,"id":784,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-reference.js","layer":"ssr"},"startTime":1767363440869,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5664,"timestamp":73580171,"id":785,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-fenced.js","layer":"ssr"},"startTime":1767363440869,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6371,"timestamp":73580346,"id":786,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-indented.js","layer":"ssr"},"startTime":1767363440869,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1366,"timestamp":73597593,"id":787,"parentId":739,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/index.js","layer":"ssr"},"startTime":1767363440886,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2552,"timestamp":73597904,"id":788,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-text.js","layer":"ssr"},"startTime":1767363440887,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1117,"timestamp":73603592,"id":789,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/content.js","layer":"ssr"},"startTime":1767363440892,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2268,"timestamp":73609496,"id":790,"parentId":739,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/markdown-table@3.0.4/node_modules/markdown-table/index.js","layer":"ssr"},"startTime":1767363440898,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2632,"timestamp":73609685,"id":791,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/hard-break-escape.js","layer":"ssr"},"startTime":1767363440898,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3593,"timestamp":73609816,"id":792,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/definition.js","layer":"ssr"},"startTime":1767363440898,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4657,"timestamp":73614270,"id":793,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/heading-atx.js","layer":"ssr"},"startTime":1767363440903,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10877,"timestamp":73614522,"id":794,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-flow.js","layer":"ssr"},"startTime":1767363440903,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13309,"timestamp":73614689,"id":795,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-text.js","layer":"ssr"},"startTime":1767363440903,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":14541,"timestamp":73614854,"id":796,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-end.js","layer":"ssr"},"startTime":1767363440903,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13842,"timestamp":73616037,"id":797,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-image.js","layer":"ssr"},"startTime":1767363440905,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":14046,"timestamp":73616245,"id":798,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-link.js","layer":"ssr"},"startTime":1767363440905,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":833,"timestamp":73635139,"id":799,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/line-ending.js","layer":"ssr"},"startTime":1767363440924,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1594,"timestamp":73635316,"id":800,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/list.js","layer":"ssr"},"startTime":1767363440924,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1343,"timestamp":73638099,"id":801,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/setext-underline.js","layer":"ssr"},"startTime":1767363440927,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1591,"timestamp":73638245,"id":802,"parentId":749,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/thematic-break.js","layer":"ssr"},"startTime":1767363440927,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1973,"timestamp":73650382,"id":803,"parentId":742,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/inline-style-parser@0.2.7/node_modules/inline-style-parser/cjs/index.js","layer":"ssr"},"startTime":1767363440939,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":965,"timestamp":73671262,"id":804,"parentId":743,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-encode@2.0.1/node_modules/micromark-util-encode/index.js","layer":"ssr"},"startTime":1767363440960,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":961,"timestamp":73679921,"id":805,"parentId":768,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/lib/index.js","layer":"ssr"},"startTime":1767363440969,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10567,"timestamp":73686319,"id":806,"parentId":769,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/compile.js","layer":"ssr"},"startTime":1767363440975,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10960,"timestamp":73686574,"id":807,"parentId":769,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/parse.js","layer":"ssr"},"startTime":1767363440975,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11090,"timestamp":73686744,"id":808,"parentId":769,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/postprocess.js","layer":"ssr"},"startTime":1767363440975,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11866,"timestamp":73686907,"id":809,"parentId":769,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/preprocess.js","layer":"ssr"},"startTime":1767363440976,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1289,"timestamp":73707318,"id":810,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-string@4.0.0/node_modules/mdast-util-to-string/lib/index.js","layer":"ssr"},"startTime":1767363440996,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1240,"timestamp":73712606,"id":811,"parentId":776,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-find-and-replace@3.0.2/node_modules/mdast-util-find-and-replace/lib/index.js","layer":"ssr"},"startTime":1767363441001,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2381,"timestamp":73721780,"id":812,"parentId":778,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/deserialize.js","layer":"ssr"},"startTime":1767363441010,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3653,"timestamp":73722070,"id":813,"parentId":778,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/serialize.js","layer":"ssr"},"startTime":1767363441011,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4597,"timestamp":73722272,"id":814,"parentId":777,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-is@6.0.1/node_modules/unist-util-is/lib/index.js","layer":"ssr"},"startTime":1767363441011,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1863,"timestamp":73728845,"id":815,"parentId":787,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/index.js","layer":"ssr"},"startTime":1767363441017,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1991,"timestamp":73732751,"id":816,"parentId":787,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/index.js","layer":"ssr"},"startTime":1767363441021,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3780,"timestamp":73807160,"id":817,"parentId":771,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/character-entities@2.0.2/node_modules/character-entities/index.js","layer":"ssr"},"startTime":1767363441096,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1868,"timestamp":73834688,"id":818,"parentId":789,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/index.js","layer":"ssr"},"startTime":1767363441123,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1503,"timestamp":73838072,"id":819,"parentId":807,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/constructs.js","layer":"ssr"},"startTime":1767363441127,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2293,"timestamp":73844664,"id":820,"parentId":792,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-label@2.0.1/node_modules/micromark-factory-label/index.js","layer":"ssr"},"startTime":1767363441133,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4734,"timestamp":73844945,"id":821,"parentId":807,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/create-tokenizer.js","layer":"ssr"},"startTime":1767363441134,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1795,"timestamp":73854503,"id":822,"parentId":807,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/content.js","layer":"ssr"},"startTime":1767363441143,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2685,"timestamp":73854713,"id":823,"parentId":807,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/document.js","layer":"ssr"},"startTime":1767363441143,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2960,"timestamp":73854825,"id":824,"parentId":807,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/flow.js","layer":"ssr"},"startTime":1767363441143,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3652,"timestamp":73854925,"id":825,"parentId":807,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/text.js","layer":"ssr"},"startTime":1767363441144,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2006,"timestamp":73861493,"id":826,"parentId":815,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/configure.js","layer":"ssr"},"startTime":1767363441150,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2455,"timestamp":73861774,"id":827,"parentId":815,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/unsafe.js","layer":"ssr"},"startTime":1767363441150,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2728,"timestamp":73861948,"id":828,"parentId":812,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/types.js","layer":"ssr"},"startTime":1767363441151,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1717,"timestamp":73872163,"id":829,"parentId":792,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-title@2.0.1/node_modules/micromark-factory-title/index.js","layer":"ssr"},"startTime":1767363441161,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1955,"timestamp":73872429,"id":830,"parentId":815,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/join.js","layer":"ssr"},"startTime":1767363441161,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2038,"timestamp":73878151,"id":831,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js","layer":"ssr"},"startTime":1767363441167,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2125,"timestamp":73878395,"id":832,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/break.js","layer":"ssr"},"startTime":1767363441167,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2373,"timestamp":73878578,"id":833,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/code.js","layer":"ssr"},"startTime":1767363441167,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2596,"timestamp":73878763,"id":834,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/definition.js","layer":"ssr"},"startTime":1767363441167,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2811,"timestamp":73878944,"id":835,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/heading.js","layer":"ssr"},"startTime":1767363441168,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3028,"timestamp":73879100,"id":836,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js","layer":"ssr"},"startTime":1767363441168,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1819,"timestamp":73882713,"id":837,"parentId":792,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-destination@2.0.1/node_modules/micromark-factory-destination/index.js","layer":"ssr"},"startTime":1767363441171,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1847,"timestamp":73882864,"id":838,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/html.js","layer":"ssr"},"startTime":1767363441171,"traceId":"f0add02174dc0eb2"}]
9
- [{"name":"build-module-js","duration":2211,"timestamp":73882974,"id":839,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image.js","layer":"ssr"},"startTime":1767363441172,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2394,"timestamp":73883107,"id":840,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js","layer":"ssr"},"startTime":1767363441172,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1720,"timestamp":73892803,"id":841,"parentId":794,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-html-tag-name@2.0.1/node_modules/micromark-util-html-tag-name/index.js","layer":"ssr"},"startTime":1767363441181,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2079,"timestamp":73892968,"id":842,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js","layer":"ssr"},"startTime":1767363441182,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2168,"timestamp":73893103,"id":843,"parentId":815,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/association.js","layer":"ssr"},"startTime":1767363441182,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2299,"timestamp":73893212,"id":844,"parentId":815,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/compile-pattern.js","layer":"ssr"},"startTime":1767363441182,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2776,"timestamp":73893304,"id":845,"parentId":815,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/container-phrasing.js","layer":"ssr"},"startTime":1767363441182,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3020,"timestamp":73893397,"id":846,"parentId":815,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/container-flow.js","layer":"ssr"},"startTime":1767363441182,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3173,"timestamp":73893491,"id":847,"parentId":815,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/indent-lines.js","layer":"ssr"},"startTime":1767363441182,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1254,"timestamp":73897263,"id":848,"parentId":792,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-whitespace@2.0.1/node_modules/micromark-factory-whitespace/index.js","layer":"ssr"},"startTime":1767363441186,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1853,"timestamp":73897426,"id":849,"parentId":815,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/safe.js","layer":"ssr"},"startTime":1767363441186,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2038,"timestamp":73897535,"id":850,"parentId":815,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/track.js","layer":"ssr"},"startTime":1767363441186,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2518,"timestamp":73897636,"id":851,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link.js","layer":"ssr"},"startTime":1767363441186,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1798,"timestamp":73920987,"id":852,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js","layer":"ssr"},"startTime":1767363441210,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2372,"timestamp":73921274,"id":853,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list.js","layer":"ssr"},"startTime":1767363441210,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2771,"timestamp":73921460,"id":854,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list-item.js","layer":"ssr"},"startTime":1767363441210,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1918,"timestamp":73929112,"id":855,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/root.js","layer":"ssr"},"startTime":1767363441218,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1925,"timestamp":73929363,"id":856,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js","layer":"ssr"},"startTime":1767363441218,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2320,"timestamp":73929532,"id":857,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/strong.js","layer":"ssr"},"startTime":1767363441218,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2222,"timestamp":73929843,"id":858,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/text.js","layer":"ssr"},"startTime":1767363441218,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1151,"timestamp":73937109,"id":859,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js","layer":"ssr"},"startTime":1767363441226,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2331,"timestamp":73963274,"id":860,"parentId":830,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js","layer":"ssr"},"startTime":1767363441252,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2627,"timestamp":73963655,"id":861,"parentId":830,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js","layer":"ssr"},"startTime":1767363441252,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3710,"timestamp":73964125,"id":862,"parentId":818,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/lib/splice-buffer.js","layer":"ssr"},"startTime":1767363441253,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1753,"timestamp":73971199,"id":863,"parentId":832,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js","layer":"ssr"},"startTime":1767363441260,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1895,"timestamp":73971475,"id":864,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-fence.js","layer":"ssr"},"startTime":1767363441260,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1602,"timestamp":73973958,"id":865,"parentId":834,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-quote.js","layer":"ssr"},"startTime":1767363441263,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1599,"timestamp":73974266,"id":866,"parentId":835,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js","layer":"ssr"},"startTime":1767363441263,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1711,"timestamp":73974492,"id":867,"parentId":836,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js","layer":"ssr"},"startTime":1767363441263,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1432,"timestamp":73998304,"id":868,"parentId":836,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-info.js","layer":"ssr"},"startTime":1767363441287,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1328,"timestamp":74010382,"id":869,"parentId":851,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js","layer":"ssr"},"startTime":1767363441299,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1179,"timestamp":74054804,"id":870,"parentId":811,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/escape-string-regexp@5.0.0/node_modules/escape-string-regexp/index.js","layer":"ssr"},"startTime":1767363441343,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1567,"timestamp":74064355,"id":871,"parentId":853,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js","layer":"ssr"},"startTime":1767363441353,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1693,"timestamp":74064607,"id":872,"parentId":853,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js","layer":"ssr"},"startTime":1767363441353,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2012,"timestamp":74064800,"id":873,"parentId":853,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js","layer":"ssr"},"startTime":1767363441353,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1403,"timestamp":74068743,"id":874,"parentId":815,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zwitch@2.0.4/node_modules/zwitch/index.js","layer":"ssr"},"startTime":1767363441357,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1590,"timestamp":74068911,"id":875,"parentId":853,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-rule.js","layer":"ssr"},"startTime":1767363441358,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1690,"timestamp":74069049,"id":876,"parentId":854,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js","layer":"ssr"},"startTime":1767363441358,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":866,"timestamp":74077482,"id":877,"parentId":857,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-strong.js","layer":"ssr"},"startTime":1767363441366,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":942,"timestamp":74077687,"id":878,"parentId":859,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js","layer":"ssr"},"startTime":1767363441366,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":819,"timestamp":74092545,"id":879,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/longest-streak@3.1.0/node_modules/longest-streak/index.js","layer":"ssr"},"startTime":1767363441381,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":622,"timestamp":74097650,"id":880,"parentId":855,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-phrasing@4.1.0/node_modules/mdast-util-phrasing/index.js","layer":"ssr"},"startTime":1767363441386,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":668,"timestamp":74099806,"id":881,"parentId":880,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-phrasing@4.1.0/node_modules/mdast-util-phrasing/lib/index.js","layer":"ssr"},"startTime":1767363441388,"traceId":"f0add02174dc0eb2"},{"name":"make","duration":6214135,"timestamp":67897916,"id":22,"parentId":20,"tags":{},"startTime":1767363435187,"traceId":"f0add02174dc0eb2"},{"name":"get-entries","duration":615,"timestamp":74113924,"id":883,"parentId":882,"tags":{},"startTime":1767363441403,"traceId":"f0add02174dc0eb2"},{"name":"node-file-trace-plugin","duration":138811,"timestamp":74118232,"id":884,"parentId":882,"tags":{"traceEntryCount":"10"},"startTime":1767363441407,"traceId":"f0add02174dc0eb2"},{"name":"collect-traced-files","duration":459,"timestamp":74257058,"id":885,"parentId":882,"tags":{},"startTime":1767363441546,"traceId":"f0add02174dc0eb2"},{"name":"finish-modules","duration":143821,"timestamp":74113705,"id":882,"parentId":21,"tags":{},"startTime":1767363441402,"traceId":"f0add02174dc0eb2"},{"name":"chunk-graph","duration":24652,"timestamp":74324042,"id":887,"parentId":886,"tags":{},"startTime":1767363441613,"traceId":"f0add02174dc0eb2"},{"name":"optimize-modules","duration":44,"timestamp":74348875,"id":889,"parentId":886,"tags":{},"startTime":1767363441637,"traceId":"f0add02174dc0eb2"},{"name":"optimize-chunks","duration":17690,"timestamp":74349064,"id":890,"parentId":886,"tags":{},"startTime":1767363441638,"traceId":"f0add02174dc0eb2"},{"name":"optimize-tree","duration":148,"timestamp":74366850,"id":891,"parentId":886,"tags":{},"startTime":1767363441655,"traceId":"f0add02174dc0eb2"},{"name":"optimize-chunk-modules","duration":29340,"timestamp":74367147,"id":892,"parentId":886,"tags":{},"startTime":1767363441656,"traceId":"f0add02174dc0eb2"},{"name":"optimize","duration":47794,"timestamp":74348799,"id":888,"parentId":886,"tags":{},"startTime":1767363441637,"traceId":"f0add02174dc0eb2"},{"name":"module-hash","duration":41968,"timestamp":74420743,"id":893,"parentId":886,"tags":{},"startTime":1767363441709,"traceId":"f0add02174dc0eb2"},{"name":"code-generation","duration":474526,"timestamp":74462787,"id":894,"parentId":886,"tags":{},"startTime":1767363441751,"traceId":"f0add02174dc0eb2"},{"name":"hash","duration":8592,"timestamp":74943753,"id":895,"parentId":886,"tags":{},"startTime":1767363442232,"traceId":"f0add02174dc0eb2"},{"name":"code-generation-jobs","duration":599,"timestamp":74952340,"id":896,"parentId":886,"tags":{},"startTime":1767363442241,"traceId":"f0add02174dc0eb2"},{"name":"module-assets","duration":545,"timestamp":74952867,"id":897,"parentId":886,"tags":{},"startTime":1767363442241,"traceId":"f0add02174dc0eb2"},{"name":"create-chunk-assets","duration":9858,"timestamp":74953431,"id":898,"parentId":886,"tags":{},"startTime":1767363442242,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":96892,"timestamp":75057496,"id":901,"parentId":899,"tags":{"name":"../pages/_app.js","cache":"MISS"},"startTime":1767363442346,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":108059,"timestamp":75049076,"id":900,"parentId":899,"tags":{"name":"../app/_not-found/page.js","cache":"MISS"},"startTime":1767363442338,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":99619,"timestamp":75069693,"id":903,"parentId":899,"tags":{"name":"../app/page.js","cache":"MISS"},"startTime":1767363442358,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":66746,"timestamp":75103167,"id":906,"parentId":899,"tags":{"name":"../pages/_document.js","cache":"MISS"},"startTime":1767363442392,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":69831,"timestamp":75102058,"id":905,"parentId":899,"tags":{"name":"../app/settings/page.js","cache":"MISS"},"startTime":1767363442391,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":69170,"timestamp":75103249,"id":907,"parentId":899,"tags":{"name":"../webpack-runtime.js","cache":"MISS"},"startTime":1767363442392,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":166092,"timestamp":75058400,"id":902,"parentId":899,"tags":{"name":"../pages/_error.js","cache":"MISS"},"startTime":1767363442347,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":162906,"timestamp":75125534,"id":910,"parentId":899,"tags":{"name":"799.js","cache":"MISS"},"startTime":1767363442414,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":178035,"timestamp":75118943,"id":909,"parentId":899,"tags":{"name":"811.js","cache":"MISS"},"startTime":1767363442408,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":170725,"timestamp":75127411,"id":911,"parentId":899,"tags":{"name":"392.js","cache":"MISS"},"startTime":1767363442416,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":362963,"timestamp":75103577,"id":908,"parentId":899,"tags":{"name":"673.js","cache":"MISS"},"startTime":1767363442392,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":460982,"timestamp":75075109,"id":904,"parentId":899,"tags":{"name":"../app/project/[id]/page.js","cache":"MISS"},"startTime":1767363442364,"traceId":"f0add02174dc0eb2"},{"name":"minify-webpack-plugin-optimize","duration":546557,"timestamp":74989558,"id":899,"parentId":20,"tags":{"compilationName":"server","mangle":"[object Object]"},"startTime":1767363442278,"traceId":"f0add02174dc0eb2"},{"name":"css-minimizer-plugin","duration":174,"timestamp":75536416,"id":912,"parentId":20,"tags":{},"startTime":1767363442825,"traceId":"f0add02174dc0eb2"},{"name":"create-trace-assets","duration":1727,"timestamp":75536807,"id":913,"parentId":21,"tags":{},"startTime":1767363442825,"traceId":"f0add02174dc0eb2"},{"name":"seal","duration":1257257,"timestamp":74291155,"id":886,"parentId":20,"tags":{},"startTime":1767363441580,"traceId":"f0add02174dc0eb2"},{"name":"webpack-compilation","duration":7684503,"timestamp":67875486,"id":20,"parentId":17,"tags":{"name":"server"},"startTime":1767363435164,"traceId":"f0add02174dc0eb2"},{"name":"emit","duration":17316,"timestamp":75560517,"id":914,"parentId":17,"tags":{},"startTime":1767363442849,"traceId":"f0add02174dc0eb2"},{"name":"webpack-close","duration":549528,"timestamp":75580195,"id":915,"parentId":17,"tags":{"name":"server"},"startTime":1767363442869,"traceId":"f0add02174dc0eb2"},{"name":"webpack-generate-error-stats","duration":3451,"timestamp":76129789,"id":916,"parentId":915,"tags":{},"startTime":1767363443418,"traceId":"f0add02174dc0eb2"},{"name":"run-webpack-compiler","duration":8546991,"timestamp":67586555,"id":17,"parentId":16,"tags":{},"startTime":1767363434875,"traceId":"f0add02174dc0eb2"},{"name":"format-webpack-messages","duration":83,"timestamp":76133557,"id":917,"parentId":16,"tags":{},"startTime":1767363443422,"traceId":"f0add02174dc0eb2"},{"name":"worker-main-server","duration":8547745,"timestamp":67586055,"id":16,"parentId":1,"tags":{},"startTime":1767363434875,"traceId":"f0add02174dc0eb2"},{"name":"create-entrypoints","duration":24965,"timestamp":77004225,"id":920,"parentId":918,"tags":{},"startTime":1767363444293,"traceId":"f0add02174dc0eb2"},{"name":"generate-webpack-config","duration":124510,"timestamp":77029361,"id":921,"parentId":919,"tags":{},"startTime":1767363444318,"traceId":"f0add02174dc0eb2"},{"name":"make","duration":895,"timestamp":77254718,"id":923,"parentId":922,"tags":{},"startTime":1767363444543,"traceId":"f0add02174dc0eb2"},{"name":"chunk-graph","duration":647,"timestamp":77259046,"id":925,"parentId":924,"tags":{},"startTime":1767363444548,"traceId":"f0add02174dc0eb2"},{"name":"optimize-modules","duration":36,"timestamp":77259845,"id":927,"parentId":924,"tags":{},"startTime":1767363444548,"traceId":"f0add02174dc0eb2"},{"name":"optimize-chunks","duration":921,"timestamp":77259993,"id":928,"parentId":924,"tags":{},"startTime":1767363444549,"traceId":"f0add02174dc0eb2"},{"name":"optimize-tree","duration":154,"timestamp":77260998,"id":929,"parentId":924,"tags":{},"startTime":1767363444550,"traceId":"f0add02174dc0eb2"},{"name":"optimize-chunk-modules","duration":541,"timestamp":77261385,"id":930,"parentId":924,"tags":{},"startTime":1767363444550,"traceId":"f0add02174dc0eb2"},{"name":"optimize","duration":2295,"timestamp":77259776,"id":926,"parentId":924,"tags":{},"startTime":1767363444548,"traceId":"f0add02174dc0eb2"},{"name":"module-hash","duration":107,"timestamp":77263663,"id":931,"parentId":924,"tags":{},"startTime":1767363444552,"traceId":"f0add02174dc0eb2"},{"name":"code-generation","duration":256,"timestamp":77263824,"id":932,"parentId":924,"tags":{},"startTime":1767363444552,"traceId":"f0add02174dc0eb2"},{"name":"hash","duration":446,"timestamp":77264364,"id":933,"parentId":924,"tags":{},"startTime":1767363444553,"traceId":"f0add02174dc0eb2"},{"name":"code-generation-jobs","duration":162,"timestamp":77264805,"id":934,"parentId":924,"tags":{},"startTime":1767363444553,"traceId":"f0add02174dc0eb2"},{"name":"module-assets","duration":126,"timestamp":77264922,"id":935,"parentId":924,"tags":{},"startTime":1767363444554,"traceId":"f0add02174dc0eb2"},{"name":"create-chunk-assets","duration":204,"timestamp":77265063,"id":936,"parentId":924,"tags":{},"startTime":1767363444554,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":1458,"timestamp":77275801,"id":938,"parentId":937,"tags":{"name":"interception-route-rewrite-manifest.js","cache":"MISS"},"startTime":1767363444564,"traceId":"f0add02174dc0eb2"},{"name":"minify-webpack-plugin-optimize","duration":3188,"timestamp":77274084,"id":937,"parentId":922,"tags":{"compilationName":"edge-server","mangle":"[object Object]"},"startTime":1767363444563,"traceId":"f0add02174dc0eb2"},{"name":"css-minimizer-plugin","duration":129,"timestamp":77277370,"id":939,"parentId":922,"tags":{},"startTime":1767363444566,"traceId":"f0add02174dc0eb2"}]
10
- [{"name":"seal","duration":22981,"timestamp":77258288,"id":924,"parentId":922,"tags":{},"startTime":1767363444547,"traceId":"f0add02174dc0eb2"},{"name":"webpack-compilation","duration":34859,"timestamp":77246842,"id":922,"parentId":919,"tags":{"name":"edge-server"},"startTime":1767363444535,"traceId":"f0add02174dc0eb2"},{"name":"emit","duration":3107,"timestamp":77282136,"id":940,"parentId":919,"tags":{},"startTime":1767363444571,"traceId":"f0add02174dc0eb2"},{"name":"webpack-close","duration":13894,"timestamp":77286554,"id":941,"parentId":919,"tags":{"name":"edge-server"},"startTime":1767363444575,"traceId":"f0add02174dc0eb2"},{"name":"webpack-generate-error-stats","duration":2776,"timestamp":77300506,"id":942,"parentId":941,"tags":{},"startTime":1767363444589,"traceId":"f0add02174dc0eb2"},{"name":"run-webpack-compiler","duration":299259,"timestamp":77004215,"id":919,"parentId":918,"tags":{},"startTime":1767363444293,"traceId":"f0add02174dc0eb2"},{"name":"format-webpack-messages","duration":123,"timestamp":77303484,"id":943,"parentId":918,"tags":{},"startTime":1767363444592,"traceId":"f0add02174dc0eb2"},{"name":"worker-main-edge-server","duration":300139,"timestamp":77003682,"id":918,"parentId":1,"tags":{},"startTime":1767363444292,"traceId":"f0add02174dc0eb2"},{"name":"create-entrypoints","duration":20430,"timestamp":78192627,"id":946,"parentId":944,"tags":{},"startTime":1767363445481,"traceId":"f0add02174dc0eb2"},{"name":"generate-webpack-config","duration":133454,"timestamp":78213289,"id":947,"parentId":945,"tags":{},"startTime":1767363445502,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":18796,"timestamp":78538884,"id":961,"parentId":952,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-error.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-segment.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fhttp-access-fallback%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fmetadata%2Fasync-metadata.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fframework%2Fboundary-components.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fmetadata%2Fgenerate%2Ficon-mark.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767363445828,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":2139,"timestamp":78558039,"id":962,"parentId":957,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fcomponents%2FDevErrorRecovery.tsx%22%2C%22ids%22%3A%5B%22DevErrorRecovery%22%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-sans%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistSans%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist_Mono%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-mono%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistMono%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767363445847,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":830,"timestamp":78560233,"id":963,"parentId":958,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767363445849,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":659,"timestamp":78561115,"id":964,"parentId":959,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767363445850,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":693,"timestamp":78561827,"id":965,"parentId":960,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767363445850,"traceId":"f0add02174dc0eb2"},{"name":"next-client-pages-loader","duration":446,"timestamp":78563503,"id":967,"parentId":966,"tags":{"absolutePagePath":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-not-found.js"},"startTime":1767363445852,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":9652,"timestamp":78562570,"id":966,"parentId":953,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found.js&page=%2F_not-found%2Fpage!","layer":"app-pages-browser"},"startTime":1767363445851,"traceId":"f0add02174dc0eb2"},{"name":"next-client-pages-loader","duration":102,"timestamp":78573774,"id":969,"parentId":968,"tags":{"absolutePagePath":"next/dist/pages/_app"},"startTime":1767363445862,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":3050,"timestamp":78572296,"id":968,"parentId":954,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!","layer":"pages-dir-browser"},"startTime":1767363445861,"traceId":"f0add02174dc0eb2"},{"name":"next-client-pages-loader","duration":125,"timestamp":78575675,"id":971,"parentId":970,"tags":{"absolutePagePath":"next/dist/pages/_error"},"startTime":1767363445864,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":1491,"timestamp":78575496,"id":970,"parentId":956,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!","layer":"pages-dir-browser"},"startTime":1767363445864,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":20861,"timestamp":78604419,"id":972,"parentId":950,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/next.js","layer":"pages-dir-browser"},"startTime":1767363445893,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":20863,"timestamp":78607463,"id":974,"parentId":951,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-next.js","layer":"app-pages-browser"},"startTime":1767363445896,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":40131,"timestamp":78607227,"id":973,"parentId":955,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/router.js","layer":"pages-dir-browser"},"startTime":1767363445896,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4301,"timestamp":78661230,"id":975,"parentId":966,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-not-found.js","layer":"app-pages-browser"},"startTime":1767363445950,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9090,"timestamp":78672202,"id":976,"parentId":961,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1767363445961,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10305,"timestamp":78672413,"id":977,"parentId":961,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-segment.js","layer":"app-pages-browser"},"startTime":1767363445961,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11004,"timestamp":78672647,"id":979,"parentId":961,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/render-from-template-context.js","layer":"app-pages-browser"},"startTime":1767363445961,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":15094,"timestamp":78672746,"id":980,"parentId":961,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-error.js","layer":"app-pages-browser"},"startTime":1767363445961,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17522,"timestamp":78672949,"id":981,"parentId":972,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/webpack.js","layer":"pages-dir-browser"},"startTime":1767363445962,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":21443,"timestamp":78673080,"id":982,"parentId":974,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1767363445962,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":43315,"timestamp":78672533,"id":978,"parentId":961,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1767363445961,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":46092,"timestamp":78673330,"id":985,"parentId":973,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/with-router.js","layer":"pages-dir-browser"},"startTime":1767363445962,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":50283,"timestamp":78673178,"id":983,"parentId":974,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1767363445962,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":57867,"timestamp":78673260,"id":984,"parentId":974,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1767363445962,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3346,"timestamp":78763445,"id":991,"parentId":972,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/require-instrumentation-client.js","layer":"pages-dir-browser"},"startTime":1767363446052,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4945,"timestamp":78763894,"id":992,"parentId":974,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/require-instrumentation-client.js","layer":"app-pages-browser"},"startTime":1767363446053,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10481,"timestamp":78761325,"id":988,"parentId":961,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/metadata/async-metadata.js","layer":"app-pages-browser"},"startTime":1767363446050,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17655,"timestamp":78761242,"id":987,"parentId":961,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js","layer":"app-pages-browser"},"startTime":1767363446050,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":20957,"timestamp":78763214,"id":989,"parentId":968,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_app.js","layer":"pages-dir-browser"},"startTime":1767363446052,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":52076,"timestamp":78761099,"id":986,"parentId":972,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/index.js","layer":"pages-dir-browser"},"startTime":1767363446050,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":57617,"timestamp":78763353,"id":990,"parentId":970,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_error.js","layer":"pages-dir-browser"},"startTime":1767363446052,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5979,"timestamp":78919507,"id":993,"parentId":973,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-error.js","layer":"pages-dir-browser"},"startTime":1767363446208,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":16645,"timestamp":78920326,"id":996,"parentId":975,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-fallback.js","layer":"app-pages-browser"},"startTime":1767363446209,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17134,"timestamp":78920444,"id":997,"parentId":973,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767363446209,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":24417,"timestamp":78920619,"id":999,"parentId":962,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"app-pages-browser"},"startTime":1767363446209,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":23778,"timestamp":78922254,"id":1001,"parentId":976,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/invariant-error.js","layer":"app-pages-browser"},"startTime":1767363446211,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":28095,"timestamp":78922357,"id":1002,"parentId":963,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"app-pages-browser"},"startTime":1767363446211,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":32880,"timestamp":78922623,"id":1003,"parentId":965,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"app-pages-browser"},"startTime":1767363446211,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":35300,"timestamp":78922895,"id":1004,"parentId":964,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"app-pages-browser"},"startTime":1767363446212,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":39957,"timestamp":78919658,"id":994,"parentId":961,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-components.js","layer":"app-pages-browser"},"startTime":1767363446208,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":40729,"timestamp":78920031,"id":995,"parentId":961,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icon-mark.js","layer":"app-pages-browser"},"startTime":1767363446209,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":51220,"timestamp":78922133,"id":1000,"parentId":974,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1767363446211,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":98242,"timestamp":78920537,"id":998,"parentId":973,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/router.js","layer":"pages-dir-browser"},"startTime":1767363446209,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":876,"timestamp":79095998,"id":1007,"parentId":981,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/deployment-id.js","layer":"pages-dir-browser"},"startTime":1767363446385,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1068,"timestamp":79099879,"id":1008,"parentId":982,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1767363446388,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9808,"timestamp":79095733,"id":1005,"parentId":979,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767363446384,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12015,"timestamp":79095915,"id":1006,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767363446385,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5980,"timestamp":79110406,"id":1009,"parentId":983,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/set-attributes-from-props.js","layer":"app-pages-browser"},"startTime":1767363446399,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6535,"timestamp":79110583,"id":1010,"parentId":984,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-globals.js","layer":"app-pages-browser"},"startTime":1767363446399,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4652,"timestamp":79120690,"id":1011,"parentId":984,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1767363446409,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5388,"timestamp":79120916,"id":1012,"parentId":984,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-find-source-map-url.js","layer":"app-pages-browser"},"startTime":1767363446410,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5956,"timestamp":79121035,"id":1013,"parentId":984,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-build-id.js","layer":"app-pages-browser"},"startTime":1767363446410,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4265,"timestamp":79123383,"id":1014,"parentId":982,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":"app-pages-browser"},"startTime":1767363446412,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4721,"timestamp":79128145,"id":1015,"parentId":984,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767363446417,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6805,"timestamp":79128317,"id":1016,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767363446417,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7407,"timestamp":79128476,"id":1018,"parentId":978,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1767363446417,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12007,"timestamp":79128585,"id":1019,"parentId":978,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1767363446417,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12755,"timestamp":79128659,"id":1020,"parentId":978,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1767363446417,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13901,"timestamp":79128821,"id":1023,"parentId":978,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/bfcache.js","layer":"app-pages-browser"},"startTime":1767363446417,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":14979,"timestamp":79128766,"id":1022,"parentId":978,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/use-action-queue.js","layer":"app-pages-browser"},"startTime":1767363446417,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":15778,"timestamp":79128919,"id":1025,"parentId":976,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/search-params.browser.js","layer":"app-pages-browser"},"startTime":1767363446418,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":16700,"timestamp":79128872,"id":1024,"parentId":980,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/handle-isr-error.js","layer":"app-pages-browser"},"startTime":1767363446417,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17061,"timestamp":79128969,"id":1026,"parentId":976,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/params.browser.js","layer":"app-pages-browser"},"startTime":1767363446418,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":18012,"timestamp":79129040,"id":1027,"parentId":984,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1767363446418,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":19665,"timestamp":79128716,"id":1021,"parentId":978,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1767363446417,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":26060,"timestamp":79128372,"id":1017,"parentId":984,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-instance.js","layer":"app-pages-browser"},"startTime":1767363446417,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":25541,"timestamp":79136687,"id":1029,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/on-recoverable-error.js","layer":"pages-dir-browser"},"startTime":1767363446425,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":26699,"timestamp":79136746,"id":1030,"parentId":978,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"app-pages-browser"},"startTime":1767363446425,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":28119,"timestamp":79136806,"id":1031,"parentId":984,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js","layer":"app-pages-browser"},"startTime":1767363446425,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":30616,"timestamp":79136549,"id":1028,"parentId":984,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/error-boundary-callbacks.js","layer":"app-pages-browser"},"startTime":1767363446425,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5889,"timestamp":79195046,"id":1033,"parentId":978,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"app-pages-browser"},"startTime":1767363446484,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6799,"timestamp":79195117,"id":1034,"parentId":978,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.js","layer":"app-pages-browser"},"startTime":1767363446484,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7288,"timestamp":79195180,"id":1035,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.js","layer":"pages-dir-browser"},"startTime":1767363446484,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7998,"timestamp":79195326,"id":1038,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/mitt.js","layer":"pages-dir-browser"},"startTime":1767363446484,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":642,"timestamp":79203756,"id":1048,"parentId":991,"tags":{"layer":null},"startTime":1767363446492,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7254,"timestamp":79203629,"id":1047,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"pages-dir-browser"},"startTime":1767363446492,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6617,"timestamp":79204593,"id":1051,"parentId":985,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/jsx-runtime.js","layer":"pages-dir-browser"},"startTime":1767363446493,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6815,"timestamp":79204690,"id":1052,"parentId":973,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/index.js","layer":"pages-dir-browser"},"startTime":1767363446493,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6815,"timestamp":79204893,"id":1055,"parentId":975,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1767363446494,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3034,"timestamp":79209250,"id":1061,"parentId":984,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1767363446498,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":20543,"timestamp":79195368,"id":1039,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/runtime-config.external.js","layer":"pages-dir-browser"},"startTime":1767363446484,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":22083,"timestamp":79195484,"id":1040,"parentId":987,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation-untracked.js","layer":"app-pages-browser"},"startTime":1767363446484,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":23214,"timestamp":79195554,"id":1041,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"pages-dir-browser"},"startTime":1767363446484,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":30000,"timestamp":79194876,"id":1032,"parentId":978,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"app-pages-browser"},"startTime":1767363446483,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":34120,"timestamp":79195597,"id":1042,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"pages-dir-browser"},"startTime":1767363446484,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":36055,"timestamp":79195636,"id":1043,"parentId":987,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"app-pages-browser"},"startTime":1767363446484,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":41521,"timestamp":79195279,"id":1037,"parentId":989,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"pages-dir-browser"},"startTime":1767363446484,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":43986,"timestamp":79195226,"id":1036,"parentId":978,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"app-pages-browser"},"startTime":1767363446484,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":45217,"timestamp":79195683,"id":1044,"parentId":978,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"app-pages-browser"},"startTime":1767363446484,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":45801,"timestamp":79195738,"id":1045,"parentId":987,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1767363446484,"traceId":"f0add02174dc0eb2"}]
11
- [{"name":"build-module-js","duration":48479,"timestamp":79195783,"id":1046,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/head-manager.js","layer":"pages-dir-browser"},"startTime":1767363446484,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":41379,"timestamp":79204539,"id":1050,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/route-announcer.js","layer":"pages-dir-browser"},"startTime":1767363446493,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":42401,"timestamp":79204730,"id":1053,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-base-path.js","layer":"pages-dir-browser"},"startTime":1767363446493,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":46054,"timestamp":79204418,"id":1049,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/page-loader.js","layer":"pages-dir-browser"},"startTime":1767363446493,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":42009,"timestamp":79209046,"id":1058,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767363446498,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":61185,"timestamp":79204800,"id":1054,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1767363446493,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":58185,"timestamp":79209192,"id":1060,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1767363446498,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":59313,"timestamp":79209135,"id":1059,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/has-base-path.js","layer":"pages-dir-browser"},"startTime":1767363446498,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":860,"timestamp":79275271,"id":1063,"parentId":984,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-server-dom-webpack/client.browser.js","layer":"app-pages-browser"},"startTime":1767363446564,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1409,"timestamp":79275332,"id":1064,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-dom@19.2.3_react@19.2.3/node_modules/react-dom/client.js","layer":"pages-dir-browser"},"startTime":1767363446564,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1506,"timestamp":79275558,"id":1066,"parentId":979,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1767363446564,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4933,"timestamp":79275374,"id":1065,"parentId":1010,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1767363446564,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1310,"timestamp":79286995,"id":1069,"parentId":978,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1767363446576,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6275,"timestamp":79286716,"id":1067,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767363446575,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7049,"timestamp":79286880,"id":1068,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767363446575,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3535,"timestamp":79294708,"id":1074,"parentId":1027,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1767363446583,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13084,"timestamp":79287076,"id":1070,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/adapters.js","layer":"pages-dir-browser"},"startTime":1767363446576,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13975,"timestamp":79287158,"id":1071,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/portal/index.js","layer":"pages-dir-browser"},"startTime":1767363446576,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":15857,"timestamp":79287329,"id":1073,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/is-next-router-error.js","layer":"pages-dir-browser"},"startTime":1767363446576,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":20271,"timestamp":79287239,"id":1072,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/script.js","layer":"pages-dir-browser"},"startTime":1767363446576,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13331,"timestamp":79295028,"id":1075,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/is-next-router-error.js","layer":"app-pages-browser"},"startTime":1767363446584,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13114,"timestamp":79295859,"id":1077,"parentId":993,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"pages-dir-browser"},"startTime":1767363446584,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":21098,"timestamp":79295961,"id":1078,"parentId":990,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"pages-dir-browser"},"startTime":1767363446585,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3967,"timestamp":79329525,"id":1081,"parentId":973,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"pages-dir-browser"},"startTime":1767363446618,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2690,"timestamp":79332177,"id":1084,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"pages-dir-browser"},"startTime":1767363446621,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6284,"timestamp":79330301,"id":1082,"parentId":984,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1767363446619,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5796,"timestamp":79331942,"id":1083,"parentId":979,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1767363446621,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":63765,"timestamp":79274979,"id":1062,"parentId":1002,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1767363446564,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10818,"timestamp":79329411,"id":1080,"parentId":996,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/styles/access-error-styles.js","layer":"app-pages-browser"},"startTime":1767363446618,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12462,"timestamp":79329250,"id":1079,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/tracing/tracer.js","layer":"pages-dir-browser"},"startTime":1767363446618,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6393,"timestamp":79343171,"id":1085,"parentId":994,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-constants.js","layer":"app-pages-browser"},"startTime":1767363446632,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7683,"timestamp":79343672,"id":1088,"parentId":1035,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"pages-dir-browser"},"startTime":1767363446632,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8558,"timestamp":79343582,"id":1087,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/add-base-path.js","layer":"pages-dir-browser"},"startTime":1767363446632,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9373,"timestamp":79343447,"id":1086,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1767363446632,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9932,"timestamp":79343857,"id":1090,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"app-pages-browser"},"startTime":1767363446632,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10950,"timestamp":79343939,"id":1091,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"pages-dir-browser"},"startTime":1767363446633,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12421,"timestamp":79343766,"id":1089,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1767363446632,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12664,"timestamp":79344032,"id":1092,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"app-pages-browser"},"startTime":1767363446633,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":80323,"timestamp":79364282,"id":1096,"parentId":1002,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/Header.tsx","layer":"app-pages-browser"},"startTime":1767363446653,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":80858,"timestamp":79364488,"id":1097,"parentId":1002,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectList.tsx","layer":"app-pages-browser"},"startTime":1767363446653,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":83723,"timestamp":79364913,"id":1100,"parentId":1074,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1767363446654,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":84673,"timestamp":79364830,"id":1099,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"app-pages-browser"},"startTime":1767363446653,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":87561,"timestamp":79364660,"id":1098,"parentId":1002,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectModal.tsx","layer":"app-pages-browser"},"startTime":1767363446653,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":87151,"timestamp":79366386,"id":1102,"parentId":1002,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useProjectStore.ts","layer":"app-pages-browser"},"startTime":1767363446655,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":93252,"timestamp":79361289,"id":1093,"parentId":1046,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/set-attributes-from-props.js","layer":"pages-dir-browser"},"startTime":1767363446650,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":3954,"timestamp":79471743,"id":1110,"parentId":1003,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/input.tsx","layer":"app-pages-browser"},"startTime":1767363446760,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":4960,"timestamp":79471459,"id":1108,"parentId":1003,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/button.tsx","layer":"app-pages-browser"},"startTime":1767363446760,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5859,"timestamp":79471681,"id":1109,"parentId":1073,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"pages-dir-browser"},"startTime":1767363446760,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":547333,"timestamp":79480224,"id":1111,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"app-pages-browser"},"startTime":1767363446769,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5968,"timestamp":80028969,"id":1114,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/nav-failure-handler.js","layer":"app-pages-browser"},"startTime":1767363447318,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13656,"timestamp":80029557,"id":1115,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1767363447318,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":16844,"timestamp":80028657,"id":1113,"parentId":1003,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1767363447317,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":23879,"timestamp":80029693,"id":1116,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/links.js","layer":"app-pages-browser"},"startTime":1767363447318,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":18661,"timestamp":80039310,"id":1117,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-error.js","layer":"app-pages-browser"},"startTime":1767363447328,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":19833,"timestamp":80039469,"id":1118,"parentId":1073,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-error.js","layer":"pages-dir-browser"},"startTime":1767363447328,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":20340,"timestamp":80039558,"id":1119,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"pages-dir-browser"},"startTime":1767363447328,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":21572,"timestamp":80039671,"id":1121,"parentId":1004,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/workspace/WorkspaceLayout.tsx","layer":"app-pages-browser"},"startTime":1767363447328,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":25727,"timestamp":80039857,"id":1122,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/root-error-boundary.js","layer":"app-pages-browser"},"startTime":1767363447328,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":37798,"timestamp":80039616,"id":1120,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/route-loader.js","layer":"pages-dir-browser"},"startTime":1767363447328,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":29066,"timestamp":80055100,"id":1123,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/detect-domain-locale.js","layer":"pages-dir-browser"},"startTime":1767363447344,"traceId":"f0add02174dc0eb2"},{"name":"postcss-process","duration":800902,"timestamp":79772286,"id":1112,"parentId":1107,"tags":{},"startTime":1767363447061,"traceId":"f0add02174dc0eb2"},{"name":"postcss-loader","duration":1136510,"timestamp":79436783,"id":1107,"parentId":1101,"tags":{},"startTime":1767363446725,"traceId":"f0add02174dc0eb2"},{"name":"css-loader","duration":40866,"timestamp":80573543,"id":1124,"parentId":1101,"tags":{"astUsed":"true"},"startTime":1767363447862,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":526,"timestamp":80647444,"id":1126,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-api-route.js","layer":"pages-dir-browser"},"startTime":1767363447936,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4285,"timestamp":80647295,"id":1125,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-locale.js","layer":"pages-dir-browser"},"startTime":1767363447936,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4150,"timestamp":80655439,"id":1134,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/constants.js","layer":"pages-dir-browser"},"startTime":1767363447944,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8662,"timestamp":80652711,"id":1129,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","layer":"pages-dir-browser"},"startTime":1767363447941,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10475,"timestamp":80652509,"id":1127,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/resolve-href.js","layer":"pages-dir-browser"},"startTime":1767363447941,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10795,"timestamp":80652818,"id":1131,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"pages-dir-browser"},"startTime":1767363447941,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12330,"timestamp":80652865,"id":1132,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"pages-dir-browser"},"startTime":1767363447941,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13236,"timestamp":80652651,"id":1128,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/add-locale.js","layer":"pages-dir-browser"},"startTime":1767363447941,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":18514,"timestamp":80652766,"id":1130,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"pages-dir-browser"},"startTime":1767363447941,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":19376,"timestamp":80652907,"id":1133,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"pages-dir-browser"},"startTime":1767363447942,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":29029,"timestamp":80655670,"id":1136,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":"pages-dir-browser"},"startTime":1767363447944,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":30000,"timestamp":80655548,"id":1135,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":"pages-dir-browser"},"startTime":1767363447944,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":31490,"timestamp":80655744,"id":1137,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","layer":"pages-dir-browser"},"startTime":1767363447944,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3697,"timestamp":80695983,"id":1138,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","layer":"pages-dir-browser"},"startTime":1767363447985,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4942,"timestamp":80701672,"id":1140,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/compare-states.js","layer":"pages-dir-browser"},"startTime":1767363447990,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9589,"timestamp":80701735,"id":1141,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"pages-dir-browser"},"startTime":1767363447990,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10034,"timestamp":80701786,"id":1142,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"pages-dir-browser"},"startTime":1767363447990,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13360,"timestamp":80701537,"id":1139,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"pages-dir-browser"},"startTime":1767363447990,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13311,"timestamp":80708683,"id":1143,"parentId":1120,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":"pages-dir-browser"},"startTime":1767363447997,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":15261,"timestamp":80708871,"id":1144,"parentId":998,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/bloom-filter.js","layer":"pages-dir-browser"},"startTime":1767363447997,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":17020,"timestamp":80708965,"id":1145,"parentId":1002,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/index.ts","layer":"app-pages-browser"},"startTime":1767363447998,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11183,"timestamp":80715920,"id":1146,"parentId":1022,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-thenable.js","layer":"app-pages-browser"},"startTime":1767363448005,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11840,"timestamp":80716120,"id":1147,"parentId":1025,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/search-params.browser.prod.js","layer":"app-pages-browser"},"startTime":1767363448005,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12506,"timestamp":80716221,"id":1148,"parentId":1026,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/params.browser.prod.js","layer":"app-pages-browser"},"startTime":1767363448005,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12899,"timestamp":80716306,"id":1149,"parentId":1027,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/report-global-error.js","layer":"app-pages-browser"},"startTime":1767363448005,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8574,"timestamp":80735683,"id":1150,"parentId":1029,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/report-global-error.js","layer":"pages-dir-browser"},"startTime":1767363448024,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12056,"timestamp":80735842,"id":1151,"parentId":1021,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1767363448024,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13632,"timestamp":80736028,"id":1153,"parentId":1017,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"app-pages-browser"},"startTime":1767363448025,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":23765,"timestamp":80736096,"id":1154,"parentId":1017,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"app-pages-browser"},"startTime":1767363448025,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":28788,"timestamp":80735936,"id":1152,"parentId":1017,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/segment-cache.js","layer":"app-pages-browser"},"startTime":1767363448025,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":40042,"timestamp":80742045,"id":1157,"parentId":1031,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1767363448031,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":46038,"timestamp":80741756,"id":1155,"parentId":1031,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"app-pages-browser"},"startTime":1767363448030,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":46542,"timestamp":80742180,"id":1159,"parentId":1027,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"app-pages-browser"},"startTime":1767363448031,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":49176,"timestamp":80742121,"id":1158,"parentId":1031,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"app-pages-browser"},"startTime":1767363448031,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":49924,"timestamp":80742232,"id":1160,"parentId":1029,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"pages-dir-browser"},"startTime":1767363448031,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":54393,"timestamp":80741931,"id":1156,"parentId":1031,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"app-pages-browser"},"startTime":1767363448031,"traceId":"f0add02174dc0eb2"},{"name":"font-loader","duration":1408803,"timestamp":79407227,"id":1104,"parentId":1103,"tags":{},"startTime":1767363446696,"traceId":"f0add02174dc0eb2"},{"name":"postcss","duration":1779,"timestamp":80816530,"id":1161,"parentId":1103,"tags":{},"startTime":1767363448105,"traceId":"f0add02174dc0eb2"}]
12
- [{"name":"next-font-loader","duration":1451588,"timestamp":79366836,"id":1103,"parentId":1094,"tags":{},"startTime":1767363446655,"traceId":"f0add02174dc0eb2"},{"name":"css-loader","duration":14862,"timestamp":80818373,"id":1162,"parentId":1094,"tags":{"astUsed":"true"},"startTime":1767363448107,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":1472711,"timestamp":79361462,"id":1094,"parentId":1056,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css.webpack[javascript/auto]!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}","layer":null},"startTime":1767363446650,"traceId":"f0add02174dc0eb2"},{"name":"font-loader","duration":1410954,"timestamp":79434913,"id":1106,"parentId":1105,"tags":{},"startTime":1767363446724,"traceId":"f0add02174dc0eb2"},{"name":"postcss","duration":1660,"timestamp":80846080,"id":1163,"parentId":1105,"tags":{},"startTime":1767363448135,"traceId":"f0add02174dc0eb2"},{"name":"next-font-loader","duration":1413302,"timestamp":79434845,"id":1105,"parentId":1095,"tags":{},"startTime":1767363446723,"traceId":"f0add02174dc0eb2"},{"name":"css-loader","duration":4600,"timestamp":80848051,"id":1164,"parentId":1095,"tags":{"astUsed":"true"},"startTime":1767363448137,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":1489234,"timestamp":79364174,"id":1095,"parentId":1057,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css.webpack[javascript/auto]!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}","layer":null},"startTime":1767363446653,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1342,"timestamp":80859957,"id":1174,"parentId":1055,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/cjs/react-jsx-runtime.production.js","layer":"app-pages-browser"},"startTime":1767363448149,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7599,"timestamp":80855831,"id":1166,"parentId":1033,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1767363448144,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":18937,"timestamp":80855647,"id":1165,"parentId":1032,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/route-params.js","layer":"app-pages-browser"},"startTime":1767363448144,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":20563,"timestamp":80855936,"id":1167,"parentId":1032,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1767363448145,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":23888,"timestamp":80856059,"id":1168,"parentId":1049,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","layer":"pages-dir-browser"},"startTime":1767363448145,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":2405713,"timestamp":78475152,"id":953,"parentId":949,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found.js&page=%2F_not-found%2Fpage!"},"startTime":1767363445764,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":23838,"timestamp":80859672,"id":1171,"parentId":1036,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"app-pages-browser"},"startTime":1767363448148,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":25499,"timestamp":80859790,"id":1172,"parentId":1041,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"pages-dir-browser"},"startTime":1767363448148,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":27162,"timestamp":80859871,"id":1173,"parentId":1044,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"app-pages-browser"},"startTime":1767363448148,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":28803,"timestamp":80859504,"id":1170,"parentId":1032,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/set-cache-busting-search-param.js","layer":"app-pages-browser"},"startTime":1767363448148,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9307,"timestamp":80896691,"id":1181,"parentId":1066,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/cjs/react.production.js","layer":"app-pages-browser"},"startTime":1767363448185,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":216848,"timestamp":80896801,"id":1183,"parentId":1061,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-dom/cjs/react-dom-client.production.js","layer":"app-pages-browser"},"startTime":1767363448185,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":218059,"timestamp":80896843,"id":1184,"parentId":1069,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-dom/cjs/react-dom.production.js","layer":"app-pages-browser"},"startTime":1767363448185,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":230827,"timestamp":80896883,"id":1185,"parentId":1063,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.production.js","layer":"app-pages-browser"},"startTime":1767363448185,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":243110,"timestamp":80896154,"id":1176,"parentId":1172,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"pages-dir-browser"},"startTime":1767363448185,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":243266,"timestamp":80896334,"id":1177,"parentId":1058,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config.js","layer":"pages-dir-browser"},"startTime":1767363448185,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":243439,"timestamp":80896454,"id":1178,"parentId":1060,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"app-pages-browser"},"startTime":1767363448185,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":243395,"timestamp":80896735,"id":1182,"parentId":1070,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/as-path-to-search-params.js","layer":"pages-dir-browser"},"startTime":1767363448185,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":244158,"timestamp":80896566,"id":1179,"parentId":1059,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"pages-dir-browser"},"startTime":1767363448185,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":245514,"timestamp":80896633,"id":1180,"parentId":1049,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/constants.js","layer":"pages-dir-browser"},"startTime":1767363448185,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":475,"timestamp":81145239,"id":1187,"parentId":1051,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/cjs/react-jsx-runtime.production.js","layer":"pages-dir-browser"},"startTime":1767363448434,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4315,"timestamp":81145278,"id":1188,"parentId":1052,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/cjs/react.production.js","layer":"pages-dir-browser"},"startTime":1767363448434,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11990,"timestamp":81145096,"id":1186,"parentId":1072,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request-idle-callback.js","layer":"pages-dir-browser"},"startTime":1767363448434,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":213035,"timestamp":81158183,"id":1195,"parentId":1064,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-dom@19.2.3_react@19.2.3/node_modules/react-dom/cjs/react-dom-client.production.js","layer":"pages-dir-browser"},"startTime":1767363448447,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":223310,"timestamp":81152270,"id":1189,"parentId":1176,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"pages-dir-browser"},"startTime":1767363448441,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":223472,"timestamp":81152426,"id":1190,"parentId":1176,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"pages-dir-browser"},"startTime":1767363448441,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":227072,"timestamp":81152514,"id":1191,"parentId":1178,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"app-pages-browser"},"startTime":1767363448441,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":227971,"timestamp":81152610,"id":1192,"parentId":1078,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"pages-dir-browser"},"startTime":1767363448441,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":228403,"timestamp":81152684,"id":1193,"parentId":1078,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767363448441,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":228656,"timestamp":81152762,"id":1194,"parentId":1078,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"pages-dir-browser"},"startTime":1767363448441,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":227642,"timestamp":81158311,"id":1196,"parentId":1087,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"pages-dir-browser"},"startTime":1767363448447,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":228323,"timestamp":81158440,"id":1197,"parentId":1086,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1767363448447,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":770,"timestamp":81407166,"id":1207,"parentId":1072,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-dom@19.2.3_react@19.2.3/node_modules/react-dom/index.js","layer":"pages-dir-browser"},"startTime":1767363448696,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5712,"timestamp":81404688,"id":1199,"parentId":1091,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"pages-dir-browser"},"startTime":1767363448693,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6103,"timestamp":81404771,"id":1200,"parentId":1087,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"pages-dir-browser"},"startTime":1767363448693,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6470,"timestamp":81404851,"id":1201,"parentId":1086,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"app-pages-browser"},"startTime":1767363448693,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7678,"timestamp":81404963,"id":1202,"parentId":1070,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"pages-dir-browser"},"startTime":1767363448694,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11119,"timestamp":81404459,"id":1198,"parentId":1090,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"app-pages-browser"},"startTime":1767363448693,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9533,"timestamp":81406411,"id":1203,"parentId":1197,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"app-pages-browser"},"startTime":1767363448695,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":12603,"timestamp":81406748,"id":1205,"parentId":1097,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectCard.tsx","layer":"app-pages-browser"},"startTime":1767363448695,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":12964,"timestamp":81406938,"id":1206,"parentId":1096,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/LanguageSwitcher.tsx","layer":"app-pages-browser"},"startTime":1767363448696,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":14685,"timestamp":81406550,"id":1204,"parentId":1097,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectCard.tsx","layer":"app-pages-browser"},"startTime":1767363448695,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4527,"timestamp":81427268,"id":1209,"parentId":1118,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"pages-dir-browser"},"startTime":1767363448716,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6299,"timestamp":81427063,"id":1208,"parentId":1115,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1767363448716,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3329,"timestamp":81431979,"id":1210,"parentId":1122,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/graceful-degrade-boundary.js","layer":"app-pages-browser"},"startTime":1767363448721,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":586353,"timestamp":80856149,"id":1169,"parentId":1096,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/api/image.js","layer":"app-pages-browser"},"startTime":1767363448145,"traceId":"f0add02174dc0eb2"},{"name":"build-module-css","duration":2078184,"timestamp":79365024,"id":1101,"parentId":1076,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css.webpack[javascript/auto]!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css","layer":null},"startTime":1767363446654,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":5538,"timestamp":81441030,"id":1211,"parentId":1098,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/dialog.tsx","layer":"app-pages-browser"},"startTime":1767363448730,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9799,"timestamp":81447597,"id":1212,"parentId":1120,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/trusted-types.js","layer":"pages-dir-browser"},"startTime":1767363448736,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":10514,"timestamp":81448702,"id":1213,"parentId":1110,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1767363448737,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10715,"timestamp":81448939,"id":1214,"parentId":1130,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"pages-dir-browser"},"startTime":1767363448738,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11465,"timestamp":81449056,"id":1215,"parentId":1131,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js","layer":"pages-dir-browser"},"startTime":1767363448738,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11055,"timestamp":81449861,"id":1223,"parentId":1136,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":"pages-dir-browser"},"startTime":1767363448738,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11353,"timestamp":81449954,"id":1224,"parentId":1137,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":"pages-dir-browser"},"startTime":1767363448739,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12698,"timestamp":81449769,"id":1222,"parentId":1130,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js","layer":"pages-dir-browser"},"startTime":1767363448738,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":31243,"timestamp":81464414,"id":1225,"parentId":1138,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":"pages-dir-browser"},"startTime":1767363448753,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":31377,"timestamp":81464584,"id":1226,"parentId":1138,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":"pages-dir-browser"},"startTime":1767363448753,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":609220,"timestamp":80890026,"id":1175,"parentId":1096,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-dir/link.js","layer":"app-pages-browser"},"startTime":1767363448179,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":74753,"timestamp":81449443,"id":1219,"parentId":1121,"tags":{"name":"__barrel_optimize__?names=FolderTree,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363448738,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":75188,"timestamp":81449240,"id":1217,"parentId":1004,"tags":{"name":"__barrel_optimize__?names=AlertCircle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363448738,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":76736,"timestamp":81449341,"id":1218,"parentId":1096,"tags":{"name":"__barrel_optimize__?names=ArrowLeft,Settings!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363448738,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":80019,"timestamp":81449662,"id":1221,"parentId":1204,"tags":{"name":"__barrel_optimize__?names=Globe,Server,Smartphone,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363448738,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":80376,"timestamp":81449549,"id":1220,"parentId":1205,"tags":{"name":"__barrel_optimize__?names=Plus,Sparkles!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363448738,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":81071,"timestamp":81449135,"id":1216,"parentId":1003,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Check,FolderOpen,Loader2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363448738,"traceId":"f0add02174dc0eb2"},{"name":"build-module-json","duration":1817,"timestamp":81532422,"id":1234,"parentId":1145,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/en.json","layer":"app-pages-browser"},"startTime":1767363448821,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7914,"timestamp":81528373,"id":1228,"parentId":1147,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/reflect-utils.js","layer":"app-pages-browser"},"startTime":1767363448817,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":9148,"timestamp":81528161,"id":1227,"parentId":1205,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/card.tsx","layer":"app-pages-browser"},"startTime":1767363448817,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12381,"timestamp":81531966,"id":1231,"parentId":1175,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"app-pages-browser"},"startTime":1767363448821,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":14111,"timestamp":81531868,"id":1230,"parentId":1175,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"app-pages-browser"},"startTime":1767363448820,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":14700,"timestamp":81532251,"id":1233,"parentId":1121,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ChatPanel.tsx","layer":"app-pages-browser"},"startTime":1767363448821,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":14981,"timestamp":81533283,"id":1236,"parentId":1121,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileViewer.tsx","layer":"app-pages-browser"},"startTime":1767363448822,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":19242,"timestamp":81531699,"id":1229,"parentId":1175,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1767363448820,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":20100,"timestamp":81533113,"id":1235,"parentId":1121,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileExplorer.tsx","layer":"app-pages-browser"},"startTime":1767363448822,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":25308,"timestamp":81532085,"id":1232,"parentId":1121,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/PreviewPanel.tsx","layer":"app-pages-browser"},"startTime":1767363448821,"traceId":"f0add02174dc0eb2"},{"name":"build-module-json","duration":425,"timestamp":81583957,"id":1237,"parentId":1145,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/ko.json","layer":"app-pages-browser"},"startTime":1767363448873,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":2017,"timestamp":81586643,"id":1242,"parentId":1102,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/index.mjs","layer":"app-pages-browser"},"startTime":1767363448875,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":12516,"timestamp":81586816,"id":1243,"parentId":1145,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/middleware.mjs","layer":"app-pages-browser"},"startTime":1767363448875,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17567,"timestamp":81586457,"id":1240,"parentId":1151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767363448875,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":18277,"timestamp":81586550,"id":1241,"parentId":1151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"app-pages-browser"},"startTime":1767363448875,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":20155,"timestamp":81586341,"id":1239,"parentId":1151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1767363448875,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":21750,"timestamp":81586141,"id":1238,"parentId":1230,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1767363448875,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":22918,"timestamp":81610652,"id":1245,"parentId":1236,"tags":{"name":"__barrel_optimize__?names=Check,Copy,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363448899,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":23178,"timestamp":81610797,"id":1246,"parentId":1235,"tags":{"name":"__barrel_optimize__?names=ChevronDown,ChevronRight,File,Folder,FolderOpen,RefreshCw!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363448899,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":23926,"timestamp":81610429,"id":1244,"parentId":1233,"tags":{"name":"__barrel_optimize__?names=MessageSquarePlus!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363448899,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":23839,"timestamp":81610917,"id":1247,"parentId":1232,"tags":{"name":"__barrel_optimize__?names=ExternalLink,Loader2,Package,Play,RefreshCw,RotateCcw,Square,Zap!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363448900,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11678,"timestamp":81644699,"id":1248,"parentId":1151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unrecognized-action-error.js","layer":"app-pages-browser"},"startTime":1767363448933,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17765,"timestamp":81644929,"id":1249,"parentId":1153,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"app-pages-browser"},"startTime":1767363448934,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":16900,"timestamp":81646537,"id":1250,"parentId":1233,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageList.tsx","layer":"app-pages-browser"},"startTime":1767363448935,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":15672,"timestamp":81648573,"id":1253,"parentId":1158,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"app-pages-browser"},"startTime":1767363448937,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17918,"timestamp":81648403,"id":1252,"parentId":1154,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1767363448937,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":28534,"timestamp":81646782,"id":1251,"parentId":1233,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageInput.tsx","layer":"app-pages-browser"},"startTime":1767363448935,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":27433,"timestamp":81648770,"id":1255,"parentId":1153,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"app-pages-browser"},"startTime":1767363448937,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":28831,"timestamp":81648677,"id":1254,"parentId":1153,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"app-pages-browser"},"startTime":1767363448937,"traceId":"f0add02174dc0eb2"}]
13
- [{"name":"build-module-js","duration":30864,"timestamp":81648860,"id":1256,"parentId":1153,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"app-pages-browser"},"startTime":1767363448937,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":32638,"timestamp":81648957,"id":1257,"parentId":1153,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/hmr-refresh-reducer.js","layer":"app-pages-browser"},"startTime":1767363448938,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":37585,"timestamp":81649086,"id":1258,"parentId":1153,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"app-pages-browser"},"startTime":1767363448938,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":909,"timestamp":81713244,"id":1263,"parentId":1094,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/runtime/api.js","layer":null},"startTime":1767363449002,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":5414,"timestamp":81712968,"id":1260,"parentId":1108,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/class-variance-authority@0.7.1/node_modules/class-variance-authority/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449002,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7359,"timestamp":81713109,"id":1261,"parentId":1170,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/cache-busting-search-param.js","layer":"app-pages-browser"},"startTime":1767363449002,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9012,"timestamp":81713182,"id":1262,"parentId":1165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js","layer":"app-pages-browser"},"startTime":1767363449002,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9777,"timestamp":81712812,"id":1259,"parentId":1251,"tags":{"name":"__barrel_optimize__?names=Clock,Paperclip,Send!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363449001,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":2529871,"timestamp":79205582,"id":1056,"parentId":962,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}","layer":"app-pages-browser"},"startTime":1767363446494,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":2527642,"timestamp":79208808,"id":1057,"parentId":962,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}","layer":"app-pages-browser"},"startTime":1767363446497,"traceId":"f0add02174dc0eb2"},{"name":"build-module-css","duration":2448182,"timestamp":79295170,"id":1076,"parentId":962,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css","layer":"app-pages-browser"},"startTime":1767363446584,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":22701,"timestamp":81723727,"id":1266,"parentId":1251,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ModeToggle.tsx","layer":"app-pages-browser"},"startTime":1767363449012,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":24872,"timestamp":81723245,"id":1264,"parentId":1250,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageItem.tsx","layer":"app-pages-browser"},"startTime":1767363449012,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":27051,"timestamp":81723534,"id":1265,"parentId":1250,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/StreamingMessage.tsx","layer":"app-pages-browser"},"startTime":1767363449012,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":5705,"timestamp":81754288,"id":1267,"parentId":1251,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/FilePreview.tsx","layer":"app-pages-browser"},"startTime":1767363449043,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2507,"timestamp":81763600,"id":1270,"parentId":1207,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-dom@19.2.3_react@19.2.3/node_modules/react-dom/cjs/react-dom.production.js","layer":"pages-dir-browser"},"startTime":1767363449052,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3594,"timestamp":81763816,"id":1273,"parentId":1215,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/route-pattern-normalizer.js","layer":"pages-dir-browser"},"startTime":1767363449052,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8435,"timestamp":81760652,"id":1268,"parentId":1180,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":"pages-dir-browser"},"startTime":1767363449049,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":166,"timestamp":81772556,"id":1274,"parentId":1056,"tags":{},"startTime":1767363449061,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":22,"timestamp":81772739,"id":1275,"parentId":1057,"tags":{},"startTime":1767363449061,"traceId":"f0add02174dc0eb2"},{"name":"build-module","duration":24,"timestamp":81772768,"id":1276,"parentId":1076,"tags":{},"startTime":1767363449061,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7549,"timestamp":81773230,"id":1280,"parentId":1183,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1767363449062,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":18980,"timestamp":81763340,"id":1269,"parentId":1098,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/index.ts","layer":"app-pages-browser"},"startTime":1767363449052,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":19657,"timestamp":81763655,"id":1271,"parentId":1169,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-external.js","layer":"app-pages-browser"},"startTime":1767363449052,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":23760,"timestamp":81763746,"id":1272,"parentId":1202,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"pages-dir-browser"},"startTime":1767363449052,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":15018,"timestamp":81772807,"id":1277,"parentId":1266,"tags":{"name":"__barrel_optimize__?names=Hammer,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363449061,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":15340,"timestamp":81772971,"id":1278,"parentId":1264,"tags":{"name":"__barrel_optimize__?names=Bot,CheckCircle2,Edit3,FileText,FolderSearch,Globe,ListTodo,Search,Terminal!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363449062,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":18330,"timestamp":81773125,"id":1279,"parentId":1265,"tags":{"name":"__barrel_optimize__?names=Bot,CheckCircle2,Edit3,FileText,FolderSearch,Globe,ListTodo,Loader2,Search,Terminal!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363449062,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3212,"timestamp":81801072,"id":1282,"parentId":1175,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/error-once.js","layer":"app-pages-browser"},"startTime":1767363449090,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4589,"timestamp":81800792,"id":1281,"parentId":1175,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/use-merged-ref.js","layer":"app-pages-browser"},"startTime":1767363449089,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":717,"timestamp":81805890,"id":1284,"parentId":1195,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/scheduler@0.27.0/node_modules/scheduler/index.js","layer":"pages-dir-browser"},"startTime":1767363449095,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6158,"timestamp":81801162,"id":1283,"parentId":1267,"tags":{"name":"__barrel_optimize__?names=FileText,Loader2,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363449090,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":8759,"timestamp":81805997,"id":1285,"parentId":1264,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MarkdownRenderer.tsx","layer":"app-pages-browser"},"startTime":1767363449095,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4080,"timestamp":81818313,"id":1287,"parentId":1239,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1767363449107,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4641,"timestamp":81818484,"id":1288,"parentId":1239,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/forbidden.js","layer":"app-pages-browser"},"startTime":1767363449107,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5500,"timestamp":81818598,"id":1289,"parentId":1239,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unauthorized.js","layer":"app-pages-browser"},"startTime":1767363449107,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8571,"timestamp":81818686,"id":1290,"parentId":1239,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unstable-rethrow.js","layer":"app-pages-browser"},"startTime":1767363449107,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":13746,"timestamp":81815883,"id":1286,"parentId":1265,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/AskUserQuestionBlock.tsx","layer":"app-pages-browser"},"startTime":1767363449105,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5256,"timestamp":81832293,"id":1291,"parentId":1219,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-tree.js","layer":"app-pages-browser"},"startTime":1767363449121,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3295,"timestamp":81838218,"id":1293,"parentId":1217,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-alert.js","layer":"app-pages-browser"},"startTime":1767363449127,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3852,"timestamp":81838054,"id":1292,"parentId":1219,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/x.js","layer":"app-pages-browser"},"startTime":1767363449127,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3911,"timestamp":81838322,"id":1294,"parentId":1218,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-left.js","layer":"app-pages-browser"},"startTime":1767363449127,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4079,"timestamp":81838393,"id":1295,"parentId":1218,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings.js","layer":"app-pages-browser"},"startTime":1767363449127,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4256,"timestamp":81838450,"id":1296,"parentId":1221,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/globe.js","layer":"app-pages-browser"},"startTime":1767363449127,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5351,"timestamp":81838503,"id":1297,"parentId":1221,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/server.js","layer":"app-pages-browser"},"startTime":1767363449127,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5862,"timestamp":81839752,"id":1298,"parentId":1221,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/smartphone.js","layer":"app-pages-browser"},"startTime":1767363449128,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6001,"timestamp":81839881,"id":1299,"parentId":1221,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/trash-2.js","layer":"app-pages-browser"},"startTime":1767363449128,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6137,"timestamp":81839993,"id":1300,"parentId":1216,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/check.js","layer":"app-pages-browser"},"startTime":1767363449129,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6210,"timestamp":81840140,"id":1301,"parentId":1220,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/plus.js","layer":"app-pages-browser"},"startTime":1767363449129,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6336,"timestamp":81840249,"id":1302,"parentId":1220,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sparkles.js","layer":"app-pages-browser"},"startTime":1767363449129,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3405,"timestamp":81847648,"id":1304,"parentId":1216,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/loader-circle.js","layer":"app-pages-browser"},"startTime":1767363449136,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3856,"timestamp":81847514,"id":1303,"parentId":1216,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-open.js","layer":"app-pages-browser"},"startTime":1767363449136,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3872,"timestamp":81847781,"id":1306,"parentId":1246,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-down.js","layer":"app-pages-browser"},"startTime":1767363449136,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4329,"timestamp":81847721,"id":1305,"parentId":1245,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/copy.js","layer":"app-pages-browser"},"startTime":1767363449136,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":3630,"timestamp":81853743,"id":1319,"parentId":1242,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/vanilla.mjs","layer":"app-pages-browser"},"startTime":1767363449142,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":4059,"timestamp":81853912,"id":1320,"parentId":1242,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/react.mjs","layer":"app-pages-browser"},"startTime":1767363449143,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6579,"timestamp":81852400,"id":1307,"parentId":1246,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file.js","layer":"app-pages-browser"},"startTime":1767363449141,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6751,"timestamp":81852565,"id":1308,"parentId":1246,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-right.js","layer":"app-pages-browser"},"startTime":1767363449141,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6952,"timestamp":81852657,"id":1309,"parentId":1246,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder.js","layer":"app-pages-browser"},"startTime":1767363449141,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7195,"timestamp":81852747,"id":1310,"parentId":1246,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/refresh-cw.js","layer":"app-pages-browser"},"startTime":1767363449141,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7460,"timestamp":81852833,"id":1311,"parentId":1244,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-plus.js","layer":"app-pages-browser"},"startTime":1767363449141,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7563,"timestamp":81853061,"id":1313,"parentId":1247,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/external-link.js","layer":"app-pages-browser"},"startTime":1767363449142,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7793,"timestamp":81853158,"id":1314,"parentId":1247,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/package.js","layer":"app-pages-browser"},"startTime":1767363449142,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8033,"timestamp":81853249,"id":1315,"parentId":1247,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rotate-ccw.js","layer":"app-pages-browser"},"startTime":1767363449142,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8240,"timestamp":81853337,"id":1316,"parentId":1247,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/play.js","layer":"app-pages-browser"},"startTime":1767363449142,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8308,"timestamp":81853568,"id":1317,"parentId":1247,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square.js","layer":"app-pages-browser"},"startTime":1767363449142,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8525,"timestamp":81853657,"id":1318,"parentId":1247,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/zap.js","layer":"app-pages-browser"},"startTime":1767363449142,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":14115,"timestamp":81852925,"id":1312,"parentId":1286,"tags":{"name":"__barrel_optimize__?names=Check,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363449142,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5815,"timestamp":81863284,"id":1321,"parentId":1253,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"app-pages-browser"},"startTime":1767363449152,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6392,"timestamp":81863485,"id":1322,"parentId":1249,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"app-pages-browser"},"startTime":1767363449152,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10390,"timestamp":81863700,"id":1324,"parentId":1249,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"app-pages-browser"},"startTime":1767363449152,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11120,"timestamp":81863597,"id":1323,"parentId":1249,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"app-pages-browser"},"startTime":1767363449152,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11427,"timestamp":81863806,"id":1325,"parentId":1249,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"app-pages-browser"},"startTime":1767363449152,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4779,"timestamp":81871643,"id":1326,"parentId":1249,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"app-pages-browser"},"startTime":1767363449160,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7258,"timestamp":81881884,"id":1329,"parentId":1256,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"app-pages-browser"},"startTime":1767363449171,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7883,"timestamp":81881948,"id":1330,"parentId":1258,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/assign-location.js","layer":"app-pages-browser"},"startTime":1767363449171,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13562,"timestamp":81882133,"id":1332,"parentId":1249,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/aliased-prefetch-navigations.js","layer":"app-pages-browser"},"startTime":1767363449171,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":18476,"timestamp":81881821,"id":1328,"parentId":1249,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"app-pages-browser"},"startTime":1767363449170,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17432,"timestamp":81883695,"id":1334,"parentId":1258,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/server-reference-info.js","layer":"app-pages-browser"},"startTime":1767363449172,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17757,"timestamp":81883798,"id":1335,"parentId":1259,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock.js","layer":"app-pages-browser"},"startTime":1767363449172,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17959,"timestamp":81883891,"id":1336,"parentId":1259,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/paperclip.js","layer":"app-pages-browser"},"startTime":1767363449173,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":19468,"timestamp":81883480,"id":1333,"parentId":1232,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/usePreviewStore.ts","layer":"app-pages-browser"},"startTime":1767363449172,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":24817,"timestamp":81881999,"id":1331,"parentId":1233,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useChatStore.ts","layer":"app-pages-browser"},"startTime":1767363449171,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":28736,"timestamp":81881676,"id":1327,"parentId":1249,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"app-pages-browser"},"startTime":1767363449170,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1402,"timestamp":81916332,"id":1338,"parentId":1213,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","layer":"app-pages-browser"},"startTime":1767363449205,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2395,"timestamp":81916177,"id":1337,"parentId":1259,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/send.js","layer":"app-pages-browser"},"startTime":1767363449205,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":2770,"timestamp":81918727,"id":1339,"parentId":1286,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/radio-group.tsx","layer":"app-pages-browser"},"startTime":1767363449207,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":8437,"timestamp":81918870,"id":1340,"parentId":1286,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/checkbox.tsx","layer":"app-pages-browser"},"startTime":1767363449207,"traceId":"f0add02174dc0eb2"},{"name":"build-module-tsx","duration":8850,"timestamp":81919656,"id":1341,"parentId":1286,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/label.tsx","layer":"app-pages-browser"},"startTime":1767363449208,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5032,"timestamp":81930715,"id":1343,"parentId":1215,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/path-to-regexp/index.js","layer":"pages-dir-browser"},"startTime":1767363449219,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":17831,"timestamp":81937843,"id":1345,"parentId":1213,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/tailwind-merge@2.6.0/node_modules/tailwind-merge/dist/bundle-mjs.mjs","layer":"app-pages-browser"},"startTime":1767363449226,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":26240,"timestamp":81930558,"id":1342,"parentId":1261,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1767363449219,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":22702,"timestamp":81937679,"id":1344,"parentId":1339,"tags":{"name":"__barrel_optimize__?names=Circle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363449226,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":104370,"timestamp":81961921,"id":1348,"parentId":1236,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/prism-react-renderer@2.4.1_react@19.2.3/node_modules/prism-react-renderer/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449251,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":111603,"timestamp":81958231,"id":1346,"parentId":1340,"tags":{"name":"__barrel_optimize__?names=Check!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767363449247,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":118178,"timestamp":81958418,"id":1347,"parentId":1271,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/image-component.js","layer":"app-pages-browser"},"startTime":1767363449247,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4104,"timestamp":82081743,"id":1352,"parentId":1280,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/scheduler/cjs/scheduler.production.js","layer":"app-pages-browser"},"startTime":1767363449370,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7950,"timestamp":82081603,"id":1350,"parentId":1277,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hammer.js","layer":"app-pages-browser"},"startTime":1767363449370,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8228,"timestamp":82081681,"id":1351,"parentId":1277,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-question.js","layer":"app-pages-browser"},"startTime":1767363449370,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":14226,"timestamp":82081452,"id":1349,"parentId":1271,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-img-props.js","layer":"app-pages-browser"},"startTime":1767363449370,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":17878,"timestamp":82103782,"id":1353,"parentId":1347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"app-pages-browser"},"startTime":1767363449392,"traceId":"f0add02174dc0eb2"}]
14
- [{"name":"build-module-js","duration":18065,"timestamp":82104114,"id":1355,"parentId":1347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767363449393,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":18385,"timestamp":82104194,"id":1356,"parentId":1347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767363449393,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":19840,"timestamp":82104024,"id":1354,"parentId":1347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config.js","layer":"app-pages-browser"},"startTime":1767363449393,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10902,"timestamp":82113454,"id":1358,"parentId":1278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bot.js","layer":"app-pages-browser"},"startTime":1767363449402,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":11164,"timestamp":82113566,"id":1359,"parentId":1278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-text.js","layer":"app-pages-browser"},"startTime":1767363449402,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":15437,"timestamp":82113760,"id":1360,"parentId":1278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-check.js","layer":"app-pages-browser"},"startTime":1767363449402,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":16205,"timestamp":82113233,"id":1357,"parentId":1278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pen-line.js","layer":"app-pages-browser"},"startTime":1767363449402,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":13111,"timestamp":82116856,"id":1361,"parentId":1278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-search.js","layer":"app-pages-browser"},"startTime":1767363449405,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1720,"timestamp":82135994,"id":1370,"parentId":1252,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"app-pages-browser"},"startTime":1767363449425,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4175,"timestamp":82134042,"id":1363,"parentId":1278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/search.js","layer":"app-pages-browser"},"startTime":1767363449423,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4421,"timestamp":82134141,"id":1364,"parentId":1278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/terminal.js","layer":"app-pages-browser"},"startTime":1767363449423,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5600,"timestamp":82133828,"id":1362,"parentId":1278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-todo.js","layer":"app-pages-browser"},"startTime":1767363449422,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4408,"timestamp":82135479,"id":1366,"parentId":1353,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767363449424,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6183,"timestamp":82135368,"id":1365,"parentId":1353,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"app-pages-browser"},"startTime":1767363449424,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6368,"timestamp":82135574,"id":1367,"parentId":1353,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"app-pages-browser"},"startTime":1767363449424,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":6329,"timestamp":82135830,"id":1369,"parentId":1269,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/preview.ts","layer":"app-pages-browser"},"startTime":1767363449424,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":6997,"timestamp":82135661,"id":1368,"parentId":1269,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/project.ts","layer":"app-pages-browser"},"startTime":1767363449424,"traceId":"f0add02174dc0eb2"},{"name":"build-module-ts","duration":6753,"timestamp":82136191,"id":1371,"parentId":1269,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/chat.ts","layer":"app-pages-browser"},"startTime":1767363449425,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1200,"timestamp":82152730,"id":1373,"parentId":1252,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"app-pages-browser"},"startTime":1767363449441,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3814,"timestamp":82154448,"id":1376,"parentId":1284,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/scheduler@0.27.0/node_modules/scheduler/cjs/scheduler.production.js","layer":"pages-dir-browser"},"startTime":1767363449443,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6872,"timestamp":82152586,"id":1372,"parentId":1271,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-loader.js","layer":"app-pages-browser"},"startTime":1767363449441,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7039,"timestamp":82152844,"id":1374,"parentId":1291,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/createLucideIcon.js","layer":"app-pages-browser"},"startTime":1767363449441,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":12503,"timestamp":82152915,"id":1375,"parentId":1290,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unstable-rethrow.browser.js","layer":"app-pages-browser"},"startTime":1767363449442,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2222,"timestamp":82169173,"id":1377,"parentId":1321,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"app-pages-browser"},"startTime":1767363449458,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3290,"timestamp":82172600,"id":1378,"parentId":1344,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle.js","layer":"app-pages-browser"},"startTime":1767363449461,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7402,"timestamp":82172754,"id":1379,"parentId":1349,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-blur-svg.js","layer":"app-pages-browser"},"startTime":1767363449461,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":785,"timestamp":82183303,"id":1382,"parentId":1195,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/polyfills/process.js","layer":"pages-dir-browser"},"startTime":1767363449472,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1810,"timestamp":82182826,"id":1380,"parentId":1285,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/index.js","layer":"app-pages-browser"},"startTime":1767363449471,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1861,"timestamp":82183123,"id":1381,"parentId":1113,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/polyfills/process.js","layer":"app-pages-browser"},"startTime":1767363449472,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":905,"timestamp":82185657,"id":1383,"parentId":1285,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/index.js","layer":"app-pages-browser"},"startTime":1767363449474,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6221,"timestamp":82206133,"id":1384,"parentId":1374,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/Icon.js","layer":"app-pages-browser"},"startTime":1767363449495,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3074,"timestamp":82214808,"id":1385,"parentId":1374,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/shared/src/utils.js","layer":"app-pages-browser"},"startTime":1767363449503,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":10272,"timestamp":82223440,"id":1387,"parentId":1340,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-checkbox@1.3.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2_bewiq6cjocmach7p37abfyy75a/node_modules/@radix-ui/react-checkbox/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449512,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":18726,"timestamp":82219033,"id":1386,"parentId":1339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-radio-group@1.3.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@1_cjtgf3xmcqtfujhoownb73bnbi/node_modules/@radix-ui/react-radio-group/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449508,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":2608,"timestamp":82239731,"id":1388,"parentId":1341,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-label@2.1.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2.7__ggc7d2jno3gcorzflrswkya7gm/node_modules/@radix-ui/react-label/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449528,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2643,"timestamp":82243405,"id":1390,"parentId":1380,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/lib/index.js","layer":"app-pages-browser"},"startTime":1767363449532,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2925,"timestamp":82243518,"id":1391,"parentId":1383,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/lib/index.js","layer":"app-pages-browser"},"startTime":1767363449532,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4983,"timestamp":82243280,"id":1389,"parentId":1384,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/defaultAttributes.js","layer":"app-pages-browser"},"startTime":1767363449532,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2175,"timestamp":82268095,"id":1392,"parentId":1382,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/process/browser.js","layer":"pages-dir-browser"},"startTime":1767363449557,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5139,"timestamp":82268186,"id":1393,"parentId":1381,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/process/browser.js","layer":"app-pages-browser"},"startTime":1767363449557,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":3799867,"timestamp":78475298,"id":954,"parentId":949,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1767363445764,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":3799802,"timestamp":78475378,"id":956,"parentId":949,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1767363445764,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":3799843,"timestamp":78475344,"id":955,"parentId":949,"tags":{"request":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/router.js"},"startTime":1767363445764,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":3799831,"timestamp":78475399,"id":957,"parentId":949,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fcomponents%2FDevErrorRecovery.tsx%22%2C%22ids%22%3A%5B%22DevErrorRecovery%22%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-sans%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistSans%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist_Mono%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-mono%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistMono%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767363445764,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":3799816,"timestamp":78475420,"id":958,"parentId":949,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767363445764,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":3799564,"timestamp":78475677,"id":960,"parentId":949,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767363445764,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":3800989,"timestamp":78474285,"id":950,"parentId":949,"tags":{"request":"./../../node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/next.js"},"startTime":1767363445763,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":3800169,"timestamp":78475110,"id":952,"parentId":949,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-error.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-segment.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fhttp-access-fallback%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fmetadata%2Fasync-metadata.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fframework%2Fboundary-components.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fmetadata%2Fgenerate%2Ficon-mark.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767363445764,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":3800249,"timestamp":78475048,"id":951,"parentId":949,"tags":{"request":"./../../node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-next.js"},"startTime":1767363445764,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":749,"timestamp":82293368,"id":1394,"parentId":1390,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-to-jsx-runtime@2.3.6/node_modules/hast-util-to-jsx-runtime/index.js","layer":"app-pages-browser"},"startTime":1767363449582,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":481,"timestamp":82296819,"id":1395,"parentId":1390,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/html-url-attributes@3.0.1/node_modules/html-url-attributes/index.js","layer":"app-pages-browser"},"startTime":1767363449585,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":480,"timestamp":82298794,"id":1396,"parentId":1390,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/index.js","layer":"app-pages-browser"},"startTime":1767363449587,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":584,"timestamp":82299628,"id":1397,"parentId":1390,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/index.js","layer":"app-pages-browser"},"startTime":1767363449588,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":864,"timestamp":82302489,"id":1398,"parentId":1390,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.js","layer":"app-pages-browser"},"startTime":1767363449591,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":928,"timestamp":82302704,"id":1399,"parentId":1390,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit@5.0.0/node_modules/unist-util-visit/index.js","layer":"app-pages-browser"},"startTime":1767363449591,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":387,"timestamp":82306030,"id":1400,"parentId":1390,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.js","layer":"app-pages-browser"},"startTime":1767363449595,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":462,"timestamp":82308465,"id":1401,"parentId":1391,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/index.js","layer":"app-pages-browser"},"startTime":1767363449597,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":818,"timestamp":82309273,"id":1402,"parentId":1391,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm@3.0.0/node_modules/micromark-extension-gfm/index.js","layer":"app-pages-browser"},"startTime":1767363449598,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":697,"timestamp":82312184,"id":1403,"parentId":1390,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/devlop@1.1.0/node_modules/devlop/lib/default.js","layer":"app-pages-browser"},"startTime":1767363449601,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1238,"timestamp":82317656,"id":1404,"parentId":1387,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-compose-refs@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-compose-refs/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449606,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":3872,"timestamp":82327579,"id":1405,"parentId":1387,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-context@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-context/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449616,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1912,"timestamp":82339443,"id":1406,"parentId":1387,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-controllable-state@1.2.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-controllable-state/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449628,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1120,"timestamp":82346780,"id":1407,"parentId":1387,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-size@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-size/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449635,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":5510,"timestamp":82357547,"id":1408,"parentId":1387,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-presence@1.1.5_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2_g7nvzcflnhogkdp32witcuayfy/node_modules/@radix-ui/react-presence/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449646,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":4029,"timestamp":82365599,"id":1409,"parentId":1387,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+primitive@1.1.3/node_modules/@radix-ui/primitive/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449654,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1084,"timestamp":82374774,"id":1410,"parentId":1387,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-previous@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-previous/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449663,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1494,"timestamp":82382308,"id":1411,"parentId":1387,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-primitive@2.1.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._vrijsupjqixawruberrfb56pbm/node_modules/@radix-ui/react-primitive/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449671,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1179,"timestamp":82389704,"id":1412,"parentId":1386,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-direction@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-direction/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449678,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":15860,"timestamp":82397277,"id":1413,"parentId":1386,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-roving-focus@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react_olorlwzqifzjwjsjwfg7df3ffe/node_modules/@radix-ui/react-roving-focus/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449686,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":2085,"timestamp":82416386,"id":1414,"parentId":1388,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-primitive@2.1.4_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._4sfldbbhvd3xapj4euqmtg5wga/node_modules/@radix-ui/react-primitive/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449705,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":8724,"timestamp":82416655,"id":1415,"parentId":1394,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-to-jsx-runtime@2.3.6/node_modules/hast-util-to-jsx-runtime/lib/index.js","layer":"app-pages-browser"},"startTime":1767363449705,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1559,"timestamp":82427409,"id":1416,"parentId":1395,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/html-url-attributes@3.0.1/node_modules/html-url-attributes/lib/index.js","layer":"app-pages-browser"},"startTime":1767363449716,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1394,"timestamp":82433754,"id":1417,"parentId":1396,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/lib/index.js","layer":"app-pages-browser"},"startTime":1767363449722,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1704,"timestamp":82434037,"id":1418,"parentId":1397,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/lib/index.js","layer":"app-pages-browser"},"startTime":1767363449723,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1789,"timestamp":82440509,"id":1419,"parentId":1399,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit@5.0.0/node_modules/unist-util-visit/lib/index.js","layer":"app-pages-browser"},"startTime":1767363449729,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6321,"timestamp":82443830,"id":1420,"parentId":1398,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/index.js","layer":"app-pages-browser"},"startTime":1767363449732,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":10004,"timestamp":82444027,"id":1421,"parentId":1400,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/index.js","layer":"app-pages-browser"},"startTime":1767363449733,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1195,"timestamp":82462099,"id":1422,"parentId":1401,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/lib/index.js","layer":"app-pages-browser"},"startTime":1767363449751,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":831,"timestamp":82474784,"id":1423,"parentId":1397,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/index.js","layer":"app-pages-browser"},"startTime":1767363449763,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1877,"timestamp":82481909,"id":1424,"parentId":1402,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-combine-extensions@2.0.1/node_modules/micromark-util-combine-extensions/index.js","layer":"app-pages-browser"},"startTime":1767363449771,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":844,"timestamp":82494874,"id":1425,"parentId":1402,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/index.js","layer":"app-pages-browser"},"startTime":1767363449783,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3847,"timestamp":82502589,"id":1426,"parentId":1402,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/index.js","layer":"app-pages-browser"},"startTime":1767363449791,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":765,"timestamp":82514747,"id":1427,"parentId":1402,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/index.js","layer":"app-pages-browser"},"startTime":1767363449803,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":877,"timestamp":82518637,"id":1428,"parentId":1402,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/index.js","layer":"app-pages-browser"},"startTime":1767363449807,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":807,"timestamp":82535262,"id":1429,"parentId":1402,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-tagfilter@2.0.0/node_modules/micromark-extension-gfm-tagfilter/index.js","layer":"app-pages-browser"},"startTime":1767363449824,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":827,"timestamp":82545053,"id":1430,"parentId":1402,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/index.js","layer":"app-pages-browser"},"startTime":1767363449834,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1376,"timestamp":82554887,"id":1431,"parentId":1406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-effect-event@0.0.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-effect-event/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449844,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":923,"timestamp":82560885,"id":1432,"parentId":1406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-layout-effect@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-layout-effect/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449850,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1365,"timestamp":82566452,"id":1433,"parentId":1420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.js","layer":"app-pages-browser"},"startTime":1767363449855,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3901,"timestamp":82566680,"id":1434,"parentId":1421,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minpath.browser.js","layer":"app-pages-browser"},"startTime":1767363449855,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1310,"timestamp":82571173,"id":1435,"parentId":1421,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minproc.browser.js","layer":"app-pages-browser"},"startTime":1767363449860,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2372,"timestamp":82571435,"id":1436,"parentId":1421,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.browser.js","layer":"app-pages-browser"},"startTime":1767363449860,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2811,"timestamp":82571612,"id":1437,"parentId":1423,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/index.js","layer":"app-pages-browser"},"startTime":1767363449860,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2600,"timestamp":82580975,"id":1438,"parentId":1423,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/footer.js","layer":"app-pages-browser"},"startTime":1767363449870,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3052,"timestamp":82581273,"id":1439,"parentId":1423,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/index.js","layer":"app-pages-browser"},"startTime":1767363449870,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":2616,"timestamp":82594482,"id":1440,"parentId":1411,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-slot@1.2.3_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449883,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4191,"timestamp":82597803,"id":1441,"parentId":1425,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767363449886,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4516,"timestamp":82598057,"id":1442,"parentId":1425,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/lib/html.js","layer":"app-pages-browser"},"startTime":1767363449887,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":772,"timestamp":82605543,"id":1443,"parentId":1415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/comma-separated-tokens@2.0.3/node_modules/comma-separated-tokens/index.js","layer":"app-pages-browser"},"startTime":1767363449894,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":767,"timestamp":82613621,"id":1444,"parentId":1415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/estree-util-is-identifier-name@3.0.0/node_modules/estree-util-is-identifier-name/index.js","layer":"app-pages-browser"},"startTime":1767363449902,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":494,"timestamp":82616973,"id":1445,"parentId":1415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-whitespace@3.0.0/node_modules/hast-util-whitespace/index.js","layer":"app-pages-browser"},"startTime":1767363449906,"traceId":"f0add02174dc0eb2"}]
15
- [{"name":"build-module-js","duration":750,"timestamp":82618468,"id":1446,"parentId":1415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/index.js","layer":"app-pages-browser"},"startTime":1767363449907,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":638,"timestamp":82622739,"id":1447,"parentId":1415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/space-separated-tokens@2.0.2/node_modules/space-separated-tokens/index.js","layer":"app-pages-browser"},"startTime":1767363449911,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":400,"timestamp":82625431,"id":1448,"parentId":1415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-position@5.0.0/node_modules/unist-util-position/index.js","layer":"app-pages-browser"},"startTime":1767363449914,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":398,"timestamp":82627767,"id":1449,"parentId":1415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/index.js","layer":"app-pages-browser"},"startTime":1767363449916,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3178,"timestamp":82631750,"id":1450,"parentId":1426,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767363449920,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4244,"timestamp":82631986,"id":1451,"parentId":1426,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/html.js","layer":"app-pages-browser"},"startTime":1767363449921,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":883,"timestamp":82645948,"id":1452,"parentId":1415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-js@1.1.21/node_modules/style-to-js/cjs/index.js","layer":"app-pages-browser"},"startTime":1767363449935,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":404,"timestamp":82648282,"id":1453,"parentId":1417,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/index.js","layer":"app-pages-browser"},"startTime":1767363449937,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1208,"timestamp":82649924,"id":1454,"parentId":1427,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/html.js","layer":"app-pages-browser"},"startTime":1767363449939,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3206,"timestamp":82650077,"id":1455,"parentId":1427,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767363449939,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":701,"timestamp":82656451,"id":1456,"parentId":1419,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/index.js","layer":"app-pages-browser"},"startTime":1767363449945,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":626,"timestamp":82658914,"id":1457,"parentId":1420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/bail@2.0.2/node_modules/bail/index.js","layer":"app-pages-browser"},"startTime":1767363449948,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1200,"timestamp":82664954,"id":1458,"parentId":1420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/is-plain-obj@4.1.0/node_modules/is-plain-obj/index.js","layer":"app-pages-browser"},"startTime":1767363449954,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":720,"timestamp":82668476,"id":1459,"parentId":1420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.js","layer":"app-pages-browser"},"startTime":1767363449957,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":788,"timestamp":82669979,"id":1460,"parentId":1428,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/lib/html.js","layer":"app-pages-browser"},"startTime":1767363449959,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1253,"timestamp":82671340,"id":1461,"parentId":1428,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767363449960,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1600,"timestamp":82676486,"id":1462,"parentId":1420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/extend@3.0.2/node_modules/extend/index.js","layer":"app-pages-browser"},"startTime":1767363449965,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":654,"timestamp":82679659,"id":1463,"parentId":1422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-autolink-literal@2.0.1/node_modules/mdast-util-gfm-autolink-literal/index.js","layer":"app-pages-browser"},"startTime":1767363449968,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":470,"timestamp":82682671,"id":1464,"parentId":1422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/index.js","layer":"app-pages-browser"},"startTime":1767363449971,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":465,"timestamp":82683758,"id":1465,"parentId":1422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-strikethrough@2.0.0/node_modules/mdast-util-gfm-strikethrough/index.js","layer":"app-pages-browser"},"startTime":1767363449972,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":378,"timestamp":82686034,"id":1466,"parentId":1422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/index.js","layer":"app-pages-browser"},"startTime":1767363449975,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":362,"timestamp":82688566,"id":1467,"parentId":1422,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-task-list-item@2.0.0/node_modules/mdast-util-gfm-task-list-item/index.js","layer":"app-pages-browser"},"startTime":1767363449977,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":1034,"timestamp":82693907,"id":1469,"parentId":1413,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-id@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-id/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449983,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":572,"timestamp":82696294,"id":1470,"parentId":1413,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-callback-ref@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449985,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":10829,"timestamp":82690744,"id":1468,"parentId":1413,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-collection@1.1.7_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19_3vqfgunzp4tkkuqnqgefg7qsai/node_modules/@radix-ui/react-collection/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363449979,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":998,"timestamp":82709846,"id":1471,"parentId":1429,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-tagfilter@2.0.0/node_modules/micromark-extension-gfm-tagfilter/lib/index.js","layer":"app-pages-browser"},"startTime":1767363449998,"traceId":"f0add02174dc0eb2"},{"name":"build-module-mjs","duration":2128,"timestamp":82715270,"id":1472,"parentId":1414,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-slot@1.2.4_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767363450004,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2232,"timestamp":82715463,"id":1473,"parentId":1430,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/html.js","layer":"app-pages-browser"},"startTime":1767363450004,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3628,"timestamp":82715575,"id":1474,"parentId":1430,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767363450004,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1480,"timestamp":82727056,"id":1475,"parentId":1424,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-chunked@2.0.1/node_modules/micromark-util-chunked/index.js","layer":"app-pages-browser"},"startTime":1767363450016,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2971,"timestamp":82730390,"id":1476,"parentId":1436,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.shared.js","layer":"app-pages-browser"},"startTime":1767363450019,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6307,"timestamp":82730649,"id":1477,"parentId":1437,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/state.js","layer":"app-pages-browser"},"startTime":1767363450019,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6469,"timestamp":82730856,"id":1478,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/break.js","layer":"app-pages-browser"},"startTime":1767363450019,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6553,"timestamp":82731075,"id":1479,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js","layer":"app-pages-browser"},"startTime":1767363450020,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2753,"timestamp":82738762,"id":1480,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/delete.js","layer":"app-pages-browser"},"startTime":1767363450027,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3061,"timestamp":82739038,"id":1481,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/code.js","layer":"app-pages-browser"},"startTime":1767363450028,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3331,"timestamp":82739228,"id":1482,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js","layer":"app-pages-browser"},"startTime":1767363450028,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3404,"timestamp":82739390,"id":1483,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/heading.js","layer":"app-pages-browser"},"startTime":1767363450028,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3421,"timestamp":82739549,"id":1484,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js","layer":"app-pages-browser"},"startTime":1767363450028,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":733,"timestamp":82747328,"id":1485,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/html.js","layer":"app-pages-browser"},"startTime":1767363450036,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1184,"timestamp":82749625,"id":1486,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js","layer":"app-pages-browser"},"startTime":1767363450038,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1332,"timestamp":82749770,"id":1487,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js","layer":"app-pages-browser"},"startTime":1767363450038,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1590,"timestamp":82749876,"id":1488,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/image.js","layer":"app-pages-browser"},"startTime":1767363450038,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1779,"timestamp":82749980,"id":1489,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js","layer":"app-pages-browser"},"startTime":1767363450039,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1263,"timestamp":82752614,"id":1490,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/link.js","layer":"app-pages-browser"},"startTime":1767363450041,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1337,"timestamp":82752749,"id":1491,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js","layer":"app-pages-browser"},"startTime":1767363450041,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1410,"timestamp":82752851,"id":1492,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/root.js","layer":"app-pages-browser"},"startTime":1767363450041,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1626,"timestamp":82752952,"id":1493,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/list.js","layer":"app-pages-browser"},"startTime":1767363450042,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2211,"timestamp":82753084,"id":1494,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/list-item.js","layer":"app-pages-browser"},"startTime":1767363450042,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":741,"timestamp":82757430,"id":1495,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/strong.js","layer":"app-pages-browser"},"startTime":1767363450046,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1835,"timestamp":82758908,"id":1496,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table.js","layer":"app-pages-browser"},"startTime":1767363450048,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3431,"timestamp":82759132,"id":1497,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table-row.js","layer":"app-pages-browser"},"startTime":1767363450048,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3600,"timestamp":82759305,"id":1498,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/text.js","layer":"app-pages-browser"},"startTime":1767363450048,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3738,"timestamp":82759473,"id":1499,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js","layer":"app-pages-browser"},"startTime":1767363450048,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":697,"timestamp":82765441,"id":1500,"parentId":1439,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js","layer":"app-pages-browser"},"startTime":1767363450054,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4887,"timestamp":82774457,"id":1501,"parentId":1444,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/estree-util-is-identifier-name@3.0.0/node_modules/estree-util-is-identifier-name/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450063,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1299,"timestamp":82784954,"id":1502,"parentId":1438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-sanitize-uri@2.0.1/node_modules/micromark-util-sanitize-uri/index.js","layer":"app-pages-browser"},"startTime":1767363450074,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":863,"timestamp":82787427,"id":1503,"parentId":1445,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-whitespace@3.0.0/node_modules/hast-util-whitespace/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450076,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1457,"timestamp":82791274,"id":1504,"parentId":1446,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/aria.js","layer":"app-pages-browser"},"startTime":1767363450080,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2214,"timestamp":82791474,"id":1505,"parentId":1446,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/html.js","layer":"app-pages-browser"},"startTime":1767363450080,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3396,"timestamp":82791578,"id":1506,"parentId":1446,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/svg.js","layer":"app-pages-browser"},"startTime":1767363450080,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3618,"timestamp":82791682,"id":1507,"parentId":1446,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xlink.js","layer":"app-pages-browser"},"startTime":1767363450080,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2558,"timestamp":82802713,"id":1508,"parentId":1446,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xml.js","layer":"app-pages-browser"},"startTime":1767363450091,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2597,"timestamp":82803000,"id":1509,"parentId":1446,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/hast-to-react.js","layer":"app-pages-browser"},"startTime":1767363450092,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2612,"timestamp":82803306,"id":1510,"parentId":1446,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xmlns.js","layer":"app-pages-browser"},"startTime":1767363450092,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3359,"timestamp":82803515,"id":1511,"parentId":1446,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/find.js","layer":"app-pages-browser"},"startTime":1767363450092,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3397,"timestamp":82803717,"id":1512,"parentId":1446,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/normalize.js","layer":"app-pages-browser"},"startTime":1767363450092,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":981,"timestamp":82811973,"id":1513,"parentId":1446,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/merge.js","layer":"app-pages-browser"},"startTime":1767363450101,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1365,"timestamp":82819705,"id":1514,"parentId":1438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/index.js","layer":"app-pages-browser"},"startTime":1767363450108,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1424,"timestamp":82823086,"id":1515,"parentId":1441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-character@2.1.1/node_modules/micromark-util-character/index.js","layer":"app-pages-browser"},"startTime":1767363450112,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":944,"timestamp":82826408,"id":1516,"parentId":1448,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-position@5.0.0/node_modules/unist-util-position/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450115,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1593,"timestamp":82826562,"id":1517,"parentId":1449,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450115,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1188,"timestamp":82828901,"id":1518,"parentId":1455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/edit-map.js","layer":"app-pages-browser"},"startTime":1767363450118,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1491,"timestamp":82829066,"id":1519,"parentId":1455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/infer.js","layer":"app-pages-browser"},"startTime":1767363450118,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":853,"timestamp":82830911,"id":1520,"parentId":1452,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-js@1.1.21/node_modules/style-to-js/cjs/utilities.js","layer":"app-pages-browser"},"startTime":1767363450120,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4128,"timestamp":82834166,"id":1521,"parentId":1453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450123,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":966,"timestamp":82848234,"id":1522,"parentId":1450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/index.js","layer":"app-pages-browser"},"startTime":1767363450137,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1193,"timestamp":82850888,"id":1523,"parentId":1450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-space@2.0.1/node_modules/micromark-factory-space/index.js","layer":"app-pages-browser"},"startTime":1767363450140,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1758,"timestamp":82860056,"id":1524,"parentId":1450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-normalize-identifier@2.0.1/node_modules/micromark-util-normalize-identifier/index.js","layer":"app-pages-browser"},"startTime":1767363450149,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3190,"timestamp":82860349,"id":1525,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450149,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4102,"timestamp":82860545,"id":1526,"parentId":1459,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450149,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6657,"timestamp":82871501,"id":1527,"parentId":1463,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-autolink-literal@2.0.1/node_modules/mdast-util-gfm-autolink-literal/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450160,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1453,"timestamp":82886201,"id":1528,"parentId":1452,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-object@1.0.14/node_modules/style-to-object/cjs/index.js","layer":"app-pages-browser"},"startTime":1767363450175,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2135,"timestamp":82890250,"id":1529,"parentId":1464,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450179,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1466,"timestamp":82893599,"id":1530,"parentId":1465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-strikethrough@2.0.0/node_modules/mdast-util-gfm-strikethrough/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450182,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1927,"timestamp":82901781,"id":1531,"parentId":1486,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/revert.js","layer":"app-pages-browser"},"startTime":1767363450190,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3367,"timestamp":82902190,"id":1532,"parentId":1466,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450191,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4473,"timestamp":82902389,"id":1533,"parentId":1467,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-task-list-item@2.0.0/node_modules/mdast-util-gfm-task-list-item/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450191,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":995,"timestamp":82914061,"id":1534,"parentId":1468,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_init.js","layer":"app-pages-browser"},"startTime":1767363450203,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1119,"timestamp":82919518,"id":1535,"parentId":1468,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_get.js","layer":"app-pages-browser"},"startTime":1767363450208,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":978,"timestamp":82921559,"id":1536,"parentId":1468,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_set.js","layer":"app-pages-browser"},"startTime":1767363450210,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":994,"timestamp":82934151,"id":1537,"parentId":1474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-classify-character@2.0.1/node_modules/micromark-util-classify-character/index.js","layer":"app-pages-browser"},"startTime":1767363450223,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1986,"timestamp":82939269,"id":1538,"parentId":1504,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/create.js","layer":"app-pages-browser"},"startTime":1767363450228,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2039,"timestamp":82939523,"id":1539,"parentId":1505,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-insensitive-transform.js","layer":"app-pages-browser"},"startTime":1767363450228,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2297,"timestamp":82939732,"id":1540,"parentId":1474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-resolve-all@2.0.1/node_modules/micromark-util-resolve-all/index.js","layer":"app-pages-browser"},"startTime":1767363450228,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1817,"timestamp":82944124,"id":1541,"parentId":1506,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-sensitive-transform.js","layer":"app-pages-browser"},"startTime":1767363450233,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1923,"timestamp":82947785,"id":1542,"parentId":1511,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/defined-info.js","layer":"app-pages-browser"},"startTime":1767363450236,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2250,"timestamp":82948057,"id":1543,"parentId":1504,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/types.js","layer":"app-pages-browser"},"startTime":1767363450237,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2466,"timestamp":82948255,"id":1544,"parentId":1511,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/info.js","layer":"app-pages-browser"},"startTime":1767363450237,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":927,"timestamp":82954495,"id":1545,"parentId":1513,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/schema.js","layer":"app-pages-browser"},"startTime":1767363450243,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1301,"timestamp":82957519,"id":1546,"parentId":1498,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trim-lines@3.0.1/node_modules/trim-lines/index.js","layer":"app-pages-browser"},"startTime":1767363450246,"traceId":"f0add02174dc0eb2"}]
16
- [{"name":"build-module-js","duration":1925,"timestamp":82959631,"id":1547,"parentId":1514,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/deserialize.js","layer":"app-pages-browser"},"startTime":1767363450248,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3552,"timestamp":82959859,"id":1548,"parentId":1514,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/serialize.js","layer":"app-pages-browser"},"startTime":1767363450248,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1132,"timestamp":82967423,"id":1549,"parentId":1525,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/lib/color.js","layer":"app-pages-browser"},"startTime":1767363450256,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1272,"timestamp":82967685,"id":1550,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-encode@2.0.1/node_modules/micromark-util-encode/index.js","layer":"app-pages-browser"},"startTime":1767363450256,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2714,"timestamp":82971157,"id":1551,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/attention.js","layer":"app-pages-browser"},"startTime":1767363450260,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2999,"timestamp":82975585,"id":1552,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/autolink.js","layer":"app-pages-browser"},"startTime":1767363450264,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3503,"timestamp":82975860,"id":1553,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/block-quote.js","layer":"app-pages-browser"},"startTime":1767363450264,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3705,"timestamp":82976096,"id":1554,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/blank-line.js","layer":"app-pages-browser"},"startTime":1767363450265,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2449,"timestamp":82983746,"id":1555,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-escape.js","layer":"app-pages-browser"},"startTime":1767363450272,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3019,"timestamp":82984046,"id":1556,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-reference.js","layer":"app-pages-browser"},"startTime":1767363450273,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4667,"timestamp":82984250,"id":1557,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-fenced.js","layer":"app-pages-browser"},"startTime":1767363450273,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5412,"timestamp":82984451,"id":1558,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-indented.js","layer":"app-pages-browser"},"startTime":1767363450273,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2056,"timestamp":82991507,"id":1559,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-text.js","layer":"app-pages-browser"},"startTime":1767363450280,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1704,"timestamp":82994990,"id":1560,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/content.js","layer":"app-pages-browser"},"startTime":1767363450284,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2585,"timestamp":82995231,"id":1561,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/definition.js","layer":"app-pages-browser"},"startTime":1767363450284,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2188,"timestamp":83000845,"id":1562,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/hard-break-escape.js","layer":"app-pages-browser"},"startTime":1767363450289,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3107,"timestamp":83001117,"id":1563,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/heading-atx.js","layer":"app-pages-browser"},"startTime":1767363450290,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6429,"timestamp":83001314,"id":1564,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-flow.js","layer":"app-pages-browser"},"startTime":1767363450290,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4362,"timestamp":83012426,"id":1565,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-text.js","layer":"app-pages-browser"},"startTime":1767363450301,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6523,"timestamp":83012712,"id":1566,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-end.js","layer":"app-pages-browser"},"startTime":1767363450301,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9546,"timestamp":83012873,"id":1567,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-image.js","layer":"app-pages-browser"},"startTime":1767363450301,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":9903,"timestamp":83013049,"id":1568,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-link.js","layer":"app-pages-browser"},"startTime":1767363450302,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1389,"timestamp":83025270,"id":1569,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/line-ending.js","layer":"app-pages-browser"},"startTime":1767363450314,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1441,"timestamp":83031113,"id":1570,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/setext-underline.js","layer":"app-pages-browser"},"startTime":1767363450320,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2192,"timestamp":83031306,"id":1571,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/list.js","layer":"app-pages-browser"},"startTime":1767363450320,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2426,"timestamp":83031411,"id":1572,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/thematic-break.js","layer":"app-pages-browser"},"startTime":1767363450320,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":719,"timestamp":83039273,"id":1573,"parentId":1517,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/index.js","layer":"app-pages-browser"},"startTime":1767363450328,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":777,"timestamp":83047351,"id":1574,"parentId":1521,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-decode-numeric-character-reference@2.0.2/node_modules/micromark-util-decode-numeric-character-reference/index.js","layer":"app-pages-browser"},"startTime":1767363450336,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":452,"timestamp":83050398,"id":1575,"parentId":1521,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-string@4.0.0/node_modules/mdast-util-to-string/index.js","layer":"app-pages-browser"},"startTime":1767363450339,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":894,"timestamp":83055040,"id":1576,"parentId":1521,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-decode-string@2.0.1/node_modules/micromark-util-decode-string/index.js","layer":"app-pages-browser"},"startTime":1767363450344,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":697,"timestamp":83058661,"id":1577,"parentId":1521,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/index.js","layer":"app-pages-browser"},"startTime":1767363450347,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":884,"timestamp":83064491,"id":1578,"parentId":1521,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/decode-named-character-reference@1.2.0/node_modules/decode-named-character-reference/index.dom.js","layer":"app-pages-browser"},"startTime":1767363450353,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":964,"timestamp":83065741,"id":1579,"parentId":1534,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_check_private_redeclaration.js","layer":"app-pages-browser"},"startTime":1767363450354,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":965,"timestamp":83065900,"id":1580,"parentId":1535,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_apply_descriptor_get.js","layer":"app-pages-browser"},"startTime":1767363450355,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1020,"timestamp":83066035,"id":1581,"parentId":1535,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_extract_field_descriptor.js","layer":"app-pages-browser"},"startTime":1767363450355,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1079,"timestamp":83066147,"id":1582,"parentId":1536,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_apply_descriptor_set.js","layer":"app-pages-browser"},"startTime":1767363450355,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":394,"timestamp":83068948,"id":1583,"parentId":1525,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-is@6.0.1/node_modules/unist-util-is/index.js","layer":"app-pages-browser"},"startTime":1767363450358,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":487,"timestamp":83071281,"id":1584,"parentId":1527,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/ccount@2.0.1/node_modules/ccount/index.js","layer":"app-pages-browser"},"startTime":1767363450360,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":400,"timestamp":83073812,"id":1585,"parentId":1527,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-find-and-replace@3.0.2/node_modules/mdast-util-find-and-replace/index.js","layer":"app-pages-browser"},"startTime":1767363450362,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2653,"timestamp":83084727,"id":1586,"parentId":1532,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/markdown-table@3.0.4/node_modules/markdown-table/index.js","layer":"app-pages-browser"},"startTime":1767363450373,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":766,"timestamp":83089113,"id":1587,"parentId":1532,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/index.js","layer":"app-pages-browser"},"startTime":1767363450378,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":986,"timestamp":83090348,"id":1588,"parentId":1547,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/types.js","layer":"app-pages-browser"},"startTime":1767363450379,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1781,"timestamp":83094360,"id":1589,"parentId":1528,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/inline-style-parser@0.2.7/node_modules/inline-style-parser/cjs/index.js","layer":"app-pages-browser"},"startTime":1767363450383,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":615,"timestamp":83098959,"id":1590,"parentId":1573,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450388,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1112,"timestamp":83106235,"id":1591,"parentId":1561,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-destination@2.0.1/node_modules/micromark-factory-destination/index.js","layer":"app-pages-browser"},"startTime":1767363450395,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":783,"timestamp":83108284,"id":1592,"parentId":1561,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-label@2.0.1/node_modules/micromark-factory-label/index.js","layer":"app-pages-browser"},"startTime":1767363450397,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":645,"timestamp":83113043,"id":1593,"parentId":1561,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-whitespace@2.0.1/node_modules/micromark-factory-whitespace/index.js","layer":"app-pages-browser"},"startTime":1767363450402,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1301,"timestamp":83115037,"id":1594,"parentId":1560,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/index.js","layer":"app-pages-browser"},"startTime":1767363450404,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":762,"timestamp":83117698,"id":1595,"parentId":1561,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-title@2.0.1/node_modules/micromark-factory-title/index.js","layer":"app-pages-browser"},"startTime":1767363450406,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":531,"timestamp":83119530,"id":1596,"parentId":1564,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-html-tag-name@2.0.1/node_modules/micromark-util-html-tag-name/index.js","layer":"app-pages-browser"},"startTime":1767363450408,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1127,"timestamp":83121853,"id":1597,"parentId":1575,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-string@4.0.0/node_modules/mdast-util-to-string/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450410,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3465,"timestamp":83122016,"id":1598,"parentId":1577,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/compile.js","layer":"app-pages-browser"},"startTime":1767363450411,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3834,"timestamp":83122128,"id":1599,"parentId":1577,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/parse.js","layer":"app-pages-browser"},"startTime":1767363450411,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1673,"timestamp":83127421,"id":1600,"parentId":1577,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/preprocess.js","layer":"app-pages-browser"},"startTime":1767363450416,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1729,"timestamp":83127583,"id":1601,"parentId":1577,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/postprocess.js","layer":"app-pages-browser"},"startTime":1767363450416,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1231,"timestamp":83132977,"id":1602,"parentId":1583,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-is@6.0.1/node_modules/unist-util-is/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450422,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1464,"timestamp":83138446,"id":1603,"parentId":1587,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450427,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2517,"timestamp":83138651,"id":1604,"parentId":1585,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-find-and-replace@3.0.2/node_modules/mdast-util-find-and-replace/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450427,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1290,"timestamp":83147587,"id":1605,"parentId":1587,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/index.js","layer":"app-pages-browser"},"startTime":1767363450436,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3448,"timestamp":83175048,"id":1606,"parentId":1599,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/constructs.js","layer":"app-pages-browser"},"startTime":1767363450464,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5762,"timestamp":83175409,"id":1607,"parentId":1599,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/create-tokenizer.js","layer":"app-pages-browser"},"startTime":1767363450464,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6764,"timestamp":83175598,"id":1608,"parentId":1594,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/lib/splice-buffer.js","layer":"app-pages-browser"},"startTime":1767363450464,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1598,"timestamp":83187267,"id":1609,"parentId":1599,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/content.js","layer":"app-pages-browser"},"startTime":1767363450476,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3124,"timestamp":83187528,"id":1610,"parentId":1599,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/document.js","layer":"app-pages-browser"},"startTime":1767363450476,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1678,"timestamp":83191917,"id":1611,"parentId":1599,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/flow.js","layer":"app-pages-browser"},"startTime":1767363450481,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2714,"timestamp":83192187,"id":1612,"parentId":1599,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/text.js","layer":"app-pages-browser"},"startTime":1767363450481,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1859,"timestamp":83199761,"id":1613,"parentId":1603,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/configure.js","layer":"app-pages-browser"},"startTime":1767363450488,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2107,"timestamp":83200070,"id":1614,"parentId":1603,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/join.js","layer":"app-pages-browser"},"startTime":1767363450489,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2475,"timestamp":83200262,"id":1615,"parentId":1603,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/unsafe.js","layer":"app-pages-browser"},"startTime":1767363450489,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1288,"timestamp":83203504,"id":1616,"parentId":1603,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/association.js","layer":"app-pages-browser"},"startTime":1767363450492,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1480,"timestamp":83203735,"id":1617,"parentId":1603,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/compile-pattern.js","layer":"app-pages-browser"},"startTime":1767363450492,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1405,"timestamp":83210696,"id":1618,"parentId":1603,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/container-phrasing.js","layer":"app-pages-browser"},"startTime":1767363450499,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1610,"timestamp":83210899,"id":1619,"parentId":1603,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/container-flow.js","layer":"app-pages-browser"},"startTime":1767363450500,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2221,"timestamp":83223367,"id":1620,"parentId":1603,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/indent-lines.js","layer":"app-pages-browser"},"startTime":1767363450512,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3247,"timestamp":83223671,"id":1621,"parentId":1603,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/safe.js","layer":"app-pages-browser"},"startTime":1767363450512,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3528,"timestamp":83223862,"id":1622,"parentId":1603,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/track.js","layer":"app-pages-browser"},"startTime":1767363450512,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2366,"timestamp":83228919,"id":1623,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js","layer":"app-pages-browser"},"startTime":1767363450518,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2543,"timestamp":83229248,"id":1624,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/break.js","layer":"app-pages-browser"},"startTime":1767363450518,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3192,"timestamp":83229446,"id":1625,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/code.js","layer":"app-pages-browser"},"startTime":1767363450518,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3719,"timestamp":83229632,"id":1626,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/definition.js","layer":"app-pages-browser"},"startTime":1767363450518,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4219,"timestamp":83229807,"id":1627,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js","layer":"app-pages-browser"},"startTime":1767363450518,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1759,"timestamp":83240148,"id":1628,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/heading.js","layer":"app-pages-browser"},"startTime":1767363450529,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1772,"timestamp":83240443,"id":1629,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/html.js","layer":"app-pages-browser"},"startTime":1767363450529,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3475,"timestamp":83254932,"id":1630,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image.js","layer":"app-pages-browser"},"startTime":1767363450544,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":3734,"timestamp":83255219,"id":1631,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js","layer":"app-pages-browser"},"startTime":1767363450544,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":4229,"timestamp":83255383,"id":1632,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js","layer":"app-pages-browser"},"startTime":1767363450544,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5492,"timestamp":83255544,"id":1633,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link.js","layer":"app-pages-browser"},"startTime":1767363450544,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":5814,"timestamp":83255713,"id":1634,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js","layer":"app-pages-browser"},"startTime":1767363450544,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6487,"timestamp":83255881,"id":1635,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list.js","layer":"app-pages-browser"},"startTime":1767363450544,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":6913,"timestamp":83256075,"id":1636,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list-item.js","layer":"app-pages-browser"},"startTime":1767363450545,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":7006,"timestamp":83256250,"id":1637,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js","layer":"app-pages-browser"},"startTime":1767363450545,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1251,"timestamp":83264983,"id":1638,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/root.js","layer":"app-pages-browser"},"startTime":1767363450554,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1466,"timestamp":83265187,"id":1639,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/strong.js","layer":"app-pages-browser"},"startTime":1767363450554,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":836,"timestamp":83267625,"id":1640,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/text.js","layer":"app-pages-browser"},"startTime":1767363450556,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":959,"timestamp":83267775,"id":1641,"parentId":1605,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js","layer":"app-pages-browser"},"startTime":1767363450556,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":901,"timestamp":83272322,"id":1642,"parentId":1614,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js","layer":"app-pages-browser"},"startTime":1767363450561,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1124,"timestamp":83272510,"id":1643,"parentId":1614,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js","layer":"app-pages-browser"},"startTime":1767363450561,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1006,"timestamp":83285629,"id":1644,"parentId":1618,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js","layer":"app-pages-browser"},"startTime":1767363450574,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1114,"timestamp":83285830,"id":1645,"parentId":1621,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js","layer":"app-pages-browser"},"startTime":1767363450574,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1216,"timestamp":83285941,"id":1646,"parentId":1625,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-fence.js","layer":"app-pages-browser"},"startTime":1767363450575,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1338,"timestamp":83287845,"id":1647,"parentId":1626,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-quote.js","layer":"app-pages-browser"},"startTime":1767363450576,"traceId":"f0add02174dc0eb2"}]
17
- [{"name":"build-module-js","duration":1506,"timestamp":83287997,"id":1648,"parentId":1627,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js","layer":"app-pages-browser"},"startTime":1767363450577,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":731,"timestamp":83290198,"id":1649,"parentId":1627,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-info.js","layer":"app-pages-browser"},"startTime":1767363450579,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1926,"timestamp":83295358,"id":1650,"parentId":1633,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js","layer":"app-pages-browser"},"startTime":1767363450584,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1945,"timestamp":83295614,"id":1651,"parentId":1635,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js","layer":"app-pages-browser"},"startTime":1767363450584,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":2090,"timestamp":83295788,"id":1652,"parentId":1635,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js","layer":"app-pages-browser"},"startTime":1767363450584,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1111,"timestamp":83298386,"id":1653,"parentId":1635,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js","layer":"app-pages-browser"},"startTime":1767363450587,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1130,"timestamp":83298549,"id":1654,"parentId":1635,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-rule.js","layer":"app-pages-browser"},"startTime":1767363450587,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":1195,"timestamp":83298659,"id":1655,"parentId":1636,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js","layer":"app-pages-browser"},"startTime":1767363450587,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":389,"timestamp":83300520,"id":1656,"parentId":1639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-strong.js","layer":"app-pages-browser"},"startTime":1767363450589,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":569,"timestamp":83301680,"id":1657,"parentId":1603,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zwitch@2.0.4/node_modules/zwitch/index.js","layer":"app-pages-browser"},"startTime":1767363450590,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":950,"timestamp":83303834,"id":1658,"parentId":1641,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js","layer":"app-pages-browser"},"startTime":1767363450592,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":785,"timestamp":83304288,"id":1659,"parentId":1604,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/escape-string-regexp@5.0.0/node_modules/escape-string-regexp/index.js","layer":"app-pages-browser"},"startTime":1767363450593,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":493,"timestamp":83305924,"id":1660,"parentId":1625,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/longest-streak@3.1.0/node_modules/longest-streak/index.js","layer":"app-pages-browser"},"startTime":1767363450595,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":373,"timestamp":83307625,"id":1661,"parentId":1638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-phrasing@4.1.0/node_modules/mdast-util-phrasing/index.js","layer":"app-pages-browser"},"startTime":1767363450596,"traceId":"f0add02174dc0eb2"},{"name":"build-module-js","duration":581,"timestamp":83309566,"id":1662,"parentId":1661,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-phrasing@4.1.0/node_modules/mdast-util-phrasing/lib/index.js","layer":"app-pages-browser"},"startTime":1767363450598,"traceId":"f0add02174dc0eb2"},{"name":"add-entry","duration":4836600,"timestamp":78475609,"id":959,"parentId":949,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767363445764,"traceId":"f0add02174dc0eb2"},{"name":"make","duration":4839016,"timestamp":78473462,"id":949,"parentId":948,"tags":{},"startTime":1767363445762,"traceId":"f0add02174dc0eb2"},{"name":"chunk-graph","duration":19793,"timestamp":83387237,"id":1664,"parentId":1663,"tags":{},"startTime":1767363450676,"traceId":"f0add02174dc0eb2"},{"name":"optimize-modules","duration":53,"timestamp":83407256,"id":1666,"parentId":1663,"tags":{},"startTime":1767363450696,"traceId":"f0add02174dc0eb2"},{"name":"optimize-chunks","duration":23583,"timestamp":83410289,"id":1668,"parentId":1663,"tags":{},"startTime":1767363450699,"traceId":"f0add02174dc0eb2"},{"name":"optimize-tree","duration":219,"timestamp":83434030,"id":1669,"parentId":1663,"tags":{},"startTime":1767363450723,"traceId":"f0add02174dc0eb2"},{"name":"optimize-chunk-modules","duration":31410,"timestamp":83434418,"id":1670,"parentId":1663,"tags":{},"startTime":1767363450723,"traceId":"f0add02174dc0eb2"},{"name":"optimize","duration":58783,"timestamp":83407158,"id":1665,"parentId":1663,"tags":{},"startTime":1767363450696,"traceId":"f0add02174dc0eb2"},{"name":"module-hash","duration":30888,"timestamp":83500754,"id":1671,"parentId":1663,"tags":{},"startTime":1767363450789,"traceId":"f0add02174dc0eb2"},{"name":"code-generation","duration":360004,"timestamp":83531732,"id":1672,"parentId":1663,"tags":{},"startTime":1767363450820,"traceId":"f0add02174dc0eb2"},{"name":"hash","duration":14950,"timestamp":83898144,"id":1673,"parentId":1663,"tags":{},"startTime":1767363451187,"traceId":"f0add02174dc0eb2"},{"name":"code-generation-jobs","duration":755,"timestamp":83913087,"id":1674,"parentId":1663,"tags":{},"startTime":1767363451202,"traceId":"f0add02174dc0eb2"},{"name":"module-assets","duration":1191,"timestamp":83913762,"id":1675,"parentId":1663,"tags":{},"startTime":1767363451202,"traceId":"f0add02174dc0eb2"},{"name":"create-chunk-assets","duration":29088,"timestamp":83914979,"id":1676,"parentId":1663,"tags":{},"startTime":1767363451204,"traceId":"f0add02174dc0eb2"},{"name":"NextJsBuildManifest-generateClientManifest","duration":2027,"timestamp":83956519,"id":1678,"parentId":948,"tags":{},"startTime":1767363451245,"traceId":"f0add02174dc0eb2"},{"name":"NextJsBuildManifest-createassets","duration":3467,"timestamp":83955097,"id":1677,"parentId":948,"tags":{},"startTime":1767363451244,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":133797,"timestamp":84035859,"id":1681,"parentId":1679,"tags":{"name":"static/chunks/main-app-3ee073768a1a6456.js","cache":"MISS"},"startTime":1767363451324,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":133193,"timestamp":84036531,"id":1683,"parentId":1679,"tags":{"name":"static/chunks/pages/_app-56f4e2c3e0cd5b77.js","cache":"MISS"},"startTime":1767363451325,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":133076,"timestamp":84036683,"id":1684,"parentId":1679,"tags":{"name":"static/chunks/pages/_error-6444830a044a065f.js","cache":"MISS"},"startTime":1767363451325,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":132945,"timestamp":84036845,"id":1685,"parentId":1679,"tags":{"name":"static/chunks/app/layout-1baeb8f9d4de0f96.js","cache":"MISS"},"startTime":1767363451325,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":133645,"timestamp":84036176,"id":1682,"parentId":1679,"tags":{"name":"static/chunks/app/_not-found/page-1314fe1ff92ee0aa.js","cache":"MISS"},"startTime":1767363451325,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":101656,"timestamp":84068217,"id":1688,"parentId":1679,"tags":{"name":"static/chunks/app/settings/page-7dfce1ebb560c31a.js","cache":"MISS"},"startTime":1767363451357,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":132771,"timestamp":84037189,"id":1686,"parentId":1679,"tags":{"name":"static/chunks/app/page-b406bf35293fd85c.js","cache":"MISS"},"startTime":1767363451326,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":106087,"timestamp":84069093,"id":1689,"parentId":1679,"tags":{"name":"static/chunks/webpack-9b8a6c078d6e8803.js","cache":"MISS"},"startTime":1767363451358,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":161395,"timestamp":84047164,"id":1687,"parentId":1679,"tags":{"name":"static/chunks/app/project/[id]/page-18d573e088c4ff04.js","cache":"MISS"},"startTime":1767363451336,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":165560,"timestamp":84082691,"id":1692,"parentId":1679,"tags":{"name":"static/chunks/992-bf52afd3d0de90b0.js","cache":"MISS"},"startTime":1767363451371,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":352917,"timestamp":83982981,"id":1680,"parentId":1679,"tags":{"name":"static/chunks/main-ff9852398b1f3782.js","cache":"MISS"},"startTime":1767363451272,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":347247,"timestamp":84069402,"id":1690,"parentId":1679,"tags":{"name":"static/chunks/framework-63d70eb4e76697e6.js","cache":"MISS"},"startTime":1767363451358,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":292402,"timestamp":84124397,"id":1695,"parentId":1679,"tags":{"name":"server/middleware-react-loadable-manifest.js","cache":"MISS"},"startTime":1767363451413,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":292306,"timestamp":84124545,"id":1696,"parentId":1679,"tags":{"name":"static/aXT20mSdxaem1-z8VH2F1/_ssgManifest.js","cache":"MISS"},"startTime":1767363451413,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":292307,"timestamp":84124589,"id":1697,"parentId":1679,"tags":{"name":"server/middleware-build-manifest.js","cache":"MISS"},"startTime":1767363451413,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":294562,"timestamp":84124623,"id":1698,"parentId":1679,"tags":{"name":"static/aXT20mSdxaem1-z8VH2F1/_buildManifest.js","cache":"MISS"},"startTime":1767363451413,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":294565,"timestamp":84124655,"id":1699,"parentId":1679,"tags":{"name":"server/next-font-manifest.js","cache":"MISS"},"startTime":1767363451413,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":444561,"timestamp":84113950,"id":1694,"parentId":1679,"tags":{"name":"static/chunks/498-05477d3729b4e23d.js","cache":"MISS"},"startTime":1767363451403,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":502113,"timestamp":84086064,"id":1693,"parentId":1679,"tags":{"name":"static/chunks/298-31aeff1c11d099c1.js","cache":"MISS"},"startTime":1767363451375,"traceId":"f0add02174dc0eb2"},{"name":"minify-js","duration":522208,"timestamp":84076518,"id":1691,"parentId":1679,"tags":{"name":"static/chunks/c476d598-52de8ab10fae5dac.js","cache":"MISS"},"startTime":1767363451365,"traceId":"f0add02174dc0eb2"},{"name":"minify-webpack-plugin-optimize","duration":637726,"timestamp":83961027,"id":1679,"parentId":948,"tags":{"compilationName":"client","mangle":"[object Object]"},"startTime":1767363451250,"traceId":"f0add02174dc0eb2"},{"name":"minify-css","duration":476885,"timestamp":84599315,"id":1701,"parentId":1700,"tags":{"file":"static/css/42e3bf1695e2c3fc.css","cache":"MISS"},"startTime":1767363451888,"traceId":"f0add02174dc0eb2"},{"name":"css-minimizer-plugin","duration":477246,"timestamp":84598977,"id":1700,"parentId":948,"tags":{},"startTime":1767363451888,"traceId":"f0add02174dc0eb2"},{"name":"seal","duration":1754991,"timestamp":83347123,"id":1663,"parentId":948,"tags":{},"startTime":1767363450636,"traceId":"f0add02174dc0eb2"},{"name":"webpack-compilation","duration":6640930,"timestamp":78461783,"id":948,"parentId":945,"tags":{"name":"client"},"startTime":1767363445750,"traceId":"f0add02174dc0eb2"},{"name":"emit","duration":27079,"timestamp":85103330,"id":1702,"parentId":945,"tags":{},"startTime":1767363452392,"traceId":"f0add02174dc0eb2"},{"name":"webpack-close","duration":666945,"timestamp":85132280,"id":1703,"parentId":945,"tags":{"name":"client"},"startTime":1767363452421,"traceId":"f0add02174dc0eb2"},{"name":"webpack-generate-error-stats","duration":3925,"timestamp":85799310,"id":1704,"parentId":1703,"tags":{},"startTime":1767363453088,"traceId":"f0add02174dc0eb2"},{"name":"run-webpack-compiler","duration":7610977,"timestamp":78192618,"id":945,"parentId":944,"tags":{},"startTime":1767363445481,"traceId":"f0add02174dc0eb2"},{"name":"format-webpack-messages","duration":108,"timestamp":85803606,"id":1705,"parentId":944,"tags":{},"startTime":1767363453092,"traceId":"f0add02174dc0eb2"},{"name":"worker-main-client","duration":7611833,"timestamp":78192096,"id":944,"parentId":1,"tags":{},"startTime":1767363445481,"traceId":"f0add02174dc0eb2"},{"name":"verify-and-lint","duration":4073255,"timestamp":85918910,"id":1709,"parentId":1,"tags":{},"startTime":1767363453208,"traceId":"f0add02174dc0eb2"},{"name":"verify-typescript-setup","duration":7887480,"timestamp":85899713,"id":1708,"parentId":1,"tags":{},"startTime":1767363453188,"traceId":"f0add02174dc0eb2"},{"name":"check-static-error-page","duration":14079,"timestamp":93815311,"id":1712,"parentId":1711,"tags":{},"startTime":1767363461104,"traceId":"f0add02174dc0eb2"},{"name":"check-page","duration":2171,"timestamp":93906116,"id":1713,"parentId":1711,"tags":{"page":"/_app"},"startTime":1767363461195,"traceId":"f0add02174dc0eb2"},{"name":"check-page","duration":818,"timestamp":93907498,"id":1715,"parentId":1711,"tags":{"page":"/_document"},"startTime":1767363461196,"traceId":"f0add02174dc0eb2"},{"name":"check-page","duration":2031,"timestamp":93907338,"id":1714,"parentId":1711,"tags":{"page":"/_error"},"startTime":1767363461196,"traceId":"f0add02174dc0eb2"},{"name":"is-page-static","duration":334318,"timestamp":93922080,"id":1721,"parentId":1717,"tags":{},"startTime":1767363461211,"traceId":"f0add02174dc0eb2"},{"name":"check-page","duration":348659,"timestamp":93907816,"id":1717,"parentId":1711,"tags":{"page":"/"},"startTime":1767363461196,"traceId":"f0add02174dc0eb2"},{"name":"is-page-static","duration":349049,"timestamp":93922224,"id":1723,"parentId":1719,"tags":{},"startTime":1767363461211,"traceId":"f0add02174dc0eb2"},{"name":"check-page","duration":363395,"timestamp":93907949,"id":1719,"parentId":1711,"tags":{"page":"/settings"},"startTime":1767363461197,"traceId":"f0add02174dc0eb2"},{"name":"is-page-static","duration":384527,"timestamp":93911163,"id":1720,"parentId":1716,"tags":{},"startTime":1767363461200,"traceId":"f0add02174dc0eb2"},{"name":"check-page","duration":388119,"timestamp":93907634,"id":1716,"parentId":1711,"tags":{"page":"/_not-found"},"startTime":1767363461196,"traceId":"f0add02174dc0eb2"},{"name":"is-page-static","duration":403313,"timestamp":93922167,"id":1722,"parentId":1718,"tags":{},"startTime":1767363461211,"traceId":"f0add02174dc0eb2"},{"name":"check-page","duration":417642,"timestamp":93907893,"id":1718,"parentId":1711,"tags":{"page":"/project/[id]"},"startTime":1767363461197,"traceId":"f0add02174dc0eb2"},{"name":"static-check","duration":511098,"timestamp":93814460,"id":1711,"parentId":1,"tags":{},"startTime":1767363461103,"traceId":"f0add02174dc0eb2"},{"name":"generate-required-server-files","duration":534,"timestamp":94325705,"id":1725,"parentId":1,"tags":{},"startTime":1767363461614,"traceId":"f0add02174dc0eb2"},{"name":"write-routes-manifest","duration":3948,"timestamp":94342992,"id":1727,"parentId":1,"tags":{},"startTime":1767363461632,"traceId":"f0add02174dc0eb2"},{"name":"load-dotenv","duration":55,"timestamp":94392967,"id":1730,"parentId":1729,"tags":{},"startTime":1767363461682,"traceId":"f0add02174dc0eb2"},{"name":"run-export-path-map","duration":544,"timestamp":95598411,"id":1731,"parentId":1729,"tags":{},"startTime":1767363462887,"traceId":"f0add02174dc0eb2"},{"name":"next-export","duration":1963804,"timestamp":94392042,"id":1729,"parentId":1,"tags":{},"startTime":1767363461681,"traceId":"f0add02174dc0eb2"},{"name":"move-exported-app-not-found-","duration":30578,"timestamp":96357498,"id":1732,"parentId":1728,"tags":{},"startTime":1767363463646,"traceId":"f0add02174dc0eb2"},{"name":"move-exported-page","duration":23227,"timestamp":96388337,"id":1733,"parentId":1728,"tags":{},"startTime":1767363463677,"traceId":"f0add02174dc0eb2"},{"name":"static-generation","duration":2526067,"timestamp":94387886,"id":1728,"parentId":1,"tags":{},"startTime":1767363461677,"traceId":"f0add02174dc0eb2"},{"name":"write-routes-manifest","duration":108860,"timestamp":96914253,"id":1734,"parentId":1,"tags":{},"startTime":1767363464203,"traceId":"f0add02174dc0eb2"},{"name":"node-file-trace-build","duration":9799559,"timestamp":94333086,"id":1726,"parentId":1,"tags":{"isTurbotrace":"false"},"startTime":1767363461622,"traceId":"f0add02174dc0eb2"},{"name":"apply-include-excludes","duration":699,"timestamp":104132667,"id":1735,"parentId":1,"tags":{},"startTime":1767363471421,"traceId":"f0add02174dc0eb2"},{"name":"print-tree-view","duration":2775,"timestamp":104133507,"id":1736,"parentId":1,"tags":{},"startTime":1767363471422,"traceId":"f0add02174dc0eb2"},{"name":"telemetry-flush","duration":47,"timestamp":104136296,"id":1737,"parentId":1,"tags":{},"startTime":1767363471425,"traceId":"f0add02174dc0eb2"},{"name":"next-build","duration":38196518,"timestamp":65939830,"id":1,"tags":{"buildMode":"default","isTurboBuild":"false","version":"15.5.9","has-custom-webpack-config":"false","use-build-worker":"true"},"startTime":1767363433228,"traceId":"f0add02174dc0eb2"}]
1
+ [{"name":"generate-buildid","duration":273,"timestamp":245661281,"id":4,"parentId":1,"tags":{},"startTime":1767583941561,"traceId":"8482a19cb410207d"},{"name":"load-custom-routes","duration":475,"timestamp":245661698,"id":5,"parentId":1,"tags":{},"startTime":1767583941562,"traceId":"8482a19cb410207d"},{"name":"create-dist-dir","duration":47242,"timestamp":245813664,"id":6,"parentId":1,"tags":{},"startTime":1767583941714,"traceId":"8482a19cb410207d"},{"name":"create-pages-mapping","duration":257,"timestamp":245867164,"id":7,"parentId":1,"tags":{},"startTime":1767583941767,"traceId":"8482a19cb410207d"},{"name":"collect-app-files","duration":4803,"timestamp":245867458,"id":8,"parentId":1,"tags":{},"startTime":1767583941768,"traceId":"8482a19cb410207d"},{"name":"create-app-mapping","duration":1637,"timestamp":245872289,"id":9,"parentId":1,"tags":{},"startTime":1767583941772,"traceId":"8482a19cb410207d"},{"name":"create-app-layouts","duration":168,"timestamp":245873959,"id":10,"parentId":1,"tags":{},"startTime":1767583941774,"traceId":"8482a19cb410207d"},{"name":"collect-default-files","duration":21143,"timestamp":245878644,"id":12,"parentId":1,"tags":{},"startTime":1767583941779,"traceId":"8482a19cb410207d"},{"name":"generate-route-types","duration":42007,"timestamp":245874566,"id":11,"parentId":1,"tags":{},"startTime":1767583941775,"traceId":"8482a19cb410207d"},{"name":"public-dir-conflict-check","duration":633,"timestamp":245916646,"id":13,"parentId":1,"tags":{},"startTime":1767583941817,"traceId":"8482a19cb410207d"},{"name":"generate-routes-manifest","duration":2431,"timestamp":245917483,"id":14,"parentId":1,"tags":{},"startTime":1767583941818,"traceId":"8482a19cb410207d"},{"name":"create-entrypoints","duration":18567,"timestamp":246912240,"id":18,"parentId":16,"tags":{},"startTime":1767583942812,"traceId":"8482a19cb410207d"},{"name":"generate-webpack-config","duration":151003,"timestamp":246931048,"id":19,"parentId":17,"tags":{},"startTime":1767583942831,"traceId":"8482a19cb410207d"},{"name":"next-trace-entrypoint-plugin","duration":4029,"timestamp":247224430,"id":21,"parentId":20,"tags":{},"startTime":1767583943125,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":58199,"timestamp":247378327,"id":34,"parentId":25,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-route-loader/index.js?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!","layer":"pages-dir-node"},"startTime":1767583943279,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":59150,"timestamp":247388886,"id":35,"parentId":24,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_app.js","layer":"pages-dir-node"},"startTime":1767583943289,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":133473,"timestamp":247391633,"id":36,"parentId":29,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_document.js","layer":"pages-dir-node"},"startTime":1767583943292,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":308,"timestamp":247529903,"id":37,"parentId":35,"tags":{"name":"react/jsx-runtime","layer":null},"startTime":1767583943430,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":104,"timestamp":247530269,"id":38,"parentId":35,"tags":{"name":"react","layer":null},"startTime":1767583943430,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":356310,"timestamp":247364285,"id":30,"parentId":23,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?page=%2F_not-found%2Fpage&name=app%2F_not-found%2Fpage&pagePath=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found.js&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!","layer":"rsc"},"startTime":1767583943264,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":350263,"timestamp":247377278,"id":31,"parentId":26,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?page=%2Fpage&name=app%2Fpage&pagePath=private-next-app-dir%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!","layer":"rsc"},"startTime":1767583943277,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2505,"timestamp":247752549,"id":39,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/get-page-files.js","layer":"pages-dir-node"},"startTime":1767583943653,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3399,"timestamp":247752994,"id":40,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/htmlescape.js","layer":"pages-dir-node"},"startTime":1767583943653,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5801,"timestamp":247753296,"id":41,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/utils.js","layer":"pages-dir-node"},"startTime":1767583943653,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10034,"timestamp":247753449,"id":42,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-error.js","layer":"pages-dir-node"},"startTime":1767583943654,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11457,"timestamp":247753523,"id":43,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/pretty-bytes.js","layer":"pages-dir-node"},"startTime":1767583943654,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":27775,"timestamp":247753933,"id":47,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/tracer.js","layer":"pages-dir-node"},"startTime":1767583943654,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":30259,"timestamp":247753986,"id":48,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/utils.js","layer":"pages-dir-node"},"startTime":1767583943654,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":43070,"timestamp":247753570,"id":44,"parentId":35,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"pages-dir-node"},"startTime":1767583943654,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":35,"timestamp":247797120,"id":49,"parentId":30,"tags":{"name":"path","layer":null},"startTime":1767583943697,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":18,"timestamp":247797202,"id":50,"parentId":30,"tags":{"name":"next/dist/shared/lib/router/utils/app-paths","layer":null},"startTime":1767583943697,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":12,"timestamp":247797233,"id":51,"parentId":30,"tags":{"name":"next/dist/shared/lib/router/utils/is-bot","layer":null},"startTime":1767583943697,"traceId":"8482a19cb410207d"},{"name":"build-module-external","duration":8,"timestamp":247797253,"id":52,"parentId":30,"tags":{"name":"next/dist/shared/lib/no-fallback-error.external","layer":null},"startTime":1767583943697,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":46957,"timestamp":247753840,"id":46,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":"pages-dir-node"},"startTime":1767583943654,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":53181,"timestamp":247753690,"id":45,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/constants.js","layer":"pages-dir-node"},"startTime":1767583943654,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":518436,"timestamp":247378025,"id":33,"parentId":28,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?page=%2Fsettings%2Fpage&name=app%2Fsettings%2Fpage&pagePath=private-next-app-dir%2Fsettings%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fsettings%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!","layer":"rsc"},"startTime":1767583943278,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":563471,"timestamp":247377707,"id":32,"parentId":27,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-app-loader/index.js?page=%2Fproject%2F%5Bid%5D%2Fpage&name=app%2Fproject%2F%5Bid%5D%2Fpage&pagePath=private-next-app-dir%2Fproject%2F%5Bid%5D%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fproject%2F%5Bid%5D%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!","layer":"rsc"},"startTime":1767583943278,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1920,"timestamp":247988993,"id":53,"parentId":34,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-kind.js","layer":"pages-dir-node"},"startTime":1767583943889,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5415,"timestamp":247989270,"id":55,"parentId":34,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/templates/helpers.js","layer":"pages-dir-node"},"startTime":1767583943889,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6210,"timestamp":247989344,"id":56,"parentId":34,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/module.compiled.js","layer":"pages-dir-node"},"startTime":1767583943890,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":31451,"timestamp":247989418,"id":57,"parentId":34,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/pages-handler.js","layer":"pages-dir-node"},"startTime":1767583943890,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":34735,"timestamp":247989910,"id":61,"parentId":47,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/constants.js","layer":"pages-dir-node"},"startTime":1767583943890,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1529,"timestamp":248087242,"id":86,"parentId":36,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/vendored/contexts/html-context.js","layer":"pages-dir-node"},"startTime":1767583943987,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":29132,"timestamp":248088244,"id":93,"parentId":47,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"pages-dir-node"},"startTime":1767583943988,"traceId":"8482a19cb410207d"},{"name":"build-module-cjs","duration":30234,"timestamp":248088318,"id":94,"parentId":35,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/cjs/_interop_require_default.cjs","layer":"pages-dir-node"},"startTime":1767583943989,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":69458,"timestamp":248063992,"id":64,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-kind.js","layer":"rsc"},"startTime":1767583943964,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":71639,"timestamp":248070604,"id":65,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/tracer.js","layer":"rsc"},"startTime":1767583943971,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":74974,"timestamp":248070862,"id":66,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/trace/constants.js","layer":"rsc"},"startTime":1767583943971,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":75626,"timestamp":248071133,"id":67,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request-meta.js","layer":"rsc"},"startTime":1767583943971,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":82181,"timestamp":248071375,"id":68,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/render-result.js","layer":"rsc"},"startTime":1767583943972,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":84202,"timestamp":248071595,"id":69,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/send-payload.js","layer":"rsc"},"startTime":1767583943972,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":84795,"timestamp":248071825,"id":70,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/streaming-metadata.js","layer":"rsc"},"startTime":1767583943972,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":79328,"timestamp":248078284,"id":71,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/server-action-request-meta.js","layer":"rsc"},"startTime":1767583943978,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":82833,"timestamp":248078561,"id":72,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/fallback.js","layer":"rsc"},"startTime":1767583943979,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":90893,"timestamp":248078819,"id":73,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/constants.js","layer":"rsc"},"startTime":1767583943979,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":95529,"timestamp":248079109,"id":74,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1767583943979,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":95736,"timestamp":248079379,"id":75,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/instrumentation/utils.js","layer":"rsc"},"startTime":1767583943980,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":95838,"timestamp":248079669,"id":76,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/interop-default.js","layer":"rsc"},"startTime":1767583943980,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":96282,"timestamp":248080218,"id":78,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/strip-flight-headers.js","layer":"rsc"},"startTime":1767583943980,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":100786,"timestamp":248080474,"id":79,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/action-utils.js","layer":"rsc"},"startTime":1767583943981,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":106349,"timestamp":248080731,"id":80,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/entry-base.js","layer":"rsc"},"startTime":1767583943981,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":108802,"timestamp":248080998,"id":81,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/base-http/node.js","layer":"rsc"},"startTime":1767583943986,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":104272,"timestamp":248086286,"id":82,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/fallback-params.js","layer":"rsc"},"startTime":1767583943986,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":104724,"timestamp":248086533,"id":83,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/experimental/ppr.js","layer":"rsc"},"startTime":1767583943987,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":105116,"timestamp":248086763,"id":84,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/encoded-tags.js","layer":"rsc"},"startTime":1767583943987,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":112242,"timestamp":248086987,"id":85,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/index.js","layer":"rsc"},"startTime":1767583943987,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":213676,"timestamp":247989479,"id":58,"parentId":42,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"pages-dir-node"},"startTime":1767583943890,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":213816,"timestamp":247989594,"id":59,"parentId":45,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":"pages-dir-node"},"startTime":1767583943890,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":214074,"timestamp":247989699,"id":60,"parentId":47,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-thenable.js","layer":"pages-dir-node"},"startTime":1767583943890,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":214420,"timestamp":247989981,"id":62,"parentId":39,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":"pages-dir-node"},"startTime":1767583943890,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":217436,"timestamp":247989127,"id":54,"parentId":34,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_error.js","layer":"pages-dir-node"},"startTime":1767583943889,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":217187,"timestamp":247990135,"id":63,"parentId":39,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/normalize-page-path.js","layer":"pages-dir-node"},"startTime":1767583943890,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":121240,"timestamp":248087324,"id":87,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-headers.js","layer":"rsc"},"startTime":1767583943988,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":121766,"timestamp":248087477,"id":88,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"rsc"},"startTime":1767583943988,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":122626,"timestamp":248087677,"id":89,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-error.js","layer":"rsc"},"startTime":1767583943988,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":123038,"timestamp":248087957,"id":91,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/forbidden.js","layer":"rsc"},"startTime":1767583943988,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":123532,"timestamp":248088111,"id":92,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/unauthorized.js","layer":"rsc"},"startTime":1767583943988,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":124470,"timestamp":248087824,"id":90,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/not-found.js","layer":"rsc"},"startTime":1767583943988,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":138172,"timestamp":248079941,"id":77,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/encryption-utils.js","layer":"rsc"},"startTime":1767583943980,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":983469,"timestamp":247234910,"id":24,"parentId":22,"tags":{"request":"next/dist/pages/_app"},"startTime":1767583943135,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":51499,"timestamp":248227850,"id":95,"parentId":30,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/layout.tsx","layer":"rsc"},"startTime":1767583944128,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":51011,"timestamp":248228909,"id":96,"parentId":31,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"rsc"},"startTime":1767583944129,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":37,"timestamp":248285154,"id":97,"parentId":56,"tags":{"name":"next/dist/compiled/next-server/pages.runtime.prod.js","layer":null},"startTime":1767583944185,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":901,"timestamp":248285215,"id":98,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request-meta.js","layer":"pages-dir-node"},"startTime":1767583944185,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2817,"timestamp":248285281,"id":99,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/constants.js","layer":"pages-dir-node"},"startTime":1767583944185,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4163,"timestamp":248285320,"id":100,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/send-payload.js","layer":"pages-dir-node"},"startTime":1767583944186,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5984,"timestamp":248285350,"id":101,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/render-result.js","layer":"pages-dir-node"},"startTime":1767583944186,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6267,"timestamp":248285376,"id":102,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/interop-default.js","layer":"pages-dir-node"},"startTime":1767583944186,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6540,"timestamp":248285400,"id":103,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/instrumentation/utils.js","layer":"pages-dir-node"},"startTime":1767583944186,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":23449,"timestamp":248285422,"id":104,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"pages-dir-node"},"startTime":1767583944186,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":46,"timestamp":248309566,"id":105,"parentId":74,"tags":{"name":"next/dist/compiled/next-server/app-page.runtime.prod.js","layer":null},"startTime":1767583944210,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2182,"timestamp":248313647,"id":109,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/index.js","layer":"pages-dir-node"},"startTime":1767583944214,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":34688,"timestamp":248309631,"id":106,"parentId":65,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/@opentelemetry/api/index.js","layer":"rsc"},"startTime":1767583944210,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":60202,"timestamp":248313522,"id":108,"parentId":65,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-thenable.js","layer":"rsc"},"startTime":1767583944214,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":62961,"timestamp":248313346,"id":107,"parentId":69,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"rsc"},"startTime":1767583944214,"traceId":"8482a19cb410207d"},{"name":"build-module-external","duration":3165,"timestamp":248418899,"id":110,"parentId":57,"tags":{"name":"../../../shared/lib/no-fallback-error.external","layer":null},"startTime":1767583944319,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1831,"timestamp":248422162,"id":111,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/redirect-status.js","layer":"pages-dir-node"},"startTime":1767583944322,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2098,"timestamp":248422517,"id":113,"parentId":100,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/cache-control.js","layer":"pages-dir-node"},"startTime":1767583944323,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3367,"timestamp":248422797,"id":115,"parentId":109,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/utils.js","layer":"pages-dir-node"},"startTime":1767583944323,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7582,"timestamp":248422249,"id":112,"parentId":69,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/cache-control.js","layer":"rsc"},"startTime":1767583944322,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8517,"timestamp":248422578,"id":114,"parentId":85,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/utils.js","layer":"rsc"},"startTime":1767583944323,"traceId":"8482a19cb410207d"}]
2
+ [{"name":"build-module-js","duration":18420,"timestamp":248422861,"id":116,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/normalize-data-path.js","layer":"pages-dir-node"},"startTime":1767583944323,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2799,"timestamp":248442388,"id":118,"parentId":101,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/pipe-readable.js","layer":"pages-dir-node"},"startTime":1767583944343,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5677,"timestamp":248442660,"id":120,"parentId":109,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/batcher.js","layer":"pages-dir-node"},"startTime":1767583944343,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12006,"timestamp":248442904,"id":122,"parentId":101,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/node-web-streams-helper.js","layer":"pages-dir-node"},"startTime":1767583944343,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":15768,"timestamp":248443369,"id":126,"parentId":100,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/etag.js","layer":"pages-dir-node"},"startTime":1767583944344,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":24295,"timestamp":248442115,"id":117,"parentId":68,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/pipe-readable.js","layer":"rsc"},"startTime":1767583944342,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":24794,"timestamp":248442455,"id":119,"parentId":85,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/batcher.js","layer":"rsc"},"startTime":1767583944343,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":31175,"timestamp":248442710,"id":121,"parentId":68,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/node-web-streams-helper.js","layer":"rsc"},"startTime":1767583944343,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":31763,"timestamp":248443169,"id":125,"parentId":69,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/etag.js","layer":"rsc"},"startTime":1767583944343,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":43023,"timestamp":248442957,"id":123,"parentId":68,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/invariant-error.js","layer":"rsc"},"startTime":1767583944343,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":43314,"timestamp":248443096,"id":124,"parentId":101,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/invariant-error.js","layer":"pages-dir-node"},"startTime":1767583944343,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":43497,"timestamp":248443430,"id":127,"parentId":33,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"rsc"},"startTime":1767583944344,"traceId":"8482a19cb410207d"},{"name":"build-module-external","duration":68,"timestamp":248524915,"id":129,"parentId":79,"tags":{"name":"./work-async-storage.external","layer":null},"startTime":1767583944425,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1553,"timestamp":248524834,"id":128,"parentId":122,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/encoded-tags.js","layer":"pages-dir-node"},"startTime":1767583944425,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2061,"timestamp":248525288,"id":131,"parentId":109,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/scheduler.js","layer":"pages-dir-node"},"startTime":1767583944425,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7759,"timestamp":248525032,"id":130,"parentId":85,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/scheduler.js","layer":"rsc"},"startTime":1767583944425,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12792,"timestamp":248525343,"id":132,"parentId":54,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"pages-dir-node"},"startTime":1767583944426,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13093,"timestamp":248525424,"id":133,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/layout-router.js","layer":"rsc"},"startTime":1767583944426,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13337,"timestamp":248525532,"id":134,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/render-from-template-context.js","layer":"rsc"},"startTime":1767583944426,"traceId":"8482a19cb410207d"},{"name":"build-module-external","duration":28,"timestamp":248539563,"id":135,"parentId":80,"tags":{"name":"../app-render/action-async-storage.external","layer":null},"startTime":1767583944440,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4159,"timestamp":248539607,"id":136,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-page.js","layer":"rsc"},"startTime":1767583944440,"traceId":"8482a19cb410207d"},{"name":"build-module-external","duration":19,"timestamp":248543864,"id":137,"parentId":80,"tags":{"name":"./work-unit-async-storage.external","layer":null},"startTime":1767583944444,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14728,"timestamp":248546263,"id":139,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/search-params.js","layer":"rsc"},"startTime":1767583944446,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":29605,"timestamp":248543899,"id":138,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-segment.js","layer":"rsc"},"startTime":1767583944444,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14895,"timestamp":248585763,"id":140,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/params.js","layer":"rsc"},"startTime":1767583944486,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":20464,"timestamp":248586299,"id":142,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/collect-segment-data.js","layer":"rsc"},"startTime":1767583944486,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":35589,"timestamp":248586501,"id":143,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/patch-fetch.js","layer":"rsc"},"startTime":1767583944487,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":36196,"timestamp":248586687,"id":144,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/base-http/index.js","layer":"rsc"},"startTime":1767583944487,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":39096,"timestamp":248586158,"id":141,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/hooks-server-context.js","layer":"rsc"},"startTime":1767583944486,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3321,"timestamp":248641353,"id":146,"parentId":109,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/types.js","layer":"pages-dir-node"},"startTime":1767583944542,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5183,"timestamp":248641045,"id":145,"parentId":85,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/response-cache/types.js","layer":"rsc"},"startTime":1767583944541,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10706,"timestamp":248641417,"id":147,"parentId":62,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":"pages-dir-node"},"startTime":1767583944542,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10958,"timestamp":248641512,"id":148,"parentId":63,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"pages-dir-node"},"startTime":1767583944542,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4218,"timestamp":248658104,"id":149,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js","layer":"rsc"},"startTime":1767583944558,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5013,"timestamp":248658287,"id":150,"parentId":91,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-fallback.js","layer":"rsc"},"startTime":1767583944558,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3665,"timestamp":248667733,"id":151,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/metadata.js","layer":"rsc"},"startTime":1767583944568,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2196,"timestamp":248682183,"id":153,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/rsc/preloads.js","layer":"rsc"},"startTime":1767583944582,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2273,"timestamp":248682424,"id":154,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/rsc/postpone.js","layer":"rsc"},"startTime":1767583944583,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3322,"timestamp":248682648,"id":155,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/rsc/taint.js","layer":"rsc"},"startTime":1767583944583,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6928,"timestamp":248681901,"id":152,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-components.js","layer":"rsc"},"startTime":1767583944582,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8859,"timestamp":248695348,"id":158,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"pages-dir-node"},"startTime":1767583944596,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9284,"timestamp":248695412,"id":159,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"pages-dir-node"},"startTime":1767583944596,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":17266,"timestamp":248695270,"id":157,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"pages-dir-node"},"startTime":1767583944595,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":18268,"timestamp":248695112,"id":156,"parentId":70,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"rsc"},"startTime":1767583944595,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":21122,"timestamp":248705253,"id":161,"parentId":57,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"pages-dir-node"},"startTime":1767583944605,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":22384,"timestamp":248705093,"id":160,"parentId":79,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"rsc"},"startTime":1767583944605,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8236,"timestamp":248720877,"id":163,"parentId":79,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":"rsc"},"startTime":1767583944621,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8922,"timestamp":248720696,"id":162,"parentId":79,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"rsc"},"startTime":1767583944621,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11422,"timestamp":248720998,"id":164,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"rsc"},"startTime":1767583944621,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11618,"timestamp":248721233,"id":166,"parentId":116,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"pages-dir-node"},"startTime":1767583944621,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":22231,"timestamp":248721133,"id":165,"parentId":82,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"rsc"},"startTime":1767583944621,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5549,"timestamp":248755226,"id":167,"parentId":160,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"rsc"},"startTime":1767583944655,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":5867,"timestamp":248772391,"id":168,"parentId":32,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"rsc"},"startTime":1767583944673,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6156,"timestamp":248772662,"id":169,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"rsc"},"startTime":1767583944673,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1012,"timestamp":248783104,"id":170,"parentId":118,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/detached-promise.js","layer":"pages-dir-node"},"startTime":1767583944683,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1704,"timestamp":248783387,"id":172,"parentId":118,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/client-component-renderer-logger.js","layer":"pages-dir-node"},"startTime":1767583944684,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2884,"timestamp":248783173,"id":171,"parentId":117,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/detached-promise.js","layer":"rsc"},"startTime":1767583944683,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3558,"timestamp":248783437,"id":173,"parentId":117,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/client-component-renderer-logger.js","layer":"rsc"},"startTime":1767583944684,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1606,"timestamp":248789131,"id":175,"parentId":122,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/uint8array-helpers.js","layer":"pages-dir-node"},"startTime":1767583944689,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2574,"timestamp":248788867,"id":174,"parentId":89,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-loader/module-proxy.js","layer":"rsc"},"startTime":1767583944689,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3212,"timestamp":248789190,"id":176,"parentId":121,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/stream-utils/uint8array-helpers.js","layer":"rsc"},"startTime":1767583944689,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6915,"timestamp":248795514,"id":177,"parentId":81,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/api-utils/index.js","layer":"rsc"},"startTime":1767583944696,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14494,"timestamp":248795767,"id":178,"parentId":62,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"pages-dir-node"},"startTime":1767583944696,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3482,"timestamp":248834923,"id":183,"parentId":139,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/dynamic-rendering-utils.js","layer":"rsc"},"startTime":1767583944735,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9945,"timestamp":248829141,"id":179,"parentId":122,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/errors/constants.js","layer":"pages-dir-node"},"startTime":1767583944729,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10383,"timestamp":248829526,"id":182,"parentId":121,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/output-export-prefetch-encoding.js","layer":"rsc"},"startTime":1767583944730,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11212,"timestamp":248829432,"id":181,"parentId":122,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/output-export-prefetch-encoding.js","layer":"pages-dir-node"},"startTime":1767583944730,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11897,"timestamp":248829287,"id":180,"parentId":121,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/errors/constants.js","layer":"rsc"},"startTime":1767583944729,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9876,"timestamp":248835214,"id":184,"parentId":132,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"pages-dir-node"},"startTime":1767583944735,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10172,"timestamp":248835299,"id":185,"parentId":132,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"pages-dir-node"},"startTime":1767583944735,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10474,"timestamp":248835369,"id":186,"parentId":132,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"pages-dir-node"},"startTime":1767583944736,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4635,"timestamp":248865749,"id":187,"parentId":139,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/create-deduped-by-callsite-server-error-logger.js","layer":"rsc"},"startTime":1767583944766,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4196,"timestamp":248866449,"id":190,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-webpack-server.js","layer":"rsc"},"startTime":1767583944767,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4247,"timestamp":248866652,"id":191,"parentId":80,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-server-dom-webpack-static.js","layer":"rsc"},"startTime":1767583944767,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9186,"timestamp":248866252,"id":189,"parentId":139,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/utils.js","layer":"rsc"},"startTime":1767583944766,"traceId":"8482a19cb410207d"},{"name":"build-module-external","duration":34,"timestamp":248876806,"id":192,"parentId":140,"tags":{"name":"../app-render/dynamic-access-async-storage.external","layer":null},"startTime":1767583944777,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2388,"timestamp":248877050,"id":194,"parentId":118,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/next-request.js","layer":"pages-dir-node"},"startTime":1767583944777,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11308,"timestamp":248877110,"id":195,"parentId":117,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/next-request.js","layer":"rsc"},"startTime":1767583944777,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11640,"timestamp":248877342,"id":196,"parentId":139,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"rsc"},"startTime":1767583944778,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":40243,"timestamp":248866040,"id":188,"parentId":139,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"rsc"},"startTime":1767583944766,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":34345,"timestamp":248876859,"id":193,"parentId":139,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/reflect-utils.js","layer":"rsc"},"startTime":1767583944777,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8813,"timestamp":248912683,"id":197,"parentId":142,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-jsx-runtime.js","layer":"rsc"},"startTime":1767583944813,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7272,"timestamp":248932145,"id":198,"parentId":142,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/create-error-handler.js","layer":"rsc"},"startTime":1767583944832,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9661,"timestamp":248932433,"id":199,"parentId":143,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/dedupe-fetch.js","layer":"rsc"},"startTime":1767583944833,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10148,"timestamp":248932684,"id":200,"parentId":143,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/clone-response.js","layer":"rsc"},"startTime":1767583944833,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2043,"timestamp":248951494,"id":202,"parentId":100,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/fresh/index.js","layer":"pages-dir-node"},"startTime":1767583944852,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9993,"timestamp":248951221,"id":201,"parentId":69,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/fresh/index.js","layer":"rsc"},"startTime":1767583944851,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10678,"timestamp":248951553,"id":203,"parentId":144,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/api-utils/get-cookie-parser.js","layer":"rsc"},"startTime":1767583944852,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":17753,"timestamp":248951756,"id":204,"parentId":142,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js","layer":"rsc"},"startTime":1767583944852,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":18181,"timestamp":248951869,"id":205,"parentId":95,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"rsc"},"startTime":1767583944852,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1364,"timestamp":248978450,"id":206,"parentId":198,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-error.js","layer":"rsc"},"startTime":1767583944879,"traceId":"8482a19cb410207d"},{"name":"build-module-css","duration":718,"timestamp":248989516,"id":207,"parentId":95,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css","layer":"rsc"},"startTime":1767583944890,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4097,"timestamp":248993595,"id":208,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-constants.js","layer":"rsc"},"startTime":1767583944894,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4948,"timestamp":248993867,"id":209,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/pathname.js","layer":"rsc"},"startTime":1767583944894,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":18359,"timestamp":248994124,"id":210,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolve-metadata.js","layer":"rsc"},"startTime":1767583944894,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":20020,"timestamp":248994355,"id":211,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"rsc"},"startTime":1767583944895,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":20487,"timestamp":248994498,"id":212,"parentId":150,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/styles/access-error-styles.js","layer":"rsc"},"startTime":1767583944895,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8815,"timestamp":249016307,"id":213,"parentId":206,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"rsc"},"startTime":1767583944916,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5302,"timestamp":249031489,"id":214,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/basic.js","layer":"rsc"},"startTime":1767583944932,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6025,"timestamp":249031775,"id":215,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/alternate.js","layer":"rsc"},"startTime":1767583944932,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9004,"timestamp":249032039,"id":216,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/opengraph.js","layer":"rsc"},"startTime":1767583944932,"traceId":"8482a19cb410207d"}]
3
+ [{"name":"build-module-js","duration":9671,"timestamp":249032275,"id":217,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icons.js","layer":"rsc"},"startTime":1767583944932,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10839,"timestamp":249032517,"id":218,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/meta.js","layer":"rsc"},"startTime":1767583944933,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3201,"timestamp":249050303,"id":220,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/router-utils/is-postpone.js","layer":"rsc"},"startTime":1767583944950,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9483,"timestamp":249050119,"id":219,"parentId":151,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/metadata/async-metadata.js","layer":"rsc"},"startTime":1767583944950,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6819,"timestamp":249071297,"id":221,"parentId":158,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"pages-dir-node"},"startTime":1767583944971,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7791,"timestamp":249071433,"id":222,"parentId":156,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"rsc"},"startTime":1767583944972,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8170,"timestamp":249071578,"id":223,"parentId":159,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"pages-dir-node"},"startTime":1767583944972,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9233,"timestamp":249071674,"id":224,"parentId":162,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"rsc"},"startTime":1767583944972,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6313,"timestamp":249075578,"id":226,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"rsc"},"startTime":1767583944976,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7148,"timestamp":249075703,"id":227,"parentId":157,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"pages-dir-node"},"startTime":1767583944976,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8016,"timestamp":249075425,"id":225,"parentId":210,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"rsc"},"startTime":1767583944976,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8831,"timestamp":249075916,"id":229,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"rsc"},"startTime":1767583944976,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11905,"timestamp":249076056,"id":230,"parentId":165,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js","layer":"rsc"},"startTime":1767583944976,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13458,"timestamp":249075789,"id":228,"parentId":164,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js","layer":"rsc"},"startTime":1767583944976,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1226,"timestamp":249091497,"id":231,"parentId":142,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-server-dom-webpack/client.node.js","layer":"rsc"},"startTime":1767583944992,"traceId":"8482a19cb410207d"},{"name":"build-module-cjs","duration":4422,"timestamp":249101236,"id":232,"parentId":132,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/cjs/_interop_require_wildcard.cjs","layer":"pages-dir-node"},"startTime":1767583945001,"traceId":"8482a19cb410207d"},{"name":"build-module-external","duration":35,"timestamp":249106520,"id":233,"parentId":189,"tags":{"name":"../app-render/after-task-async-storage.external","layer":null},"startTime":1767583945007,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2845,"timestamp":249106744,"id":235,"parentId":194,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/utils.js","layer":"pages-dir-node"},"startTime":1767583945007,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3130,"timestamp":249107045,"id":237,"parentId":194,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/base-http/helpers.js","layer":"pages-dir-node"},"startTime":1767583945007,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4311,"timestamp":249107308,"id":239,"parentId":194,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/request.js","layer":"pages-dir-node"},"startTime":1767583945007,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7580,"timestamp":249106808,"id":236,"parentId":195,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/utils.js","layer":"rsc"},"startTime":1767583945007,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7868,"timestamp":249107099,"id":238,"parentId":195,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/base-http/helpers.js","layer":"rsc"},"startTime":1767583945007,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10334,"timestamp":249107368,"id":240,"parentId":195,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/request.js","layer":"rsc"},"startTime":1767583945008,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":16125,"timestamp":249107563,"id":241,"parentId":177,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/headers.js","layer":"rsc"},"startTime":1767583945008,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":21826,"timestamp":249106578,"id":234,"parentId":189,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"rsc"},"startTime":1767583945007,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":21409,"timestamp":249107767,"id":242,"parentId":178,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"pages-dir-node"},"startTime":1767583945008,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":25796,"timestamp":249107848,"id":243,"parentId":178,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"pages-dir-node"},"startTime":1767583945008,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1396,"timestamp":249165753,"id":245,"parentId":132,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/vendored/contexts/amp-context.js","layer":"pages-dir-node"},"startTime":1767583945066,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1524,"timestamp":249165827,"id":246,"parentId":132,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/pages/vendored/contexts/head-manager-context.js","layer":"pages-dir-node"},"startTime":1767583945066,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3001,"timestamp":249166151,"id":248,"parentId":198,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/error-telemetry-utils.js","layer":"rsc"},"startTime":1767583945066,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3097,"timestamp":249166478,"id":250,"parentId":198,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/react-large-shell-error.js","layer":"rsc"},"startTime":1767583945067,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6948,"timestamp":249164326,"id":244,"parentId":242,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"pages-dir-node"},"startTime":1767583945065,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6688,"timestamp":249166365,"id":249,"parentId":198,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/is-next-router-error.js","layer":"rsc"},"startTime":1767583945067,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7310,"timestamp":249166679,"id":251,"parentId":188,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"rsc"},"startTime":1767583945067,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10800,"timestamp":249165875,"id":247,"parentId":198,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/format-server-error.js","layer":"rsc"},"startTime":1767583945066,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4051,"timestamp":249184174,"id":252,"parentId":244,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"pages-dir-node"},"startTime":1767583945084,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":114322,"timestamp":249188411,"id":253,"parentId":210,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/interop-default.js","layer":"rsc"},"startTime":1767583945089,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":114832,"timestamp":249188689,"id":254,"parentId":210,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/default-metadata.js","layer":"rsc"},"startTime":1767583945089,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":115567,"timestamp":249188934,"id":255,"parentId":210,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/app-dir-module.js","layer":"rsc"},"startTime":1767583945089,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":116005,"timestamp":249189192,"id":256,"parentId":210,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/utils.js","layer":"rsc"},"startTime":1767583945089,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":115057,"timestamp":249192711,"id":259,"parentId":210,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-opengraph.js","layer":"rsc"},"startTime":1767583945093,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":115464,"timestamp":249192954,"id":260,"parentId":210,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-title.js","layer":"rsc"},"startTime":1767583945093,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7729,"timestamp":249321040,"id":265,"parentId":187,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react.js","layer":"rsc"},"startTime":1767583945221,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9305,"timestamp":249334608,"id":266,"parentId":252,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"pages-dir-node"},"startTime":1767583945235,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":2109076,"timestamp":247235033,"id":29,"parentId":22,"tags":{"request":"next/dist/pages/_document"},"startTime":1767583943135,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3042,"timestamp":249354349,"id":267,"parentId":177,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/cookie/index.js","layer":"rsc"},"startTime":1767583945255,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3167,"timestamp":249354560,"id":268,"parentId":218,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/non-nullable.js","layer":"rsc"},"startTime":1767583945255,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3575,"timestamp":249354699,"id":269,"parentId":214,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/constants.js","layer":"rsc"},"startTime":1767583945255,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6793,"timestamp":249354826,"id":270,"parentId":210,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-basics.js","layer":"rsc"},"startTime":1767583945255,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7486,"timestamp":249354947,"id":271,"parentId":210,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-icons.js","layer":"rsc"},"startTime":1767583945255,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11389,"timestamp":249355219,"id":273,"parentId":210,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/output/log.js","layer":"rsc"},"startTime":1767583945255,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":20362,"timestamp":249355093,"id":272,"parentId":217,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icon-mark.js","layer":"rsc"},"startTime":1767583945255,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2479,"timestamp":249402795,"id":275,"parentId":239,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/next-url.js","layer":"pages-dir-node"},"startTime":1767583945303,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2658,"timestamp":249403080,"id":277,"parentId":239,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/error.js","layer":"pages-dir-node"},"startTime":1767583945303,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2978,"timestamp":249403249,"id":279,"parentId":239,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/cookies.js","layer":"pages-dir-node"},"startTime":1767583945303,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7905,"timestamp":249400687,"id":274,"parentId":228,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/route-pattern-normalizer.js","layer":"rsc"},"startTime":1767583945301,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8804,"timestamp":249402878,"id":276,"parentId":240,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/next-url.js","layer":"rsc"},"startTime":1767583945303,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9148,"timestamp":249403125,"id":278,"parentId":240,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/error.js","layer":"rsc"},"startTime":1767583945303,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9369,"timestamp":249403289,"id":280,"parentId":240,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/cookies.js","layer":"rsc"},"startTime":1767583945303,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2392,"timestamp":249429714,"id":282,"parentId":198,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/string-hash/index.js","layer":"rsc"},"startTime":1767583945330,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2541,"timestamp":249439644,"id":283,"parentId":259,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/url.js","layer":"rsc"},"startTime":1767583945340,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7296,"timestamp":249440108,"id":285,"parentId":259,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/resolvers/resolve-url.js","layer":"rsc"},"startTime":1767583945340,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":90075,"timestamp":249403409,"id":281,"parentId":231,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.node.production.js","layer":"rsc"},"startTime":1767583945304,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":54963,"timestamp":249439930,"id":284,"parentId":249,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-error.js","layer":"rsc"},"startTime":1767583945340,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2743,"timestamp":249510588,"id":286,"parentId":273,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/picocolors.js","layer":"rsc"},"startTime":1767583945411,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4054,"timestamp":249510903,"id":287,"parentId":273,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/lru-cache.js","layer":"rsc"},"startTime":1767583945411,"traceId":"8482a19cb410207d"},{"name":"font-loader","duration":249138,"timestamp":249270625,"id":262,"parentId":261,"tags":{},"startTime":1767583945171,"traceId":"8482a19cb410207d"},{"name":"font-loader","duration":225100,"timestamp":249297890,"id":264,"parentId":263,"tags":{},"startTime":1767583945198,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":32,"timestamp":249523120,"id":288,"parentId":281,"tags":{"name":"util","layer":null},"startTime":1767583945423,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4055,"timestamp":249528735,"id":290,"parentId":276,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-hostname.js","layer":"rsc"},"startTime":1767583945429,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4607,"timestamp":249528615,"id":289,"parentId":275,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-hostname.js","layer":"pages-dir-node"},"startTime":1767583945429,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4999,"timestamp":249528859,"id":291,"parentId":275,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","layer":"pages-dir-node"},"startTime":1767583945429,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6366,"timestamp":249534092,"id":295,"parentId":228,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/path-to-regexp/index.js","layer":"rsc"},"startTime":1767583945434,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12715,"timestamp":249528938,"id":292,"parentId":276,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","layer":"rsc"},"startTime":1767583945429,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13345,"timestamp":249529084,"id":293,"parentId":275,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","layer":"pages-dir-node"},"startTime":1767583945429,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13821,"timestamp":249529162,"id":294,"parentId":276,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","layer":"rsc"},"startTime":1767583945429,"traceId":"8482a19cb410207d"},{"name":"postcss","duration":6609,"timestamp":249811229,"id":296,"parentId":261,"tags":{},"startTime":1767583945711,"traceId":"8482a19cb410207d"},{"name":"postcss","duration":2771,"timestamp":249815078,"id":297,"parentId":263,"tags":{},"startTime":1767583945715,"traceId":"8482a19cb410207d"},{"name":"next-font-loader","duration":625220,"timestamp":249193401,"id":261,"parentId":257,"tags":{},"startTime":1767583945094,"traceId":"8482a19cb410207d"},{"name":"next-font-loader","duration":520788,"timestamp":249297838,"id":263,"parentId":258,"tags":{},"startTime":1767583945198,"traceId":"8482a19cb410207d"},{"name":"css-loader","duration":46921,"timestamp":249818107,"id":298,"parentId":257,"tags":{"astUsed":"true"},"startTime":1767583945718,"traceId":"8482a19cb410207d"},{"name":"css-loader","duration":46438,"timestamp":249818602,"id":299,"parentId":258,"tags":{"astUsed":"true"},"startTime":1767583945719,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":676153,"timestamp":249189436,"id":257,"parentId":95,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}","layer":"rsc"},"startTime":1767583945090,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":673243,"timestamp":249192611,"id":258,"parentId":95,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}","layer":"rsc"},"startTime":1767583945093,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5552,"timestamp":249869985,"id":300,"parentId":153,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/rsc/react-dom.js","layer":"rsc"},"startTime":1767583945770,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12738,"timestamp":249870345,"id":301,"parentId":275,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","layer":"pages-dir-node"},"startTime":1767583945771,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13873,"timestamp":249870441,"id":302,"parentId":276,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/detect-domain-locale.js","layer":"rsc"},"startTime":1767583945771,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8444,"timestamp":249876437,"id":303,"parentId":292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"rsc"},"startTime":1767583945777,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8852,"timestamp":249876579,"id":304,"parentId":293,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":"pages-dir-node"},"startTime":1767583945777,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3689,"timestamp":249890531,"id":306,"parentId":210,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/server-only/empty.js","layer":"rsc"},"startTime":1767583945791,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4650,"timestamp":249890066,"id":305,"parentId":285,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/isomorphic/path.js","layer":"rsc"},"startTime":1767583945790,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2486,"timestamp":249900481,"id":308,"parentId":292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":"rsc"},"startTime":1767583945801,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6613,"timestamp":249900613,"id":309,"parentId":291,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":"pages-dir-node"},"startTime":1767583945801,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7258,"timestamp":249900714,"id":310,"parentId":292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":"rsc"},"startTime":1767583945801,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10795,"timestamp":249901593,"id":311,"parentId":293,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":"pages-dir-node"},"startTime":1767583945802,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12958,"timestamp":249900373,"id":307,"parentId":291,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":"pages-dir-node"},"startTime":1767583945801,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13900,"timestamp":249901700,"id":312,"parentId":294,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":"rsc"},"startTime":1767583945802,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12708,"timestamp":249931120,"id":313,"parentId":279,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js","layer":"pages-dir-node"},"startTime":1767583945831,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":18427,"timestamp":249931213,"id":314,"parentId":280,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/@edge-runtime/cookies/index.js","layer":"rsc"},"startTime":1767583945831,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":2714874,"timestamp":247234946,"id":25,"parentId":22,"tags":{"request":"next-route-loader?kind=PAGES&page=%2F_error&preferredRegion=&absolutePagePath=next%2Fdist%2Fpages%2F_error&absoluteAppPath=next%2Fdist%2Fpages%2F_app&absoluteDocumentPath=next%2Fdist%2Fpages%2F_document&middlewareConfigBase64=e30%3D!"},"startTime":1767583943135,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":2715386,"timestamp":247234446,"id":23,"parentId":22,"tags":{"request":"next-app-loader?page=%2F_not-found%2Fpage&name=app%2F_not-found%2Fpage&pagePath=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found.js&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!"},"startTime":1767583943135,"traceId":"8482a19cb410207d"}]
4
+ [{"name":"add-entry","duration":2714871,"timestamp":247234967,"id":26,"parentId":22,"tags":{"request":"next-app-loader?page=%2Fpage&name=app%2Fpage&pagePath=private-next-app-dir%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!"},"startTime":1767583943135,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":2714849,"timestamp":247234993,"id":28,"parentId":22,"tags":{"request":"next-app-loader?page=%2Fsettings%2Fpage&name=app%2Fsettings%2Fpage&pagePath=private-next-app-dir%2Fsettings%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fsettings%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!"},"startTime":1767583943135,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":2714865,"timestamp":247234982,"id":27,"parentId":22,"tags":{"request":"next-app-loader?page=%2Fproject%2F%5Bid%5D%2Fpage&name=app%2Fproject%2F%5Bid%5D%2Fpage&pagePath=private-next-app-dir%2Fproject%2F%5Bid%5D%2Fpage.tsx&appDir=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp&appPaths=%2Fproject%2F%5Bid%5D%2Fpage&pageExtensions=tsx&pageExtensions=ts&pageExtensions=jsx&pageExtensions=js&basePath=&assetPrefix=&nextConfigOutput=&preferredRegion=&middlewareConfig=e30%3D&isGlobalNotFoundEnabled=!"},"startTime":1767583943135,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":2551,"timestamp":250057110,"id":337,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fcomponents%2FDevErrorRecovery.tsx%22%2C%22ids%22%3A%5B%22DevErrorRecovery%22%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-sans%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistSans%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist_Mono%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-mono%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistMono%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767583945957,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":425,"timestamp":250059695,"id":338,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fcomponents%2FDevErrorRecovery.tsx%22%2C%22ids%22%3A%5B%22DevErrorRecovery%22%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-sans%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistSans%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist_Mono%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-mono%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistMono%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767583945960,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":811,"timestamp":250060145,"id":339,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-error.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-segment.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fhttp-access-fallback%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fmetadata%2Fasync-metadata.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fframework%2Fboundary-components.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fmetadata%2Fgenerate%2Ficon-mark.js%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767583945960,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":1734,"timestamp":250060977,"id":340,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-error.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-segment.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fhttp-access-fallback%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fmetadata%2Fasync-metadata.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fframework%2Fboundary-components.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fmetadata%2Fgenerate%2Ficon-mark.js%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767583945961,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":300,"timestamp":250062730,"id":341,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767583945963,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":265,"timestamp":250063047,"id":342,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767583945963,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":262,"timestamp":250063328,"id":343,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767583945964,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":266,"timestamp":250063607,"id":344,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767583945964,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":374,"timestamp":250063889,"id":345,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"ssr"},"startTime":1767583945964,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":267,"timestamp":250064278,"id":346,"parentId":20,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=true!","layer":"rsc"},"startTime":1767583945964,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":7502,"timestamp":250089347,"id":348,"parentId":345,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"ssr"},"startTime":1767583945990,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":8013,"timestamp":250089472,"id":349,"parentId":343,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"ssr"},"startTime":1767583945990,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":9741,"timestamp":250088407,"id":347,"parentId":341,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"ssr"},"startTime":1767583945989,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9213,"timestamp":250089582,"id":350,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-error.js","layer":"ssr"},"startTime":1767583945990,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":10091,"timestamp":250090050,"id":351,"parentId":337,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"ssr"},"startTime":1767583945990,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10679,"timestamp":250090165,"id":352,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-page.js","layer":"ssr"},"startTime":1767583945990,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11420,"timestamp":250090317,"id":355,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/render-from-template-context.js","layer":"ssr"},"startTime":1767583945991,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":23595,"timestamp":250091663,"id":358,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/metadata/async-metadata.js","layer":"ssr"},"startTime":1767583945992,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":25245,"timestamp":250091561,"id":357,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js","layer":"ssr"},"startTime":1767583945992,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":26113,"timestamp":250091327,"id":356,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-components.js","layer":"ssr"},"startTime":1767583945992,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":28438,"timestamp":250090221,"id":353,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-segment.js","layer":"ssr"},"startTime":1767583945990,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":34057,"timestamp":250090270,"id":354,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/layout-router.js","layer":"ssr"},"startTime":1767583945990,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10556,"timestamp":250133263,"id":359,"parentId":339,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icon-mark.js","layer":"ssr"},"startTime":1767583946033,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5469,"timestamp":250144093,"id":361,"parentId":352,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/search-params.js","layer":"ssr"},"startTime":1767583946044,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11490,"timestamp":250144213,"id":362,"parentId":352,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/params.js","layer":"ssr"},"startTime":1767583946044,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13501,"timestamp":250143941,"id":360,"parentId":352,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/invariant-error.js","layer":"ssr"},"startTime":1767583946044,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2470,"timestamp":250158062,"id":363,"parentId":356,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-constants.js","layer":"ssr"},"startTime":1767583946058,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":23229,"timestamp":250158271,"id":365,"parentId":357,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"ssr"},"startTime":1767583946058,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":24264,"timestamp":250158207,"id":364,"parentId":357,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"ssr"},"startTime":1767583946058,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":25054,"timestamp":250158329,"id":366,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"ssr"},"startTime":1767583946059,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6009,"timestamp":250190882,"id":367,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/dynamic-rendering-utils.js","layer":"ssr"},"startTime":1767583946091,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6678,"timestamp":250191159,"id":368,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/create-deduped-by-callsite-server-error-logger.js","layer":"ssr"},"startTime":1767583946091,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3714,"timestamp":250194594,"id":372,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/web/spec-extension/adapters/reflect.js","layer":"ssr"},"startTime":1767583946095,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6444,"timestamp":250194497,"id":371,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/reflect-utils.js","layer":"ssr"},"startTime":1767583946095,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9750,"timestamp":250194313,"id":370,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/request/utils.js","layer":"ssr"},"startTime":1767583946095,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6049,"timestamp":250201175,"id":373,"parentId":366,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"ssr"},"startTime":1767583946101,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6220,"timestamp":250201299,"id":374,"parentId":366,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"ssr"},"startTime":1767583946101,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":23577,"timestamp":250194069,"id":369,"parentId":361,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/app-render/dynamic-rendering.js","layer":"ssr"},"startTime":1767583946094,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3697,"timestamp":250235568,"id":375,"parentId":370,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/static-generation-bailout.js","layer":"ssr"},"startTime":1767583946136,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6469,"timestamp":250239403,"id":376,"parentId":369,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/scheduler.js","layer":"ssr"},"startTime":1767583946140,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7160,"timestamp":250240212,"id":382,"parentId":355,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"ssr"},"startTime":1767583946140,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6513,"timestamp":250241120,"id":383,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"ssr"},"startTime":1767583946141,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9218,"timestamp":250239768,"id":378,"parentId":369,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"ssr"},"startTime":1767583946140,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10302,"timestamp":250239661,"id":377,"parentId":369,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/hooks-server-context.js","layer":"ssr"},"startTime":1767583946140,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10977,"timestamp":250239905,"id":379,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/error-boundary.js","layer":"ssr"},"startTime":1767583946140,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11418,"timestamp":250239997,"id":380,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"ssr"},"startTime":1767583946140,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11768,"timestamp":250240115,"id":381,"parentId":350,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/handle-isr-error.js","layer":"ssr"},"startTime":1767583946140,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4965,"timestamp":250252687,"id":386,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/use-action-queue.js","layer":"ssr"},"startTime":1767583946153,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5760,"timestamp":250252626,"id":385,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-boundary.js","layer":"ssr"},"startTime":1767583946153,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6208,"timestamp":250252534,"id":384,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/match-segments.js","layer":"ssr"},"startTime":1767583946153,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10419,"timestamp":250268126,"id":387,"parentId":379,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/is-next-router-error.js","layer":"ssr"},"startTime":1767583946168,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10779,"timestamp":250268277,"id":388,"parentId":379,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"ssr"},"startTime":1767583946168,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4053,"timestamp":250280273,"id":389,"parentId":386,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-thenable.js","layer":"ssr"},"startTime":1767583946180,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3608,"timestamp":250284377,"id":394,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-jsx-runtime.js","layer":"ssr"},"startTime":1767583946185,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3664,"timestamp":250284582,"id":395,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react.js","layer":"ssr"},"startTime":1767583946185,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9075,"timestamp":250280485,"id":391,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/bfcache.js","layer":"ssr"},"startTime":1767583946181,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10147,"timestamp":250280396,"id":390,"parentId":385,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-error.js","layer":"ssr"},"startTime":1767583946181,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10742,"timestamp":250280564,"id":392,"parentId":379,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation-untracked.js","layer":"ssr"},"startTime":1767583946181,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12069,"timestamp":250280646,"id":393,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.js","layer":"ssr"},"startTime":1767583946181,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9206,"timestamp":250284762,"id":396,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"ssr"},"startTime":1767583946185,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":17285,"timestamp":250284858,"id":397,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"ssr"},"startTime":1767583946185,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10619,"timestamp":250295437,"id":398,"parentId":388,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"ssr"},"startTime":1767583946196,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1045,"timestamp":250312630,"id":400,"parentId":394,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/module.compiled.js","layer":"ssr"},"startTime":1767583946213,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3038,"timestamp":250312530,"id":399,"parentId":390,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"ssr"},"startTime":1767583946213,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3159,"timestamp":250312798,"id":401,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"ssr"},"startTime":1767583946213,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4098,"timestamp":250312887,"id":402,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"ssr"},"startTime":1767583946213,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4401,"timestamp":250314209,"id":403,"parentId":397,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-headers.js","layer":"ssr"},"startTime":1767583946214,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4041,"timestamp":250318763,"id":404,"parentId":379,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/nav-failure-handler.js","layer":"ssr"},"startTime":1767583946219,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5765,"timestamp":250318904,"id":406,"parentId":385,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect.js","layer":"ssr"},"startTime":1767583946219,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6692,"timestamp":250320033,"id":407,"parentId":402,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"ssr"},"startTime":1767583946220,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9688,"timestamp":250318845,"id":405,"parentId":385,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.js","layer":"ssr"},"startTime":1767583946219,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":617,"timestamp":250333633,"id":408,"parentId":354,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-dom.js","layer":"ssr"},"startTime":1767583946234,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":3494,"timestamp":250338744,"id":410,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/Header.tsx","layer":"ssr"},"startTime":1767583946239,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":3566,"timestamp":250338998,"id":412,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectList.tsx","layer":"ssr"},"startTime":1767583946239,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":4781,"timestamp":250338886,"id":411,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectModal.tsx","layer":"ssr"},"startTime":1767583946239,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":9456,"timestamp":250339123,"id":413,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/button.tsx","layer":"ssr"},"startTime":1767583946239,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":9656,"timestamp":250339224,"id":414,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/input.tsx","layer":"ssr"},"startTime":1767583946239,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":15753,"timestamp":250338055,"id":409,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/api/navigation.js","layer":"ssr"},"startTime":1767583946238,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":10698,"timestamp":250353127,"id":415,"parentId":349,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/workspace/WorkspaceLayout.tsx","layer":"ssr"},"startTime":1767583946253,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2463,"timestamp":250365392,"id":422,"parentId":355,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/app-router-context.js","layer":"ssr"},"startTime":1767583946266,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7898,"timestamp":250365049,"id":416,"parentId":397,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-call-server.js","layer":"ssr"},"startTime":1767583946265,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8622,"timestamp":250365145,"id":417,"parentId":397,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-find-source-map-url.js","layer":"ssr"},"startTime":1767583946265,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9249,"timestamp":250365203,"id":418,"parentId":397,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-build-id.js","layer":"ssr"},"startTime":1767583946265,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10159,"timestamp":250365255,"id":419,"parentId":397,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/flight-data-helpers.js","layer":"ssr"},"startTime":1767583946265,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10898,"timestamp":250365348,"id":421,"parentId":397,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/set-cache-busting-search-param.js","layer":"ssr"},"startTime":1767583946266,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13626,"timestamp":250365304,"id":420,"parentId":397,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/route-params.js","layer":"ssr"},"startTime":1767583946265,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10734,"timestamp":250400635,"id":423,"parentId":420,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js","layer":"ssr"},"startTime":1767583946301,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":5926,"timestamp":250407791,"id":425,"parentId":348,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/api.ts","layer":"ssr"},"startTime":1767583946308,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":9030,"timestamp":250407578,"id":424,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useProjectStore.ts","layer":"ssr"},"startTime":1767583946308,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10647,"timestamp":250432090,"id":426,"parentId":405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.react-server.js","layer":"ssr"},"startTime":1767583946332,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11171,"timestamp":250432240,"id":427,"parentId":405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unrecognized-action-error.js","layer":"ssr"},"startTime":1767583946332,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11813,"timestamp":250432333,"id":428,"parentId":405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/bailout-to-client-rendering.js","layer":"ssr"},"startTime":1767583946333,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12261,"timestamp":250432419,"id":429,"parentId":404,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"ssr"},"startTime":1767583946333,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12633,"timestamp":250432503,"id":430,"parentId":405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"ssr"},"startTime":1767583946333,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6313,"timestamp":250446032,"id":431,"parentId":397,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/ssr/react-server-dom-webpack-client.js","layer":"ssr"},"startTime":1767583946346,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1426,"timestamp":250453689,"id":432,"parentId":392,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/hooks-client-context.js","layer":"ssr"},"startTime":1767583946354,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3940,"timestamp":250454278,"id":434,"parentId":421,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/cache-busting-search-param.js","layer":"ssr"},"startTime":1767583946354,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":5358,"timestamp":250453889,"id":433,"parentId":347,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/index.ts","layer":"ssr"},"startTime":1767583946354,"traceId":"8482a19cb410207d"}]
5
+ [{"name":"build-module-tsx","duration":8715,"timestamp":250459699,"id":435,"parentId":410,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/LanguageSwitcher.tsx","layer":"ssr"},"startTime":1767583946360,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":10321,"timestamp":250459895,"id":436,"parentId":412,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectCard.tsx","layer":"ssr"},"startTime":1767583946360,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":10538,"timestamp":250460199,"id":437,"parentId":412,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectCard.tsx","layer":"ssr"},"startTime":1767583946360,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":33946,"timestamp":250495205,"id":444,"parentId":426,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/not-found.js","layer":"ssr"},"startTime":1767583946395,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":34334,"timestamp":250495324,"id":445,"parentId":426,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/forbidden.js","layer":"ssr"},"startTime":1767583946396,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":34717,"timestamp":250495408,"id":446,"parentId":426,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unauthorized.js","layer":"ssr"},"startTime":1767583946396,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":34963,"timestamp":250495491,"id":447,"parentId":426,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unstable-rethrow.js","layer":"ssr"},"startTime":1767583946396,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":64296,"timestamp":250485963,"id":438,"parentId":348,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Check,FolderOpen,Loader2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946386,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":64397,"timestamp":250486122,"id":439,"parentId":349,"tags":{"name":"__barrel_optimize__?names=AlertCircle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946386,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":64568,"timestamp":250486198,"id":440,"parentId":410,"tags":{"name":"__barrel_optimize__?names=ArrowLeft,Settings!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946386,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":68142,"timestamp":250486444,"id":443,"parentId":437,"tags":{"name":"__barrel_optimize__?names=Plus,Sparkles!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946387,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":68520,"timestamp":250486340,"id":442,"parentId":436,"tags":{"name":"__barrel_optimize__?names=Globe,Server,Smartphone,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946387,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":68976,"timestamp":250486256,"id":441,"parentId":415,"tags":{"name":"__barrel_optimize__?names=Database,Eye,FlaskConical,FolderTree,GitBranch,Settings2,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946386,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":2925,"timestamp":250559489,"id":448,"parentId":411,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/dialog.tsx","layer":"ssr"},"startTime":1767583946460,"traceId":"8482a19cb410207d"},{"name":"build-module-json","duration":1263,"timestamp":250567447,"id":452,"parentId":433,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/en.json","layer":"ssr"},"startTime":1767583946468,"traceId":"8482a19cb410207d"},{"name":"build-module-json","duration":779,"timestamp":250568067,"id":453,"parentId":433,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/ko.json","layer":"ssr"},"startTime":1767583946468,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":640,"timestamp":250573186,"id":454,"parentId":405,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/server-inserted-html.js","layer":"ssr"},"startTime":1767583946473,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7177,"timestamp":250567356,"id":451,"parentId":434,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/hash.js","layer":"ssr"},"startTime":1767583946468,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":8908,"timestamp":250567161,"id":450,"parentId":413,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/utils.ts","layer":"ssr"},"startTime":1767583946467,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14448,"timestamp":250562587,"id":449,"parentId":410,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/api/image.js","layer":"ssr"},"startTime":1767583946463,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":2910,"timestamp":250583320,"id":456,"parentId":415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ChatPanel.tsx","layer":"ssr"},"startTime":1767583946484,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":4366,"timestamp":250585087,"id":457,"parentId":415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileExplorer.tsx","layer":"ssr"},"startTime":1767583946485,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":4958,"timestamp":250586583,"id":458,"parentId":415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileViewer.tsx","layer":"ssr"},"startTime":1767583946487,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":17838,"timestamp":250576289,"id":455,"parentId":410,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-dir/link.js","layer":"ssr"},"startTime":1767583946476,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":18776,"timestamp":250586710,"id":459,"parentId":415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/database/DatabasePanel.tsx","layer":"ssr"},"startTime":1767583946487,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":19309,"timestamp":250610481,"id":462,"parentId":415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/env/EnvPanel.tsx","layer":"ssr"},"startTime":1767583946511,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":25475,"timestamp":250610217,"id":461,"parentId":415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/checkpoint/CheckpointPanel.tsx","layer":"ssr"},"startTime":1767583946510,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":29603,"timestamp":250609954,"id":460,"parentId":415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/testing/TestRunner.tsx","layer":"ssr"},"startTime":1767583946510,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":6882,"timestamp":250643222,"id":465,"parentId":413,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/class-variance-authority@0.7.1/node_modules/class-variance-authority/dist/index.mjs","layer":"ssr"},"startTime":1767583946543,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14064,"timestamp":250643119,"id":464,"parentId":447,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unstable-rethrow.server.js","layer":"ssr"},"startTime":1767583946543,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":22845,"timestamp":250643402,"id":466,"parentId":415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/PreviewPanel.tsx","layer":"ssr"},"startTime":1767583946544,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":23554,"timestamp":250642930,"id":463,"parentId":456,"tags":{"name":"__barrel_optimize__?names=MessageSquarePlus!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946543,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":33875,"timestamp":250668781,"id":468,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"ssr"},"startTime":1767583946569,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":35237,"timestamp":250668634,"id":467,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"ssr"},"startTime":1767583946569,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":36127,"timestamp":250668891,"id":469,"parentId":457,"tags":{"name":"__barrel_optimize__?names=ChevronDown,ChevronRight,File,Folder,FolderOpen,RefreshCw!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946569,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":36210,"timestamp":250668999,"id":470,"parentId":458,"tags":{"name":"__barrel_optimize__?names=Check,Copy,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946569,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13286,"timestamp":250707938,"id":471,"parentId":459,"tags":{"name":"__barrel_optimize__?names=AlertCircle,ChevronLeft,ChevronRight,Database,Play,RefreshCw,Table,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946608,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2045,"timestamp":250721589,"id":472,"parentId":464,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/lib/router-utils/is-postpone.js","layer":"ssr"},"startTime":1767583946622,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6865,"timestamp":250721824,"id":473,"parentId":462,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Eye,EyeOff,FileText,Plus,RefreshCw,Save,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946622,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7049,"timestamp":250721924,"id":474,"parentId":461,"tags":{"name":"__barrel_optimize__?names=AlertCircle,ChevronDown,ChevronRight,Clock,FileText,GitBranch,Plus,RefreshCw,RotateCcw!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946622,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9186,"timestamp":250722031,"id":475,"parentId":460,"tags":{"name":"__barrel_optimize__?names=AlertCircle,CheckCircle,Clock,FlaskConical,Play,Plus,RefreshCw,Trash2,XCircle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946622,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9580,"timestamp":250727254,"id":476,"parentId":468,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"ssr"},"startTime":1767583946627,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10127,"timestamp":250727372,"id":477,"parentId":466,"tags":{"name":"__barrel_optimize__?names=ExternalLink,Loader2,Monitor,Package,Play,RefreshCw,RotateCcw,Smartphone,Square,Tablet,Terminal,Zap!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946628,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":7229,"timestamp":250745274,"id":479,"parentId":433,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/middleware.mjs","layer":"ssr"},"startTime":1767583946645,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":9396,"timestamp":250745086,"id":478,"parentId":436,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/card.tsx","layer":"ssr"},"startTime":1767583946645,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9444,"timestamp":250745425,"id":480,"parentId":438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-alert.js","layer":"ssr"},"startTime":1767583946646,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9728,"timestamp":250745507,"id":481,"parentId":438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/check.js","layer":"ssr"},"startTime":1767583946646,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4911,"timestamp":250755619,"id":483,"parentId":438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-open.js","layer":"ssr"},"startTime":1767583946656,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5327,"timestamp":250755494,"id":482,"parentId":438,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/loader-circle.js","layer":"ssr"},"startTime":1767583946656,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4114,"timestamp":250764790,"id":484,"parentId":440,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-left.js","layer":"ssr"},"startTime":1767583946665,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4294,"timestamp":250764911,"id":485,"parentId":440,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings.js","layer":"ssr"},"startTime":1767583946665,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4466,"timestamp":250765022,"id":486,"parentId":443,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/plus.js","layer":"ssr"},"startTime":1767583946665,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":1253,"timestamp":250771428,"id":492,"parentId":424,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/index.mjs","layer":"ssr"},"startTime":1767583946672,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3784,"timestamp":250769928,"id":487,"parentId":442,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/globe.js","layer":"ssr"},"startTime":1767583946670,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3884,"timestamp":250770067,"id":488,"parentId":442,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/server.js","layer":"ssr"},"startTime":1767583946670,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4050,"timestamp":250770154,"id":489,"parentId":442,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/trash-2.js","layer":"ssr"},"startTime":1767583946670,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4177,"timestamp":250770240,"id":490,"parentId":442,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/smartphone.js","layer":"ssr"},"startTime":1767583946670,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4820,"timestamp":250770327,"id":491,"parentId":443,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sparkles.js","layer":"ssr"},"startTime":1767583946671,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3693,"timestamp":250771663,"id":493,"parentId":441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/database.js","layer":"ssr"},"startTime":1767583946672,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3807,"timestamp":250771780,"id":494,"parentId":441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eye.js","layer":"ssr"},"startTime":1767583946672,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1807,"timestamp":250777594,"id":495,"parentId":441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flask-conical.js","layer":"ssr"},"startTime":1767583946678,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1939,"timestamp":250777690,"id":496,"parentId":441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-tree.js","layer":"ssr"},"startTime":1767583946678,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3105,"timestamp":250777750,"id":497,"parentId":441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-branch.js","layer":"ssr"},"startTime":1767583946678,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3384,"timestamp":250779717,"id":498,"parentId":441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/x.js","layer":"ssr"},"startTime":1767583946680,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4115,"timestamp":250779862,"id":500,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/add-base-path.js","layer":"ssr"},"startTime":1767583946680,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4977,"timestamp":250779804,"id":499,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/use-merged-ref.js","layer":"ssr"},"startTime":1767583946680,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5242,"timestamp":250779918,"id":501,"parentId":441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings-2.js","layer":"ssr"},"startTime":1767583946680,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6319,"timestamp":250779970,"id":502,"parentId":449,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-external.js","layer":"ssr"},"startTime":1767583946680,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":15488,"timestamp":250781210,"id":503,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/links.js","layer":"ssr"},"startTime":1767583946681,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":18586,"timestamp":250781319,"id":504,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-instance.js","layer":"ssr"},"startTime":1767583946682,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5201,"timestamp":250802160,"id":506,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/error-once.js","layer":"ssr"},"startTime":1767583946702,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5678,"timestamp":250802261,"id":507,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"ssr"},"startTime":1767583946702,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11186,"timestamp":250801905,"id":505,"parentId":455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/segment-cache.js","layer":"ssr"},"startTime":1767583946702,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4620,"timestamp":250813283,"id":508,"parentId":500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"ssr"},"startTime":1767583946713,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":5236,"timestamp":250813388,"id":509,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageList.tsx","layer":"ssr"},"startTime":1767583946714,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5220,"timestamp":250813730,"id":511,"parentId":463,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-plus.js","layer":"ssr"},"startTime":1767583946714,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6975,"timestamp":250813832,"id":512,"parentId":469,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-down.js","layer":"ssr"},"startTime":1767583946714,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7189,"timestamp":250813928,"id":513,"parentId":469,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-right.js","layer":"ssr"},"startTime":1767583946714,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":9489,"timestamp":250813562,"id":510,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageInput.tsx","layer":"ssr"},"startTime":1767583946714,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8184,"timestamp":250824229,"id":515,"parentId":469,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file.js","layer":"ssr"},"startTime":1767583946724,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8584,"timestamp":250824108,"id":514,"parentId":469,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder.js","layer":"ssr"},"startTime":1767583946724,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7933,"timestamp":250837031,"id":516,"parentId":508,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"ssr"},"startTime":1767583946737,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4245,"timestamp":250841551,"id":518,"parentId":469,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/refresh-cw.js","layer":"ssr"},"startTime":1767583946742,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4464,"timestamp":250841658,"id":519,"parentId":470,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/copy.js","layer":"ssr"},"startTime":1767583946742,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4646,"timestamp":250841756,"id":520,"parentId":471,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-left.js","layer":"ssr"},"startTime":1767583946742,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4815,"timestamp":250841853,"id":521,"parentId":471,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/play.js","layer":"ssr"},"startTime":1767583946742,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5072,"timestamp":250841947,"id":522,"parentId":471,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/table.js","layer":"ssr"},"startTime":1767583946742,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5055,"timestamp":250842247,"id":525,"parentId":473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/save.js","layer":"ssr"},"startTime":1767583946742,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5431,"timestamp":250842169,"id":524,"parentId":473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-text.js","layer":"ssr"},"startTime":1767583946742,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7786,"timestamp":250842078,"id":523,"parentId":473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eye-off.js","layer":"ssr"},"startTime":1767583946742,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8707,"timestamp":250841427,"id":517,"parentId":510,"tags":{"name":"__barrel_optimize__?names=Clock,Paperclip,Send!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946742,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3925,"timestamp":250854278,"id":526,"parentId":474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rotate-ccw.js","layer":"ssr"},"startTime":1767583946754,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4075,"timestamp":250854406,"id":527,"parentId":474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock.js","layer":"ssr"},"startTime":1767583946755,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":7933,"timestamp":250858667,"id":528,"parentId":466,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ConsoleViewer.tsx","layer":"ssr"},"startTime":1767583946759,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7833,"timestamp":250859088,"id":530,"parentId":475,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-x.js","layer":"ssr"},"startTime":1767583946759,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7954,"timestamp":250859280,"id":532,"parentId":477,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/package.js","layer":"ssr"},"startTime":1767583946759,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":10105,"timestamp":250858869,"id":529,"parentId":466,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ErrorOverlay.tsx","layer":"ssr"},"startTime":1767583946759,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9904,"timestamp":250859380,"id":533,"parentId":477,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/external-link.js","layer":"ssr"},"startTime":1767583946760,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10111,"timestamp":250859471,"id":534,"parentId":477,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square.js","layer":"ssr"},"startTime":1767583946760,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10411,"timestamp":250859557,"id":535,"parentId":477,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tablet.js","layer":"ssr"},"startTime":1767583946760,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8820,"timestamp":250861908,"id":537,"parentId":477,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/terminal.js","layer":"ssr"},"startTime":1767583946762,"traceId":"8482a19cb410207d"}]
6
+ [{"name":"build-module-js","duration":1163,"timestamp":251330636,"id":637,"parentId":633,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/lib/index.js","layer":"ssr"},"startTime":1767583947231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3231,"timestamp":251330824,"id":638,"parentId":634,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/lib/index.js","layer":"ssr"},"startTime":1767583947231,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":6744,"timestamp":251351065,"id":639,"parentId":628,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-radio-group@1.3.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@1_cjtgf3xmcqtfujhoownb73bnbi/node_modules/@radix-ui/react-radio-group/dist/index.mjs","layer":"ssr"},"startTime":1767583947251,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":4115,"timestamp":251362715,"id":641,"parentId":632,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-label@2.1.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2.7__ggc7d2jno3gcorzflrswkya7gm/node_modules/@radix-ui/react-label/dist/index.mjs","layer":"ssr"},"startTime":1767583947263,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":7009,"timestamp":251362494,"id":640,"parentId":629,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-checkbox@1.3.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2_bewiq6cjocmach7p37abfyy75a/node_modules/@radix-ui/react-checkbox/dist/index.mjs","layer":"ssr"},"startTime":1767583947263,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":678,"timestamp":251399787,"id":642,"parentId":637,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/index.js","layer":"ssr"},"startTime":1767583947300,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1079,"timestamp":251413231,"id":643,"parentId":637,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm@3.0.0/node_modules/micromark-extension-gfm/index.js","layer":"ssr"},"startTime":1767583947313,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":517,"timestamp":251415652,"id":644,"parentId":638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-to-jsx-runtime@2.3.6/node_modules/hast-util-to-jsx-runtime/index.js","layer":"ssr"},"startTime":1767583947316,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":615,"timestamp":251418589,"id":645,"parentId":638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/index.js","layer":"ssr"},"startTime":1767583947319,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":651,"timestamp":251430138,"id":646,"parentId":638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/html-url-attributes@3.0.1/node_modules/html-url-attributes/index.js","layer":"ssr"},"startTime":1767583947330,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":572,"timestamp":251434894,"id":647,"parentId":638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.js","layer":"ssr"},"startTime":1767583947335,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":416,"timestamp":251440169,"id":648,"parentId":638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit@5.0.0/node_modules/unist-util-visit/index.js","layer":"ssr"},"startTime":1767583947340,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":407,"timestamp":251441516,"id":649,"parentId":638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/index.js","layer":"ssr"},"startTime":1767583947342,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":523,"timestamp":251447367,"id":650,"parentId":638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.js","layer":"ssr"},"startTime":1767583947348,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":711,"timestamp":251452532,"id":651,"parentId":638,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/devlop@1.1.0/node_modules/devlop/lib/default.js","layer":"ssr"},"startTime":1767583947353,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":726,"timestamp":251487227,"id":652,"parentId":642,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/lib/index.js","layer":"ssr"},"startTime":1767583947387,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3610,"timestamp":251490185,"id":653,"parentId":644,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-to-jsx-runtime@2.3.6/node_modules/hast-util-to-jsx-runtime/lib/index.js","layer":"ssr"},"startTime":1767583947390,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":914,"timestamp":251496645,"id":654,"parentId":646,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/html-url-attributes@3.0.1/node_modules/html-url-attributes/lib/index.js","layer":"ssr"},"startTime":1767583947397,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1127,"timestamp":251496796,"id":655,"parentId":645,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/lib/index.js","layer":"ssr"},"startTime":1767583947397,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2927,"timestamp":251499497,"id":656,"parentId":647,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/index.js","layer":"ssr"},"startTime":1767583947400,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1018,"timestamp":251503520,"id":657,"parentId":648,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit@5.0.0/node_modules/unist-util-visit/lib/index.js","layer":"ssr"},"startTime":1767583947404,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":639,"timestamp":251505130,"id":658,"parentId":649,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/lib/index.js","layer":"ssr"},"startTime":1767583947405,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":906,"timestamp":251536391,"id":659,"parentId":643,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-combine-extensions@2.0.1/node_modules/micromark-util-combine-extensions/index.js","layer":"ssr"},"startTime":1767583947437,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":955,"timestamp":251541318,"id":660,"parentId":643,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/index.js","layer":"ssr"},"startTime":1767583947442,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2975,"timestamp":251541515,"id":661,"parentId":650,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/index.js","layer":"ssr"},"startTime":1767583947442,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":499,"timestamp":251551475,"id":662,"parentId":643,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/index.js","layer":"ssr"},"startTime":1767583947452,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":484,"timestamp":251561158,"id":663,"parentId":643,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/index.js","layer":"ssr"},"startTime":1767583947461,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":470,"timestamp":251569228,"id":664,"parentId":643,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/index.js","layer":"ssr"},"startTime":1767583947469,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":1590,"timestamp":251574590,"id":665,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-compose-refs@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-compose-refs/dist/index.mjs","layer":"ssr"},"startTime":1767583947475,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1020,"timestamp":251577141,"id":666,"parentId":643,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-tagfilter@2.0.0/node_modules/micromark-extension-gfm-tagfilter/index.js","layer":"ssr"},"startTime":1767583947477,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":1413,"timestamp":251577275,"id":667,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+primitive@1.1.3/node_modules/@radix-ui/primitive/dist/index.mjs","layer":"ssr"},"startTime":1767583947477,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":2526,"timestamp":251577378,"id":668,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-context@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-context/dist/index.mjs","layer":"ssr"},"startTime":1767583947478,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":9878,"timestamp":251577470,"id":669,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-controllable-state@1.2.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-controllable-state/dist/index.mjs","layer":"ssr"},"startTime":1767583947478,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":10410,"timestamp":251577567,"id":670,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-primitive@2.1.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._vrijsupjqixawruberrfb56pbm/node_modules/@radix-ui/react-primitive/dist/index.mjs","layer":"ssr"},"startTime":1767583947478,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":915,"timestamp":251598699,"id":671,"parentId":643,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/index.js","layer":"ssr"},"startTime":1767583947499,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1078,"timestamp":251598911,"id":672,"parentId":656,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.js","layer":"ssr"},"startTime":1767583947499,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":1043,"timestamp":251607703,"id":673,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-direction@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-direction/dist/index.mjs","layer":"ssr"},"startTime":1767583947508,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":1390,"timestamp":251613220,"id":675,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-previous@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-previous/dist/index.mjs","layer":"ssr"},"startTime":1767583947513,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1477,"timestamp":251613407,"id":676,"parentId":645,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/index.js","layer":"ssr"},"startTime":1767583947514,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":19650,"timestamp":251609957,"id":674,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-roving-focus@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react_olorlwzqifzjwjsjwfg7df3ffe/node_modules/@radix-ui/react-roving-focus/dist/index.mjs","layer":"ssr"},"startTime":1767583947510,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":2013,"timestamp":251646268,"id":677,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-size@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-size/dist/index.mjs","layer":"ssr"},"startTime":1767583947546,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":5299,"timestamp":251646764,"id":679,"parentId":641,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-primitive@2.1.4_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._4sfldbbhvd3xapj4euqmtg5wga/node_modules/@radix-ui/react-primitive/dist/index.mjs","layer":"ssr"},"startTime":1767583947547,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":10161,"timestamp":251646549,"id":678,"parentId":639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-presence@1.1.5_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2_g7nvzcflnhogkdp32witcuayfy/node_modules/@radix-ui/react-presence/dist/index.mjs","layer":"ssr"},"startTime":1767583947547,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":758,"timestamp":251723286,"id":680,"parentId":652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/index.js","layer":"ssr"},"startTime":1767583947623,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":626,"timestamp":251732261,"id":681,"parentId":652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-autolink-literal@2.0.1/node_modules/mdast-util-gfm-autolink-literal/index.js","layer":"ssr"},"startTime":1767583947632,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":894,"timestamp":251741447,"id":682,"parentId":652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-strikethrough@2.0.0/node_modules/mdast-util-gfm-strikethrough/index.js","layer":"ssr"},"startTime":1767583947642,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":857,"timestamp":251741672,"id":683,"parentId":652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/index.js","layer":"ssr"},"startTime":1767583947642,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":360,"timestamp":251751634,"id":684,"parentId":652,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-task-list-item@2.0.0/node_modules/mdast-util-gfm-task-list-item/index.js","layer":"ssr"},"startTime":1767583947652,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1113,"timestamp":251762450,"id":685,"parentId":653,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/comma-separated-tokens@2.0.3/node_modules/comma-separated-tokens/index.js","layer":"ssr"},"startTime":1767583947663,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":533,"timestamp":251765424,"id":686,"parentId":653,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/estree-util-is-identifier-name@3.0.0/node_modules/estree-util-is-identifier-name/index.js","layer":"ssr"},"startTime":1767583947666,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":523,"timestamp":251770034,"id":687,"parentId":653,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-whitespace@3.0.0/node_modules/hast-util-whitespace/index.js","layer":"ssr"},"startTime":1767583947670,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":899,"timestamp":251774092,"id":688,"parentId":653,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/index.js","layer":"ssr"},"startTime":1767583947674,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":716,"timestamp":251780492,"id":689,"parentId":653,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/space-separated-tokens@2.0.2/node_modules/space-separated-tokens/index.js","layer":"ssr"},"startTime":1767583947681,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":557,"timestamp":251784346,"id":690,"parentId":653,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-position@5.0.0/node_modules/unist-util-position/index.js","layer":"ssr"},"startTime":1767583947685,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":537,"timestamp":251789779,"id":691,"parentId":653,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/index.js","layer":"ssr"},"startTime":1767583947690,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":996,"timestamp":251791894,"id":692,"parentId":653,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-js@1.1.21/node_modules/style-to-js/cjs/index.js","layer":"ssr"},"startTime":1767583947692,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":569,"timestamp":251802302,"id":693,"parentId":661,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minpath.js","layer":"ssr"},"startTime":1767583947702,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":957,"timestamp":251803685,"id":694,"parentId":661,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minproc.js","layer":"ssr"},"startTime":1767583947704,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":951,"timestamp":251803888,"id":695,"parentId":661,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.js","layer":"ssr"},"startTime":1767583947704,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":835,"timestamp":251806323,"id":696,"parentId":656,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/bail@2.0.2/node_modules/bail/index.js","layer":"ssr"},"startTime":1767583947707,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4565,"timestamp":251808866,"id":697,"parentId":660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js","layer":"ssr"},"startTime":1767583947709,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4843,"timestamp":251809084,"id":698,"parentId":660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/lib/html.js","layer":"ssr"},"startTime":1767583947709,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3659,"timestamp":251817602,"id":699,"parentId":662,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/syntax.js","layer":"ssr"},"startTime":1767583947718,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5076,"timestamp":251817814,"id":700,"parentId":662,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/html.js","layer":"ssr"},"startTime":1767583947718,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1513,"timestamp":251824109,"id":701,"parentId":656,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/is-plain-obj@4.1.0/node_modules/is-plain-obj/index.js","layer":"ssr"},"startTime":1767583947724,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1583,"timestamp":251824293,"id":702,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/html.js","layer":"ssr"},"startTime":1767583947724,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2712,"timestamp":251824459,"id":703,"parentId":663,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js","layer":"ssr"},"startTime":1767583947725,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":805,"timestamp":251830568,"id":704,"parentId":656,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.js","layer":"ssr"},"startTime":1767583947731,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1786,"timestamp":251833843,"id":705,"parentId":664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/html.js","layer":"ssr"},"startTime":1767583947734,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5346,"timestamp":251834073,"id":706,"parentId":664,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/syntax.js","layer":"ssr"},"startTime":1767583947734,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":791,"timestamp":251846207,"id":707,"parentId":666,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-tagfilter@2.0.0/node_modules/micromark-extension-gfm-tagfilter/lib/index.js","layer":"ssr"},"startTime":1767583947746,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1174,"timestamp":251847904,"id":708,"parentId":656,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/extend@3.0.2/node_modules/extend/index.js","layer":"ssr"},"startTime":1767583947748,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":813,"timestamp":251852388,"id":709,"parentId":657,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/index.js","layer":"ssr"},"startTime":1767583947753,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":850,"timestamp":251852578,"id":710,"parentId":671,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/lib/html.js","layer":"ssr"},"startTime":1767583947753,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1043,"timestamp":251855578,"id":711,"parentId":671,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js","layer":"ssr"},"startTime":1767583947756,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1441,"timestamp":251857306,"id":712,"parentId":658,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/index.js","layer":"ssr"},"startTime":1767583947757,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1729,"timestamp":251857489,"id":713,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/index.js","layer":"ssr"},"startTime":1767583947758,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2767,"timestamp":251857649,"id":714,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/footer.js","layer":"ssr"},"startTime":1767583947758,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3229,"timestamp":251857809,"id":715,"parentId":676,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/index.js","layer":"ssr"},"startTime":1767583947758,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":36,"timestamp":251879487,"id":716,"parentId":693,"tags":{"name":"node:path","layer":null},"startTime":1767583947780,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":11,"timestamp":251879539,"id":717,"parentId":694,"tags":{"name":"node:process","layer":null},"startTime":1767583947780,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":7,"timestamp":251879558,"id":718,"parentId":695,"tags":{"name":"node:url","layer":null},"startTime":1767583947780,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":995,"timestamp":251897457,"id":719,"parentId":659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-chunked@2.0.1/node_modules/micromark-util-chunked/index.js","layer":"ssr"},"startTime":1767583947798,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1672,"timestamp":251921760,"id":720,"parentId":680,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/lib/index.js","layer":"ssr"},"startTime":1767583947822,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4393,"timestamp":251930769,"id":721,"parentId":681,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-autolink-literal@2.0.1/node_modules/mdast-util-gfm-autolink-literal/lib/index.js","layer":"ssr"},"startTime":1767583947831,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1026,"timestamp":251944617,"id":722,"parentId":682,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-strikethrough@2.0.0/node_modules/mdast-util-gfm-strikethrough/lib/index.js","layer":"ssr"},"startTime":1767583947845,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2270,"timestamp":251944766,"id":723,"parentId":683,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/lib/index.js","layer":"ssr"},"startTime":1767583947845,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":911,"timestamp":251953780,"id":724,"parentId":684,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-task-list-item@2.0.0/node_modules/mdast-util-gfm-task-list-item/lib/index.js","layer":"ssr"},"startTime":1767583947854,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4006,"timestamp":251956181,"id":725,"parentId":686,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/estree-util-is-identifier-name@3.0.0/node_modules/estree-util-is-identifier-name/lib/index.js","layer":"ssr"},"startTime":1767583947856,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":686,"timestamp":251961452,"id":726,"parentId":687,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-whitespace@3.0.0/node_modules/hast-util-whitespace/lib/index.js","layer":"ssr"},"startTime":1767583947862,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":893,"timestamp":251961583,"id":727,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/aria.js","layer":"ssr"},"startTime":1767583947862,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1620,"timestamp":251964271,"id":728,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/html.js","layer":"ssr"},"startTime":1767583947864,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3073,"timestamp":251964430,"id":729,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/svg.js","layer":"ssr"},"startTime":1767583947865,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1334,"timestamp":251969347,"id":730,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xlink.js","layer":"ssr"},"startTime":1767583947870,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1365,"timestamp":251969550,"id":731,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xmlns.js","layer":"ssr"},"startTime":1767583947870,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2355,"timestamp":251969724,"id":732,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xml.js","layer":"ssr"},"startTime":1767583947870,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":858,"timestamp":251974056,"id":733,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/hast-to-react.js","layer":"ssr"},"startTime":1767583947874,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1371,"timestamp":251974255,"id":734,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/find.js","layer":"ssr"},"startTime":1767583947874,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":721,"timestamp":251976402,"id":735,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/normalize.js","layer":"ssr"},"startTime":1767583947877,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":831,"timestamp":251976535,"id":736,"parentId":688,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/merge.js","layer":"ssr"},"startTime":1767583947877,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":655,"timestamp":251981667,"id":737,"parentId":695,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.shared.js","layer":"ssr"},"startTime":1767583947882,"traceId":"8482a19cb410207d"}]
7
+ [{"name":"build-module-js","duration":834,"timestamp":251981807,"id":738,"parentId":690,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-position@5.0.0/node_modules/unist-util-position/lib/index.js","layer":"ssr"},"startTime":1767583947882,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1247,"timestamp":251984168,"id":739,"parentId":692,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-js@1.1.21/node_modules/style-to-js/cjs/utilities.js","layer":"ssr"},"startTime":1767583947884,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1850,"timestamp":251984388,"id":740,"parentId":691,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/lib/index.js","layer":"ssr"},"startTime":1767583947885,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1143,"timestamp":251993509,"id":741,"parentId":706,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/edit-map.js","layer":"ssr"},"startTime":1767583947894,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1257,"timestamp":251993669,"id":742,"parentId":706,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/infer.js","layer":"ssr"},"startTime":1767583947894,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2091,"timestamp":251996040,"id":743,"parentId":713,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/state.js","layer":"ssr"},"startTime":1767583947896,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2643,"timestamp":251996271,"id":744,"parentId":704,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.js","layer":"ssr"},"startTime":1767583947896,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1058,"timestamp":252000667,"id":745,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js","layer":"ssr"},"startTime":1767583947901,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1163,"timestamp":252000836,"id":746,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/code.js","layer":"ssr"},"startTime":1767583947901,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1246,"timestamp":252000943,"id":747,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/break.js","layer":"ssr"},"startTime":1767583947901,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":862,"timestamp":252003712,"id":748,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/delete.js","layer":"ssr"},"startTime":1767583947904,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":912,"timestamp":252003899,"id":749,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js","layer":"ssr"},"startTime":1767583947904,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1173,"timestamp":252005594,"id":750,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/html.js","layer":"ssr"},"startTime":1767583947906,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4352,"timestamp":252005782,"id":751,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js","layer":"ssr"},"startTime":1767583947906,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4417,"timestamp":252005944,"id":752,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/heading.js","layer":"ssr"},"startTime":1767583947906,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1088,"timestamp":252011174,"id":753,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js","layer":"ssr"},"startTime":1767583947911,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1187,"timestamp":252011378,"id":754,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/image.js","layer":"ssr"},"startTime":1767583947912,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1378,"timestamp":252017735,"id":755,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js","layer":"ssr"},"startTime":1767583947918,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1574,"timestamp":252017925,"id":756,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js","layer":"ssr"},"startTime":1767583947918,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1677,"timestamp":252018124,"id":757,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/link.js","layer":"ssr"},"startTime":1767583947918,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1130,"timestamp":252023815,"id":758,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/list.js","layer":"ssr"},"startTime":1767583947924,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1199,"timestamp":252023942,"id":759,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/root.js","layer":"ssr"},"startTime":1767583947924,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1222,"timestamp":252024069,"id":760,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/strong.js","layer":"ssr"},"startTime":1767583947924,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1261,"timestamp":252024173,"id":761,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js","layer":"ssr"},"startTime":1767583947924,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1604,"timestamp":252024260,"id":762,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/list-item.js","layer":"ssr"},"startTime":1767583947924,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1166,"timestamp":252028986,"id":763,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table.js","layer":"ssr"},"startTime":1767583947929,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1382,"timestamp":252029221,"id":764,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table-row.js","layer":"ssr"},"startTime":1767583947929,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1297,"timestamp":252031102,"id":765,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js","layer":"ssr"},"startTime":1767583947931,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1369,"timestamp":252031291,"id":766,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/text.js","layer":"ssr"},"startTime":1767583947931,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1376,"timestamp":252031487,"id":767,"parentId":715,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js","layer":"ssr"},"startTime":1767583947932,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1657,"timestamp":252037584,"id":768,"parentId":709,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/lib/index.js","layer":"ssr"},"startTime":1767583947938,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5036,"timestamp":252037769,"id":769,"parentId":712,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/lib/index.js","layer":"ssr"},"startTime":1767583947938,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1482,"timestamp":252063416,"id":770,"parentId":697,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-character@2.1.1/node_modules/micromark-util-character/index.js","layer":"ssr"},"startTime":1767583947964,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1143,"timestamp":252070947,"id":771,"parentId":698,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-sanitize-uri@2.0.1/node_modules/micromark-util-sanitize-uri/index.js","layer":"ssr"},"startTime":1767583947971,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":943,"timestamp":252082815,"id":772,"parentId":699,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/index.js","layer":"ssr"},"startTime":1767583947983,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":811,"timestamp":252095749,"id":773,"parentId":699,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-space@2.0.1/node_modules/micromark-factory-space/index.js","layer":"ssr"},"startTime":1767583947996,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":760,"timestamp":252109072,"id":774,"parentId":699,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-normalize-identifier@2.0.1/node_modules/micromark-util-normalize-identifier/index.js","layer":"ssr"},"startTime":1767583948009,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":707,"timestamp":252114376,"id":775,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-classify-character@2.0.1/node_modules/micromark-util-classify-character/index.js","layer":"ssr"},"startTime":1767583948015,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":634,"timestamp":252119448,"id":776,"parentId":703,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-resolve-all@2.0.1/node_modules/micromark-util-resolve-all/index.js","layer":"ssr"},"startTime":1767583948020,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":954,"timestamp":252127515,"id":777,"parentId":692,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-object@1.0.14/node_modules/style-to-object/cjs/index.js","layer":"ssr"},"startTime":1767583948028,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":847,"timestamp":252133942,"id":778,"parentId":669,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-effect-event@0.0.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-effect-event/dist/index.mjs","layer":"ssr"},"startTime":1767583948034,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":1852,"timestamp":252138267,"id":779,"parentId":670,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-slot@1.2.3_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs","layer":"ssr"},"startTime":1767583948038,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":672,"timestamp":252146317,"id":780,"parentId":669,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-layout-effect@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-layout-effect/dist/index.mjs","layer":"ssr"},"startTime":1767583948047,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":868,"timestamp":252153885,"id":782,"parentId":674,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-id@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-id/dist/index.mjs","layer":"ssr"},"startTime":1767583948054,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":12253,"timestamp":252151125,"id":781,"parentId":674,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-collection@1.1.7_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19_3vqfgunzp4tkkuqnqgefg7qsai/node_modules/@radix-ui/react-collection/dist/index.mjs","layer":"ssr"},"startTime":1767583948051,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":2751,"timestamp":252165439,"id":783,"parentId":679,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-slot@1.2.4_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs","layer":"ssr"},"startTime":1767583948066,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3007,"timestamp":252165629,"id":784,"parentId":727,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/types.js","layer":"ssr"},"startTime":1767583948066,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3318,"timestamp":252165800,"id":785,"parentId":727,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/create.js","layer":"ssr"},"startTime":1767583948066,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1188,"timestamp":252170557,"id":786,"parentId":728,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-insensitive-transform.js","layer":"ssr"},"startTime":1767583948071,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1194,"timestamp":252170759,"id":787,"parentId":729,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-sensitive-transform.js","layer":"ssr"},"startTime":1767583948071,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":872,"timestamp":252174783,"id":788,"parentId":734,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/info.js","layer":"ssr"},"startTime":1767583948075,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1156,"timestamp":252176064,"id":789,"parentId":734,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/defined-info.js","layer":"ssr"},"startTime":1767583948076,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1251,"timestamp":252176259,"id":790,"parentId":736,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/schema.js","layer":"ssr"},"startTime":1767583948076,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":543,"timestamp":252187441,"id":791,"parentId":674,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-callback-ref@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs","layer":"ssr"},"startTime":1767583948088,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":667,"timestamp":252194247,"id":792,"parentId":721,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/ccount@2.0.1/node_modules/ccount/index.js","layer":"ssr"},"startTime":1767583948094,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":679,"timestamp":252196884,"id":793,"parentId":753,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/revert.js","layer":"ssr"},"startTime":1767583948097,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":507,"timestamp":252205278,"id":794,"parentId":768,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/lib/color.node.js","layer":"ssr"},"startTime":1767583948105,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":491,"timestamp":252206981,"id":795,"parentId":721,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-find-and-replace@3.0.2/node_modules/mdast-util-find-and-replace/index.js","layer":"ssr"},"startTime":1767583948107,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1469,"timestamp":252231390,"id":796,"parentId":723,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/markdown-table@3.0.4/node_modules/markdown-table/index.js","layer":"ssr"},"startTime":1767583948132,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":536,"timestamp":252236039,"id":797,"parentId":723,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/index.js","layer":"ssr"},"startTime":1767583948136,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":514,"timestamp":252246693,"id":798,"parentId":740,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/index.js","layer":"ssr"},"startTime":1767583948147,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":963,"timestamp":252252188,"id":799,"parentId":766,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trim-lines@3.0.1/node_modules/trim-lines/index.js","layer":"ssr"},"startTime":1767583948152,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1107,"timestamp":252255624,"id":800,"parentId":768,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-is@6.0.1/node_modules/unist-util-is/index.js","layer":"ssr"},"startTime":1767583948156,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3325,"timestamp":252260878,"id":801,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/attention.js","layer":"ssr"},"startTime":1767583948161,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4166,"timestamp":252261085,"id":802,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/autolink.js","layer":"ssr"},"startTime":1767583948161,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4335,"timestamp":252261260,"id":803,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/blank-line.js","layer":"ssr"},"startTime":1767583948161,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4779,"timestamp":252261425,"id":804,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/block-quote.js","layer":"ssr"},"startTime":1767583948162,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4950,"timestamp":252261581,"id":805,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-escape.js","layer":"ssr"},"startTime":1767583948162,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1924,"timestamp":252268851,"id":806,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-reference.js","layer":"ssr"},"startTime":1767583948169,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4369,"timestamp":252269061,"id":807,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-fenced.js","layer":"ssr"},"startTime":1767583948169,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5103,"timestamp":252269235,"id":808,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-indented.js","layer":"ssr"},"startTime":1767583948169,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":590,"timestamp":252279651,"id":809,"parentId":769,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-string@4.0.0/node_modules/mdast-util-to-string/index.js","layer":"ssr"},"startTime":1767583948180,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1820,"timestamp":252282917,"id":810,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-text.js","layer":"ssr"},"startTime":1767583948183,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2120,"timestamp":252288203,"id":811,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/content.js","layer":"ssr"},"startTime":1767583948188,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2493,"timestamp":252288405,"id":812,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/definition.js","layer":"ssr"},"startTime":1767583948189,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2575,"timestamp":252288574,"id":813,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/hard-break-escape.js","layer":"ssr"},"startTime":1767583948189,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3005,"timestamp":252288734,"id":814,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/heading-atx.js","layer":"ssr"},"startTime":1767583948189,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4122,"timestamp":252288907,"id":815,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-text.js","layer":"ssr"},"startTime":1767583948189,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5739,"timestamp":252289107,"id":816,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-flow.js","layer":"ssr"},"startTime":1767583948189,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2185,"timestamp":252299127,"id":817,"parentId":769,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/index.js","layer":"ssr"},"startTime":1767583948199,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3317,"timestamp":252299323,"id":818,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-end.js","layer":"ssr"},"startTime":1767583948200,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3419,"timestamp":252299489,"id":819,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-link.js","layer":"ssr"},"startTime":1767583948200,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3685,"timestamp":252299655,"id":820,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-image.js","layer":"ssr"},"startTime":1767583948200,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1034,"timestamp":252306805,"id":821,"parentId":769,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-decode-numeric-character-reference@2.0.2/node_modules/micromark-util-decode-numeric-character-reference/index.js","layer":"ssr"},"startTime":1767583948207,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1649,"timestamp":252306999,"id":822,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/line-ending.js","layer":"ssr"},"startTime":1767583948207,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2421,"timestamp":252321317,"id":823,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/list.js","layer":"ssr"},"startTime":1767583948222,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5242,"timestamp":252321531,"id":824,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/setext-underline.js","layer":"ssr"},"startTime":1767583948222,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5583,"timestamp":252321695,"id":825,"parentId":772,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/thematic-break.js","layer":"ssr"},"startTime":1767583948222,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1194,"timestamp":252328464,"id":826,"parentId":769,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-decode-string@2.0.1/node_modules/micromark-util-decode-string/index.js","layer":"ssr"},"startTime":1767583948229,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":654,"timestamp":252341777,"id":827,"parentId":769,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/decode-named-character-reference@1.2.0/node_modules/decode-named-character-reference/index.js","layer":"ssr"},"startTime":1767583948242,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":883,"timestamp":252356547,"id":828,"parentId":714,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/index.js","layer":"ssr"},"startTime":1767583948257,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":763,"timestamp":252367995,"id":829,"parentId":771,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-encode@2.0.1/node_modules/micromark-util-encode/index.js","layer":"ssr"},"startTime":1767583948268,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2093,"timestamp":252388522,"id":830,"parentId":795,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-find-and-replace@3.0.2/node_modules/mdast-util-find-and-replace/lib/index.js","layer":"ssr"},"startTime":1767583948289,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3549,"timestamp":252388745,"id":831,"parentId":777,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/inline-style-parser@0.2.7/node_modules/inline-style-parser/cjs/index.js","layer":"ssr"},"startTime":1767583948289,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1212,"timestamp":252393752,"id":832,"parentId":797,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/index.js","layer":"ssr"},"startTime":1767583948294,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1174,"timestamp":252400264,"id":833,"parentId":797,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/index.js","layer":"ssr"},"startTime":1767583948300,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1367,"timestamp":252400472,"id":834,"parentId":798,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/lib/index.js","layer":"ssr"},"startTime":1767583948301,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1572,"timestamp":252405623,"id":835,"parentId":800,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-is@6.0.1/node_modules/unist-util-is/lib/index.js","layer":"ssr"},"startTime":1767583948306,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1847,"timestamp":252405804,"id":836,"parentId":809,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-string@4.0.0/node_modules/mdast-util-to-string/lib/index.js","layer":"ssr"},"startTime":1767583948306,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3850,"timestamp":252412449,"id":837,"parentId":817,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/compile.js","layer":"ssr"},"startTime":1767583948313,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1180,"timestamp":252449246,"id":838,"parentId":817,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/parse.js","layer":"ssr"},"startTime":1767583948349,"traceId":"8482a19cb410207d"}]
8
+ [{"name":"build-module-js","duration":9258,"timestamp":250861795,"id":536,"parentId":477,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor.js","layer":"ssr"},"startTime":1767583946762,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":18170,"timestamp":250859188,"id":531,"parentId":475,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-check-big.js","layer":"ssr"},"startTime":1767583946759,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":4795,"timestamp":250878123,"id":538,"parentId":411,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/index.ts","layer":"ssr"},"startTime":1767583946778,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2804,"timestamp":250880462,"id":541,"parentId":477,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/zap.js","layer":"ssr"},"startTime":1767583946781,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6689,"timestamp":250880244,"id":539,"parentId":528,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Download,Terminal,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946780,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6806,"timestamp":250880368,"id":540,"parentId":529,"tags":{"name":"__barrel_optimize__?names=Check,Copy,ExternalLink,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946781,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":1407,"timestamp":250894769,"id":544,"parentId":450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","layer":"ssr"},"startTime":1767583946795,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3109,"timestamp":250893546,"id":543,"parentId":480,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/createLucideIcon.js","layer":"ssr"},"startTime":1767583946794,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":11585,"timestamp":250893336,"id":542,"parentId":456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useChatStore.ts","layer":"ssr"},"startTime":1767583946794,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":7493,"timestamp":250912651,"id":545,"parentId":466,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/usePreviewStore.ts","layer":"ssr"},"startTime":1767583946813,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":2521,"timestamp":250920312,"id":553,"parentId":492,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/vanilla.mjs","layer":"ssr"},"startTime":1767583946821,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":3062,"timestamp":250920499,"id":554,"parentId":492,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/react.mjs","layer":"ssr"},"startTime":1767583946821,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10928,"timestamp":250916126,"id":547,"parentId":502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/image-component.js","layer":"ssr"},"startTime":1767583946816,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12013,"timestamp":250915982,"id":546,"parentId":500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"ssr"},"startTime":1767583946816,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12390,"timestamp":250916595,"id":551,"parentId":504,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"ssr"},"startTime":1767583946817,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13226,"timestamp":250916692,"id":552,"parentId":504,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"ssr"},"startTime":1767583946817,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14403,"timestamp":250916506,"id":550,"parentId":507,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/has-base-path.js","layer":"ssr"},"startTime":1767583946817,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":19152,"timestamp":250916281,"id":548,"parentId":502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-img-props.js","layer":"ssr"},"startTime":1767583946816,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":21822,"timestamp":250941287,"id":555,"parentId":450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/tailwind-merge@2.6.0/node_modules/tailwind-merge/dist/bundle-mjs.mjs","layer":"ssr"},"startTime":1767583946841,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":58047,"timestamp":250916414,"id":549,"parentId":503,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router.js","layer":"ssr"},"startTime":1767583946817,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12486,"timestamp":250988272,"id":556,"parentId":547,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"ssr"},"startTime":1767583946888,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12702,"timestamp":250988451,"id":557,"parentId":546,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"ssr"},"startTime":1767583946889,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12977,"timestamp":250988565,"id":558,"parentId":550,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"ssr"},"startTime":1767583946889,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":15745,"timestamp":250988661,"id":559,"parentId":509,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageItem.tsx","layer":"ssr"},"startTime":1767583946889,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":26052,"timestamp":250988862,"id":560,"parentId":509,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/StreamingMessage.tsx","layer":"ssr"},"startTime":1767583946889,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":26467,"timestamp":250989071,"id":561,"parentId":510,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ModeToggle.tsx","layer":"ssr"},"startTime":1767583946889,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":27025,"timestamp":250989247,"id":562,"parentId":510,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/FilePreview.tsx","layer":"ssr"},"startTime":1767583946889,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":27115,"timestamp":250989415,"id":563,"parentId":517,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/paperclip.js","layer":"ssr"},"startTime":1767583946890,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":27724,"timestamp":250989500,"id":564,"parentId":517,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/send.js","layer":"ssr"},"startTime":1767583946890,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13445,"timestamp":251005140,"id":565,"parentId":502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-loader.js","layer":"ssr"},"startTime":1767583946905,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4174,"timestamp":251027221,"id":567,"parentId":556,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"ssr"},"startTime":1767583946927,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5471,"timestamp":251027080,"id":566,"parentId":559,"tags":{"name":"__barrel_optimize__?names=Bot,CheckCircle2,Edit3,FileText,FolderSearch,Globe,ListTodo,Search,Terminal!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946927,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5660,"timestamp":251027312,"id":568,"parentId":556,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"ssr"},"startTime":1767583946928,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4191,"timestamp":251035170,"id":573,"parentId":539,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/download.js","layer":"ssr"},"startTime":1767583946935,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4648,"timestamp":251035115,"id":572,"parentId":543,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/Icon.js","layer":"ssr"},"startTime":1767583946935,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":57672,"timestamp":251040105,"id":574,"parentId":458,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/prism-react-renderer@2.4.1_react@19.2.3/node_modules/prism-react-renderer/dist/index.mjs","layer":"ssr"},"startTime":1767583946940,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":65466,"timestamp":251034863,"id":569,"parentId":560,"tags":{"name":"__barrel_optimize__?names=Bot,CheckCircle2,Edit3,FileText,FolderSearch,Globe,ListTodo,Loader2,Search,Terminal!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946935,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":65661,"timestamp":251034955,"id":570,"parentId":561,"tags":{"name":"__barrel_optimize__?names=Hammer,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946935,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":69129,"timestamp":251035054,"id":571,"parentId":562,"tags":{"name":"__barrel_optimize__?names=FileText,Loader2,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583946935,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":65415,"timestamp":251040239,"id":575,"parentId":543,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/shared/src/utils.js","layer":"ssr"},"startTime":1767583946940,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2693,"timestamp":251112865,"id":577,"parentId":548,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-blur-svg.js","layer":"ssr"},"startTime":1767583947013,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3151,"timestamp":251112743,"id":576,"parentId":547,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config.js","layer":"ssr"},"startTime":1767583947013,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3956,"timestamp":251116107,"id":578,"parentId":552,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/promise-queue.js","layer":"ssr"},"startTime":1767583947016,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4753,"timestamp":251117208,"id":581,"parentId":551,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"ssr"},"startTime":1767583947017,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8272,"timestamp":251116192,"id":579,"parentId":551,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"ssr"},"startTime":1767583947016,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8098,"timestamp":251117293,"id":582,"parentId":551,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"ssr"},"startTime":1767583947017,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9392,"timestamp":251117099,"id":580,"parentId":551,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"ssr"},"startTime":1767583947017,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11024,"timestamp":251117380,"id":583,"parentId":551,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/hmr-refresh-reducer.js","layer":"ssr"},"startTime":1767583947018,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11179,"timestamp":251130741,"id":584,"parentId":552,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"ssr"},"startTime":1767583947031,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13302,"timestamp":251130856,"id":585,"parentId":551,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"ssr"},"startTime":1767583947031,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":6993,"timestamp":251147049,"id":586,"parentId":538,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/chat.ts","layer":"ssr"},"startTime":1767583947047,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":7860,"timestamp":251154397,"id":588,"parentId":538,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/project.ts","layer":"ssr"},"startTime":1767583947055,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8540,"timestamp":251154566,"id":589,"parentId":549,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-base-path.js","layer":"ssr"},"startTime":1767583947055,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9527,"timestamp":251154647,"id":590,"parentId":549,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-announcer.js","layer":"ssr"},"startTime":1767583947055,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10142,"timestamp":251154815,"id":592,"parentId":549,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"ssr"},"startTime":1767583947055,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":10962,"timestamp":251154192,"id":587,"parentId":538,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/preview.ts","layer":"ssr"},"startTime":1767583947054,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12057,"timestamp":251154730,"id":591,"parentId":549,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"ssr"},"startTime":1767583947055,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2314,"timestamp":251173307,"id":593,"parentId":566,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-check.js","layer":"ssr"},"startTime":1767583947073,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3731,"timestamp":251173456,"id":594,"parentId":566,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bot.js","layer":"ssr"},"startTime":1767583947074,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4766,"timestamp":251173554,"id":595,"parentId":549,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/root-error-boundary.js","layer":"ssr"},"startTime":1767583947074,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7004,"timestamp":251175721,"id":596,"parentId":572,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/defaultAttributes.js","layer":"ssr"},"startTime":1767583947076,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7195,"timestamp":251175840,"id":597,"parentId":566,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pen-line.js","layer":"ssr"},"startTime":1767583947076,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7393,"timestamp":251175943,"id":598,"parentId":566,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-todo.js","layer":"ssr"},"startTime":1767583947076,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7528,"timestamp":251176065,"id":599,"parentId":566,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/search.js","layer":"ssr"},"startTime":1767583947076,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7688,"timestamp":251176160,"id":600,"parentId":570,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-question.js","layer":"ssr"},"startTime":1767583947076,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8178,"timestamp":251176246,"id":601,"parentId":566,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-search.js","layer":"ssr"},"startTime":1767583947076,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3195,"timestamp":251193024,"id":603,"parentId":570,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hammer.js","layer":"ssr"},"startTime":1767583947093,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":4405,"timestamp":251192804,"id":602,"parentId":559,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MarkdownRenderer.tsx","layer":"ssr"},"startTime":1767583947093,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2619,"timestamp":251197542,"id":605,"parentId":556,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/amp-context.js","layer":"ssr"},"startTime":1767583947098,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2666,"timestamp":251197654,"id":606,"parentId":556,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/head-manager-context.js","layer":"ssr"},"startTime":1767583947098,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":4820,"timestamp":251197402,"id":604,"parentId":560,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/AskUserQuestionBlock.tsx","layer":"ssr"},"startTime":1767583947098,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6374,"timestamp":251202510,"id":607,"parentId":581,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"ssr"},"startTime":1767583947103,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5453,"timestamp":251216609,"id":609,"parentId":581,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"ssr"},"startTime":1767583947117,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6408,"timestamp":251216704,"id":610,"parentId":581,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"ssr"},"startTime":1767583947117,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6885,"timestamp":251216490,"id":608,"parentId":604,"tags":{"name":"__barrel_optimize__?names=Check,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583947117,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11113,"timestamp":251216785,"id":611,"parentId":581,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"ssr"},"startTime":1767583947117,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11109,"timestamp":251232350,"id":613,"parentId":581,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"ssr"},"startTime":1767583947133,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13169,"timestamp":251232224,"id":612,"parentId":607,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"ssr"},"startTime":1767583947132,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13743,"timestamp":251232432,"id":614,"parentId":579,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"ssr"},"startTime":1767583947133,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14300,"timestamp":251232545,"id":616,"parentId":579,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"ssr"},"startTime":1767583947133,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":15280,"timestamp":251232589,"id":617,"parentId":579,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"ssr"},"startTime":1767583947133,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10523,"timestamp":251238195,"id":618,"parentId":579,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"ssr"},"startTime":1767583947138,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":27334,"timestamp":251232497,"id":615,"parentId":579,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"ssr"},"startTime":1767583947133,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7322,"timestamp":251262046,"id":619,"parentId":585,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/assign-location.js","layer":"ssr"},"startTime":1767583947162,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7846,"timestamp":251262181,"id":620,"parentId":585,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/server-reference-info.js","layer":"ssr"},"startTime":1767583947162,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9507,"timestamp":251262272,"id":621,"parentId":579,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/aliased-prefetch-navigations.js","layer":"ssr"},"startTime":1767583947162,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3620,"timestamp":251272362,"id":622,"parentId":547,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/router-context.js","layer":"ssr"},"startTime":1767583947173,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3610,"timestamp":251272575,"id":623,"parentId":547,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/server/route-modules/app-page/vendored/contexts/image-config-context.js","layer":"ssr"},"startTime":1767583947173,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6921,"timestamp":251272754,"id":624,"parentId":595,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/graceful-degrade-boundary.js","layer":"ssr"},"startTime":1767583947173,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":769,"timestamp":251289461,"id":626,"parentId":578,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"ssr"},"startTime":1767583947190,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":636,"timestamp":251290519,"id":627,"parentId":578,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"ssr"},"startTime":1767583947191,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4181,"timestamp":251288585,"id":625,"parentId":616,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"ssr"},"startTime":1767583947189,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":5014,"timestamp":251296793,"id":628,"parentId":604,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/radio-group.tsx","layer":"ssr"},"startTime":1767583947197,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":5692,"timestamp":251302048,"id":629,"parentId":604,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/checkbox.tsx","layer":"ssr"},"startTime":1767583947202,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2571,"timestamp":251310372,"id":630,"parentId":628,"tags":{"name":"__barrel_optimize__?names=Circle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583947211,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":3907,"timestamp":251313171,"id":632,"parentId":604,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/label.tsx","layer":"ssr"},"startTime":1767583947213,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4301,"timestamp":251313052,"id":631,"parentId":629,"tags":{"name":"__barrel_optimize__?names=Check!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"ssr"},"startTime":1767583947213,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":895,"timestamp":251320473,"id":633,"parentId":602,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/index.js","layer":"ssr"},"startTime":1767583947221,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":908,"timestamp":251320679,"id":634,"parentId":602,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/index.js","layer":"ssr"},"startTime":1767583947221,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2019,"timestamp":251321898,"id":635,"parentId":625,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"ssr"},"startTime":1767583947222,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1303,"timestamp":251326260,"id":636,"parentId":630,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle.js","layer":"ssr"},"startTime":1767583947226,"traceId":"8482a19cb410207d"}]
9
+ [{"name":"build-module-js","duration":1114,"timestamp":252452414,"id":839,"parentId":817,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/postprocess.js","layer":"ssr"},"startTime":1767583948353,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1791,"timestamp":252452613,"id":840,"parentId":817,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/preprocess.js","layer":"ssr"},"startTime":1767583948353,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1625,"timestamp":252474796,"id":841,"parentId":811,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/index.js","layer":"ssr"},"startTime":1767583948375,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2095,"timestamp":252474956,"id":842,"parentId":828,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/deserialize.js","layer":"ssr"},"startTime":1767583948375,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3174,"timestamp":252475088,"id":843,"parentId":828,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/serialize.js","layer":"ssr"},"startTime":1767583948375,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1173,"timestamp":252486932,"id":844,"parentId":812,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-destination@2.0.1/node_modules/micromark-factory-destination/index.js","layer":"ssr"},"startTime":1767583948387,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":970,"timestamp":252491388,"id":845,"parentId":812,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-label@2.0.1/node_modules/micromark-factory-label/index.js","layer":"ssr"},"startTime":1767583948392,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1019,"timestamp":252497570,"id":846,"parentId":832,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/configure.js","layer":"ssr"},"startTime":1767583948398,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1214,"timestamp":252497761,"id":847,"parentId":832,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/join.js","layer":"ssr"},"startTime":1767583948398,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1067,"timestamp":252502127,"id":848,"parentId":832,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/unsafe.js","layer":"ssr"},"startTime":1767583948402,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":596,"timestamp":252505017,"id":849,"parentId":832,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/association.js","layer":"ssr"},"startTime":1767583948405,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1969,"timestamp":252507675,"id":850,"parentId":812,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-title@2.0.1/node_modules/micromark-factory-title/index.js","layer":"ssr"},"startTime":1767583948408,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2124,"timestamp":252507850,"id":851,"parentId":832,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/compile-pattern.js","layer":"ssr"},"startTime":1767583948408,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2753,"timestamp":252508025,"id":852,"parentId":832,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/container-phrasing.js","layer":"ssr"},"startTime":1767583948408,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3072,"timestamp":252508189,"id":853,"parentId":832,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/container-flow.js","layer":"ssr"},"startTime":1767583948408,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1800,"timestamp":252512292,"id":854,"parentId":812,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-whitespace@2.0.1/node_modules/micromark-factory-whitespace/index.js","layer":"ssr"},"startTime":1767583948412,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2485,"timestamp":252512465,"id":855,"parentId":832,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/safe.js","layer":"ssr"},"startTime":1767583948413,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2658,"timestamp":252512623,"id":856,"parentId":832,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/track.js","layer":"ssr"},"startTime":1767583948413,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2765,"timestamp":252512769,"id":857,"parentId":832,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/indent-lines.js","layer":"ssr"},"startTime":1767583948413,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2833,"timestamp":252512918,"id":858,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js","layer":"ssr"},"startTime":1767583948413,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":599,"timestamp":252516543,"id":859,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/break.js","layer":"ssr"},"startTime":1767583948417,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1505,"timestamp":252519791,"id":860,"parentId":816,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-html-tag-name@2.0.1/node_modules/micromark-util-html-tag-name/index.js","layer":"ssr"},"startTime":1767583948420,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1834,"timestamp":252520108,"id":861,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/definition.js","layer":"ssr"},"startTime":1767583948420,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2305,"timestamp":252520281,"id":862,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/code.js","layer":"ssr"},"startTime":1767583948420,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1243,"timestamp":252525348,"id":863,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/heading.js","layer":"ssr"},"startTime":1767583948426,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1273,"timestamp":252525480,"id":864,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/html.js","layer":"ssr"},"startTime":1767583948426,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1565,"timestamp":252525580,"id":865,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js","layer":"ssr"},"startTime":1767583948426,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1580,"timestamp":252527786,"id":866,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image.js","layer":"ssr"},"startTime":1767583948428,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1771,"timestamp":252527910,"id":867,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js","layer":"ssr"},"startTime":1767583948428,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2057,"timestamp":252528040,"id":868,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js","layer":"ssr"},"startTime":1767583948428,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2458,"timestamp":252528150,"id":869,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link.js","layer":"ssr"},"startTime":1767583948428,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2707,"timestamp":252528248,"id":870,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js","layer":"ssr"},"startTime":1767583948428,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":944,"timestamp":252535237,"id":871,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list.js","layer":"ssr"},"startTime":1767583948435,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1211,"timestamp":252535366,"id":872,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list-item.js","layer":"ssr"},"startTime":1767583948436,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":948,"timestamp":252538198,"id":873,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js","layer":"ssr"},"startTime":1767583948438,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1193,"timestamp":252538322,"id":874,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/strong.js","layer":"ssr"},"startTime":1767583948439,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1290,"timestamp":252538426,"id":875,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/root.js","layer":"ssr"},"startTime":1767583948439,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1507,"timestamp":252540725,"id":876,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/constructs.js","layer":"ssr"},"startTime":1767583948441,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3802,"timestamp":252540849,"id":877,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/create-tokenizer.js","layer":"ssr"},"startTime":1767583948441,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3865,"timestamp":252540946,"id":878,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/text.js","layer":"ssr"},"startTime":1767583948441,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3980,"timestamp":252541073,"id":879,"parentId":833,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js","layer":"ssr"},"startTime":1767583948441,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2955,"timestamp":252550420,"id":880,"parentId":827,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/character-entities@2.0.2/node_modules/character-entities/index.js","layer":"ssr"},"startTime":1767583948451,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1119,"timestamp":252555853,"id":881,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/content.js","layer":"ssr"},"startTime":1767583948456,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2231,"timestamp":252555989,"id":882,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/document.js","layer":"ssr"},"startTime":1767583948456,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2656,"timestamp":252556133,"id":883,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/flow.js","layer":"ssr"},"startTime":1767583948456,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3690,"timestamp":252556230,"id":884,"parentId":838,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/text.js","layer":"ssr"},"startTime":1767583948456,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":849,"timestamp":252581244,"id":885,"parentId":842,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/types.js","layer":"ssr"},"startTime":1767583948481,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":941,"timestamp":252588663,"id":886,"parentId":847,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js","layer":"ssr"},"startTime":1767583948489,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1113,"timestamp":252588821,"id":887,"parentId":847,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js","layer":"ssr"},"startTime":1767583948489,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1710,"timestamp":252588925,"id":888,"parentId":841,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/lib/splice-buffer.js","layer":"ssr"},"startTime":1767583948489,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1046,"timestamp":252591777,"id":889,"parentId":852,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js","layer":"ssr"},"startTime":1767583948492,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1189,"timestamp":252591906,"id":890,"parentId":855,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js","layer":"ssr"},"startTime":1767583948492,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1228,"timestamp":252592042,"id":891,"parentId":861,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-quote.js","layer":"ssr"},"startTime":1767583948492,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1280,"timestamp":252592146,"id":892,"parentId":862,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-fence.js","layer":"ssr"},"startTime":1767583948492,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":580,"timestamp":252594285,"id":893,"parentId":830,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/escape-string-regexp@5.0.0/node_modules/escape-string-regexp/index.js","layer":"ssr"},"startTime":1767583948494,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":650,"timestamp":252594409,"id":894,"parentId":865,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js","layer":"ssr"},"startTime":1767583948495,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":545,"timestamp":252596632,"id":895,"parentId":865,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-info.js","layer":"ssr"},"startTime":1767583948497,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":685,"timestamp":252598886,"id":896,"parentId":869,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js","layer":"ssr"},"startTime":1767583948499,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":989,"timestamp":252600183,"id":897,"parentId":871,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js","layer":"ssr"},"startTime":1767583948500,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1099,"timestamp":252600311,"id":898,"parentId":871,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js","layer":"ssr"},"startTime":1767583948500,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1162,"timestamp":252600409,"id":899,"parentId":871,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js","layer":"ssr"},"startTime":1767583948501,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1219,"timestamp":252600510,"id":900,"parentId":871,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-rule.js","layer":"ssr"},"startTime":1767583948501,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1311,"timestamp":252600599,"id":901,"parentId":872,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js","layer":"ssr"},"startTime":1767583948501,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":516,"timestamp":252604928,"id":902,"parentId":832,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zwitch@2.0.4/node_modules/zwitch/index.js","layer":"ssr"},"startTime":1767583948505,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":389,"timestamp":252607158,"id":903,"parentId":874,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-strong.js","layer":"ssr"},"startTime":1767583948507,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":375,"timestamp":252609047,"id":904,"parentId":879,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js","layer":"ssr"},"startTime":1767583948509,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":654,"timestamp":252638754,"id":905,"parentId":862,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/longest-streak@3.1.0/node_modules/longest-streak/index.js","layer":"ssr"},"startTime":1767583948539,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":376,"timestamp":252639883,"id":906,"parentId":875,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-phrasing@4.1.0/node_modules/mdast-util-phrasing/index.js","layer":"ssr"},"startTime":1767583948540,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":698,"timestamp":252641658,"id":907,"parentId":906,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-phrasing@4.1.0/node_modules/mdast-util-phrasing/lib/index.js","layer":"ssr"},"startTime":1767583948542,"traceId":"8482a19cb410207d"},{"name":"make","duration":5418313,"timestamp":247233956,"id":22,"parentId":20,"tags":{},"startTime":1767583943134,"traceId":"8482a19cb410207d"},{"name":"get-entries","duration":519,"timestamp":252653582,"id":909,"parentId":908,"tags":{},"startTime":1767583948554,"traceId":"8482a19cb410207d"},{"name":"node-file-trace-plugin","duration":94010,"timestamp":252657390,"id":910,"parentId":908,"tags":{"traceEntryCount":"10"},"startTime":1767583948558,"traceId":"8482a19cb410207d"},{"name":"collect-traced-files","duration":424,"timestamp":252751414,"id":911,"parentId":908,"tags":{},"startTime":1767583948652,"traceId":"8482a19cb410207d"},{"name":"finish-modules","duration":98460,"timestamp":252653384,"id":908,"parentId":21,"tags":{},"startTime":1767583948554,"traceId":"8482a19cb410207d"},{"name":"chunk-graph","duration":19769,"timestamp":252811346,"id":913,"parentId":912,"tags":{},"startTime":1767583948712,"traceId":"8482a19cb410207d"},{"name":"optimize-modules","duration":41,"timestamp":252831276,"id":915,"parentId":912,"tags":{},"startTime":1767583948731,"traceId":"8482a19cb410207d"},{"name":"optimize-chunks","duration":16104,"timestamp":252831423,"id":916,"parentId":912,"tags":{},"startTime":1767583948732,"traceId":"8482a19cb410207d"},{"name":"optimize-tree","duration":122,"timestamp":252847606,"id":917,"parentId":912,"tags":{},"startTime":1767583948748,"traceId":"8482a19cb410207d"},{"name":"optimize-chunk-modules","duration":26328,"timestamp":252847828,"id":918,"parentId":912,"tags":{},"startTime":1767583948748,"traceId":"8482a19cb410207d"},{"name":"optimize","duration":43057,"timestamp":252831201,"id":914,"parentId":912,"tags":{},"startTime":1767583948731,"traceId":"8482a19cb410207d"},{"name":"module-hash","duration":39041,"timestamp":252896425,"id":919,"parentId":912,"tags":{},"startTime":1767583948797,"traceId":"8482a19cb410207d"},{"name":"code-generation","duration":434164,"timestamp":252935543,"id":920,"parentId":912,"tags":{},"startTime":1767583948836,"traceId":"8482a19cb410207d"},{"name":"hash","duration":8580,"timestamp":253375206,"id":921,"parentId":912,"tags":{},"startTime":1767583949275,"traceId":"8482a19cb410207d"},{"name":"code-generation-jobs","duration":549,"timestamp":253383781,"id":922,"parentId":912,"tags":{},"startTime":1767583949284,"traceId":"8482a19cb410207d"},{"name":"module-assets","duration":405,"timestamp":253384285,"id":923,"parentId":912,"tags":{},"startTime":1767583949284,"traceId":"8482a19cb410207d"},{"name":"create-chunk-assets","duration":8127,"timestamp":253384706,"id":924,"parentId":912,"tags":{},"startTime":1767583949285,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":139809,"timestamp":253426985,"id":927,"parentId":925,"tags":{"name":"../pages/_app.js","cache":"MISS"},"startTime":1767583949327,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":147948,"timestamp":253418914,"id":926,"parentId":925,"tags":{"name":"../app/_not-found/page.js","cache":"MISS"},"startTime":1767583949319,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":136050,"timestamp":253437068,"id":929,"parentId":925,"tags":{"name":"../app/page.js","cache":"MISS"},"startTime":1767583949337,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":76915,"timestamp":253496240,"id":932,"parentId":925,"tags":{"name":"../pages/_document.js","cache":"MISS"},"startTime":1767583949396,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":76846,"timestamp":253496340,"id":933,"parentId":925,"tags":{"name":"../webpack-runtime.js","cache":"MISS"},"startTime":1767583949397,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":79660,"timestamp":253494360,"id":931,"parentId":925,"tags":{"name":"../app/settings/page.js","cache":"MISS"},"startTime":1767583949395,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":225745,"timestamp":253427919,"id":928,"parentId":925,"tags":{"name":"../pages/_error.js","cache":"MISS"},"startTime":1767583949328,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":136472,"timestamp":253539663,"id":935,"parentId":925,"tags":{"name":"811.js","cache":"MISS"},"startTime":1767583949440,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":133826,"timestamp":253547251,"id":937,"parentId":925,"tags":{"name":"392.js","cache":"MISS"},"startTime":1767583949447,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":152867,"timestamp":253545404,"id":936,"parentId":925,"tags":{"name":"799.js","cache":"MISS"},"startTime":1767583949446,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":399721,"timestamp":253441784,"id":930,"parentId":925,"tags":{"name":"../app/project/[id]/page.js","cache":"MISS"},"startTime":1767583949342,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":377244,"timestamp":253496732,"id":934,"parentId":925,"tags":{"name":"673.js","cache":"MISS"},"startTime":1767583949397,"traceId":"8482a19cb410207d"},{"name":"minify-webpack-plugin-optimize","duration":478624,"timestamp":253395371,"id":925,"parentId":20,"tags":{"compilationName":"server","mangle":"[object Object]"},"startTime":1767583949296,"traceId":"8482a19cb410207d"},{"name":"css-minimizer-plugin","duration":149,"timestamp":253874224,"id":938,"parentId":20,"tags":{},"startTime":1767583949774,"traceId":"8482a19cb410207d"},{"name":"create-trace-assets","duration":1419,"timestamp":253874573,"id":939,"parentId":21,"tags":{},"startTime":1767583949775,"traceId":"8482a19cb410207d"}]
10
+ [{"name":"seal","duration":1101496,"timestamp":252782668,"id":912,"parentId":20,"tags":{},"startTime":1767583948683,"traceId":"8482a19cb410207d"},{"name":"webpack-compilation","duration":6681612,"timestamp":247221925,"id":20,"parentId":17,"tags":{"name":"server"},"startTime":1767583943122,"traceId":"8482a19cb410207d"},{"name":"emit","duration":6689,"timestamp":253903977,"id":940,"parentId":17,"tags":{},"startTime":1767583949804,"traceId":"8482a19cb410207d"},{"name":"webpack-close","duration":545999,"timestamp":253912587,"id":941,"parentId":17,"tags":{"name":"server"},"startTime":1767583949813,"traceId":"8482a19cb410207d"},{"name":"webpack-generate-error-stats","duration":2541,"timestamp":254458667,"id":942,"parentId":941,"tags":{},"startTime":1767583950359,"traceId":"8482a19cb410207d"},{"name":"run-webpack-compiler","duration":7549276,"timestamp":246912234,"id":17,"parentId":16,"tags":{},"startTime":1767583942812,"traceId":"8482a19cb410207d"},{"name":"format-webpack-messages","duration":81,"timestamp":254461517,"id":943,"parentId":16,"tags":{},"startTime":1767583950362,"traceId":"8482a19cb410207d"},{"name":"worker-main-server","duration":7549900,"timestamp":246911843,"id":16,"parentId":1,"tags":{},"startTime":1767583942812,"traceId":"8482a19cb410207d"},{"name":"create-entrypoints","duration":20893,"timestamp":255300809,"id":947,"parentId":945,"tags":{},"startTime":1767583951201,"traceId":"8482a19cb410207d"},{"name":"generate-webpack-config","duration":117242,"timestamp":255321908,"id":948,"parentId":946,"tags":{},"startTime":1767583951222,"traceId":"8482a19cb410207d"},{"name":"make","duration":1188,"timestamp":255538277,"id":950,"parentId":949,"tags":{},"startTime":1767583951438,"traceId":"8482a19cb410207d"},{"name":"chunk-graph","duration":680,"timestamp":255543817,"id":952,"parentId":951,"tags":{},"startTime":1767583951444,"traceId":"8482a19cb410207d"},{"name":"optimize-modules","duration":42,"timestamp":255544646,"id":954,"parentId":951,"tags":{},"startTime":1767583951445,"traceId":"8482a19cb410207d"},{"name":"optimize-chunks","duration":924,"timestamp":255544795,"id":955,"parentId":951,"tags":{},"startTime":1767583951445,"traceId":"8482a19cb410207d"},{"name":"optimize-tree","duration":121,"timestamp":255545803,"id":956,"parentId":951,"tags":{},"startTime":1767583951446,"traceId":"8482a19cb410207d"},{"name":"optimize-chunk-modules","duration":528,"timestamp":255546191,"id":957,"parentId":951,"tags":{},"startTime":1767583951446,"traceId":"8482a19cb410207d"},{"name":"optimize","duration":2247,"timestamp":255544577,"id":953,"parentId":951,"tags":{},"startTime":1767583951445,"traceId":"8482a19cb410207d"},{"name":"module-hash","duration":110,"timestamp":255548051,"id":958,"parentId":951,"tags":{},"startTime":1767583951448,"traceId":"8482a19cb410207d"},{"name":"code-generation","duration":219,"timestamp":255548214,"id":959,"parentId":951,"tags":{},"startTime":1767583951448,"traceId":"8482a19cb410207d"},{"name":"hash","duration":449,"timestamp":255548716,"id":960,"parentId":951,"tags":{},"startTime":1767583951449,"traceId":"8482a19cb410207d"},{"name":"code-generation-jobs","duration":156,"timestamp":255549160,"id":961,"parentId":951,"tags":{},"startTime":1767583951449,"traceId":"8482a19cb410207d"},{"name":"module-assets","duration":96,"timestamp":255549277,"id":962,"parentId":951,"tags":{},"startTime":1767583951449,"traceId":"8482a19cb410207d"},{"name":"create-chunk-assets","duration":195,"timestamp":255549389,"id":963,"parentId":951,"tags":{},"startTime":1767583951450,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":1187,"timestamp":255559094,"id":965,"parentId":964,"tags":{"name":"interception-route-rewrite-manifest.js","cache":"MISS"},"startTime":1767583951459,"traceId":"8482a19cb410207d"},{"name":"minify-webpack-plugin-optimize","duration":2519,"timestamp":255557773,"id":964,"parentId":949,"tags":{"compilationName":"edge-server","mangle":"[object Object]"},"startTime":1767583951458,"traceId":"8482a19cb410207d"},{"name":"css-minimizer-plugin","duration":116,"timestamp":255560379,"id":966,"parentId":949,"tags":{},"startTime":1767583951461,"traceId":"8482a19cb410207d"},{"name":"seal","duration":21170,"timestamp":255542926,"id":951,"parentId":949,"tags":{},"startTime":1767583951443,"traceId":"8482a19cb410207d"},{"name":"webpack-compilation","duration":35601,"timestamp":255528912,"id":949,"parentId":946,"tags":{"name":"edge-server"},"startTime":1767583951429,"traceId":"8482a19cb410207d"},{"name":"emit","duration":2745,"timestamp":255564888,"id":967,"parentId":946,"tags":{},"startTime":1767583951465,"traceId":"8482a19cb410207d"},{"name":"webpack-close","duration":10095,"timestamp":255568544,"id":968,"parentId":946,"tags":{"name":"edge-server"},"startTime":1767583951469,"traceId":"8482a19cb410207d"},{"name":"webpack-generate-error-stats","duration":2630,"timestamp":255578688,"id":969,"parentId":968,"tags":{},"startTime":1767583951479,"traceId":"8482a19cb410207d"},{"name":"run-webpack-compiler","duration":280692,"timestamp":255300800,"id":946,"parentId":945,"tags":{},"startTime":1767583951201,"traceId":"8482a19cb410207d"},{"name":"format-webpack-messages","duration":121,"timestamp":255581501,"id":970,"parentId":945,"tags":{},"startTime":1767583951482,"traceId":"8482a19cb410207d"},{"name":"worker-main-edge-server","duration":281529,"timestamp":255300285,"id":945,"parentId":1,"tags":{},"startTime":1767583951200,"traceId":"8482a19cb410207d"},{"name":"create-entrypoints","duration":21757,"timestamp":256376829,"id":973,"parentId":971,"tags":{},"startTime":1767583952277,"traceId":"8482a19cb410207d"},{"name":"generate-webpack-config","duration":132022,"timestamp":256398807,"id":974,"parentId":972,"tags":{},"startTime":1767583952299,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":15320,"timestamp":256722268,"id":988,"parentId":979,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-error.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-segment.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fhttp-access-fallback%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fmetadata%2Fasync-metadata.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fframework%2Fboundary-components.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fmetadata%2Fgenerate%2Ficon-mark.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767583952622,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":2250,"timestamp":256737872,"id":989,"parentId":984,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fcomponents%2FDevErrorRecovery.tsx%22%2C%22ids%22%3A%5B%22DevErrorRecovery%22%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-sans%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistSans%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist_Mono%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-mono%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistMono%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767583952638,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":682,"timestamp":256740158,"id":990,"parentId":985,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767583952640,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":633,"timestamp":256740879,"id":991,"parentId":986,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767583952641,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":653,"timestamp":256741559,"id":992,"parentId":987,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-flight-client-entry-loader.js?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!","layer":"app-pages-browser"},"startTime":1767583952642,"traceId":"8482a19cb410207d"},{"name":"next-client-pages-loader","duration":401,"timestamp":256743046,"id":994,"parentId":993,"tags":{"absolutePagePath":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-not-found.js"},"startTime":1767583952643,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":8805,"timestamp":256742255,"id":993,"parentId":980,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found.js&page=%2F_not-found%2Fpage!","layer":"app-pages-browser"},"startTime":1767583952642,"traceId":"8482a19cb410207d"},{"name":"next-client-pages-loader","duration":61,"timestamp":256752580,"id":996,"parentId":995,"tags":{"absolutePagePath":"next/dist/pages/_app"},"startTime":1767583952653,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":2689,"timestamp":256751105,"id":995,"parentId":981,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!","layer":"pages-dir-browser"},"startTime":1767583952651,"traceId":"8482a19cb410207d"},{"name":"next-client-pages-loader","duration":86,"timestamp":256754074,"id":998,"parentId":997,"tags":{"absolutePagePath":"next/dist/pages/_error"},"startTime":1767583952654,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":1287,"timestamp":256753916,"id":997,"parentId":983,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-client-pages-loader.js?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!","layer":"pages-dir-browser"},"startTime":1767583952654,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":16577,"timestamp":256778953,"id":1001,"parentId":978,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-next.js","layer":"app-pages-browser"},"startTime":1767583952679,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":25285,"timestamp":256775058,"id":999,"parentId":977,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/next.js","layer":"pages-dir-browser"},"startTime":1767583952675,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":34581,"timestamp":256778666,"id":1000,"parentId":982,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/router.js","layer":"pages-dir-browser"},"startTime":1767583952679,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5048,"timestamp":256837036,"id":1002,"parentId":993,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-not-found.js","layer":"app-pages-browser"},"startTime":1767583952737,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9769,"timestamp":256844160,"id":1003,"parentId":988,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-page.js","layer":"app-pages-browser"},"startTime":1767583952744,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11766,"timestamp":256844321,"id":1004,"parentId":988,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/client-segment.js","layer":"app-pages-browser"},"startTime":1767583952745,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12854,"timestamp":256844543,"id":1006,"parentId":988,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/render-from-template-context.js","layer":"app-pages-browser"},"startTime":1767583952745,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":15509,"timestamp":256844642,"id":1007,"parentId":1001,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-webpack.js","layer":"app-pages-browser"},"startTime":1767583952745,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":17409,"timestamp":256844758,"id":1008,"parentId":1001,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-bootstrap.js","layer":"app-pages-browser"},"startTime":1767583952745,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":18186,"timestamp":256845128,"id":1011,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/with-router.js","layer":"pages-dir-browser"},"startTime":1767583952745,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":32030,"timestamp":256844875,"id":1009,"parentId":1001,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-index.js","layer":"app-pages-browser"},"startTime":1767583952745,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":47932,"timestamp":256844435,"id":1005,"parentId":988,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/layout-router.js","layer":"app-pages-browser"},"startTime":1767583952745,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":48996,"timestamp":256844980,"id":1010,"parentId":999,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/webpack.js","layer":"pages-dir-browser"},"startTime":1767583952745,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":77273,"timestamp":256845312,"id":1012,"parentId":999,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/index.js","layer":"pages-dir-browser"},"startTime":1767583952746,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2090,"timestamp":256965363,"id":1015,"parentId":999,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/require-instrumentation-client.js","layer":"pages-dir-browser"},"startTime":1767583952866,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3490,"timestamp":256965175,"id":1014,"parentId":1001,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/require-instrumentation-client.js","layer":"app-pages-browser"},"startTime":1767583952865,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3549,"timestamp":256972076,"id":1016,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-error.js","layer":"pages-dir-browser"},"startTime":1767583952872,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":22094,"timestamp":256965000,"id":1013,"parentId":988,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/builtin/global-error.js","layer":"app-pages-browser"},"startTime":1767583952865,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":41603,"timestamp":256972158,"id":1017,"parentId":988,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-boundary.js","layer":"app-pages-browser"},"startTime":1767583952872,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":45713,"timestamp":256972390,"id":1019,"parentId":988,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-components.js","layer":"app-pages-browser"},"startTime":1767583952873,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":49552,"timestamp":256972286,"id":1018,"parentId":988,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/metadata/async-metadata.js","layer":"app-pages-browser"},"startTime":1767583952872,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13943,"timestamp":257040862,"id":1020,"parentId":995,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_app.js","layer":"pages-dir-browser"},"startTime":1767583952941,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":22694,"timestamp":257042432,"id":1021,"parentId":997,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/pages/_error.js","layer":"pages-dir-browser"},"startTime":1767583952943,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2300,"timestamp":257077084,"id":1028,"parentId":1010,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/deployment-id.js","layer":"pages-dir-browser"},"startTime":1767583952977,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13212,"timestamp":257076826,"id":1027,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/deployment-id.js","layer":"app-pages-browser"},"startTime":1767583952977,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":16734,"timestamp":257076193,"id":1022,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767583952976,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":19961,"timestamp":257076496,"id":1025,"parentId":1002,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/error-fallback.js","layer":"app-pages-browser"},"startTime":1767583952977,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":28940,"timestamp":257077145,"id":1029,"parentId":989,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/DevErrorRecovery.tsx","layer":"app-pages-browser"},"startTime":1767583952977,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":33613,"timestamp":257078259,"id":1030,"parentId":990,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/page.tsx","layer":"app-pages-browser"},"startTime":1767583952978,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":44971,"timestamp":257076408,"id":1024,"parentId":1001,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router.js","layer":"app-pages-browser"},"startTime":1767583952977,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":51387,"timestamp":257076578,"id":1026,"parentId":988,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/metadata/generate/icon-mark.js","layer":"app-pages-browser"},"startTime":1767583952977,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":91702,"timestamp":257076324,"id":1023,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/router.js","layer":"pages-dir-browser"},"startTime":1767583952977,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":5799,"timestamp":257221743,"id":1032,"parentId":991,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/project/[id]/page.tsx","layer":"app-pages-browser"},"startTime":1767583953122,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6821,"timestamp":257221970,"id":1033,"parentId":1008,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/set-attributes-from-props.js","layer":"app-pages-browser"},"startTime":1767583953122,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8651,"timestamp":257224053,"id":1034,"parentId":1007,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":"app-pages-browser"},"startTime":1767583953124,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9083,"timestamp":257224182,"id":1035,"parentId":1003,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/invariant-error.js","layer":"app-pages-browser"},"startTime":1767583953124,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":13771,"timestamp":257221451,"id":1031,"parentId":992,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/settings/page.tsx","layer":"app-pages-browser"},"startTime":1767583953122,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14973,"timestamp":257224278,"id":1036,"parentId":1006,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767583953124,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6184,"timestamp":257260051,"id":1038,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-globals.js","layer":"app-pages-browser"},"startTime":1767583953160,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7225,"timestamp":257259883,"id":1037,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/app-router-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767583953160,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7885,"timestamp":257260291,"id":1040,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-find-source-map-url.js","layer":"app-pages-browser"},"startTime":1767583953160,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8697,"timestamp":257260385,"id":1041,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-build-id.js","layer":"app-pages-browser"},"startTime":1767583953161,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9824,"timestamp":257260669,"id":1044,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/route-announcer.js","layer":"pages-dir-browser"},"startTime":1767583953161,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10195,"timestamp":257260750,"id":1045,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767583953161,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13143,"timestamp":257260583,"id":1043,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/page-loader.js","layer":"pages-dir-browser"},"startTime":1767583953161,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13574,"timestamp":257260848,"id":1046,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head-manager-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767583953161,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":17554,"timestamp":257260187,"id":1039,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-call-server.js","layer":"app-pages-browser"},"startTime":1767583953160,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":20158,"timestamp":257260487,"id":1042,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/head-manager.js","layer":"pages-dir-browser"},"startTime":1767583953161,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5051,"timestamp":257287677,"id":1048,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/runtime-config.external.js","layer":"pages-dir-browser"},"startTime":1767583953188,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5396,"timestamp":257287858,"id":1050,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/mitt.js","layer":"pages-dir-browser"},"startTime":1767583953188,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5749,"timestamp":257288028,"id":1051,"parentId":1005,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unresolved-thenable.js","layer":"app-pages-browser"},"startTime":1767583953188,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9567,"timestamp":257287521,"id":1047,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-instance.js","layer":"app-pages-browser"},"startTime":1767583953188,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12796,"timestamp":257287772,"id":1049,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"pages-dir-browser"},"startTime":1767583953188,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":15888,"timestamp":257288304,"id":1053,"parentId":1005,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/match-segments.js","layer":"app-pages-browser"},"startTime":1767583953188,"traceId":"8482a19cb410207d"}]
11
+ [{"name":"build-module-js","duration":18852,"timestamp":257288196,"id":1052,"parentId":1005,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/error-boundary.js","layer":"app-pages-browser"},"startTime":1767583953188,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5661,"timestamp":257301932,"id":1055,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767583953202,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11287,"timestamp":257301833,"id":1054,"parentId":1005,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-boundary.js","layer":"app-pages-browser"},"startTime":1767583953202,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12634,"timestamp":257301986,"id":1056,"parentId":1005,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/bfcache.js","layer":"app-pages-browser"},"startTime":1767583953202,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14100,"timestamp":257302072,"id":1057,"parentId":1005,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/use-action-queue.js","layer":"app-pages-browser"},"startTime":1767583953202,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2289,"timestamp":257322101,"id":1058,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-base-path.js","layer":"pages-dir-browser"},"startTime":1767583953222,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1311,"timestamp":257331567,"id":1081,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"pages-dir-browser"},"startTime":1767583953232,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1468,"timestamp":257331694,"id":1084,"parentId":1011,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/jsx-runtime.js","layer":"pages-dir-browser"},"startTime":1767583953232,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6156,"timestamp":257330347,"id":1059,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/has-base-path.js","layer":"pages-dir-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":6487,"timestamp":257336938,"id":1087,"parentId":1015,"tags":{"layer":null},"startTime":1767583953237,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7475,"timestamp":257336835,"id":1086,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/index.js","layer":"pages-dir-browser"},"startTime":1767583953237,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":965,"timestamp":257343742,"id":1091,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-dom@19.2.3_react@19.2.3/node_modules/react-dom/client.js","layer":"pages-dir-browser"},"startTime":1767583953244,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":16852,"timestamp":257330440,"id":1060,"parentId":1003,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/search-params.browser.js","layer":"app-pages-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":17539,"timestamp":257330506,"id":1061,"parentId":1003,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/params.browser.js","layer":"app-pages-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":18822,"timestamp":257330560,"id":1062,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/on-recoverable-error.js","layer":"app-pages-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":20031,"timestamp":257330614,"id":1063,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/on-recoverable-error.js","layer":"pages-dir-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":21591,"timestamp":257330706,"id":1065,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/has-base-path.js","layer":"app-pages-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":24257,"timestamp":257330768,"id":1066,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/error-boundary-callbacks.js","layer":"app-pages-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":26441,"timestamp":257330882,"id":1067,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-initial-router-state.js","layer":"app-pages-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":28052,"timestamp":257330947,"id":1068,"parentId":1005,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/router-reducer-types.js","layer":"app-pages-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":28749,"timestamp":257331079,"id":1070,"parentId":1005,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-router-cache-key.js","layer":"app-pages-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":29473,"timestamp":257331127,"id":1071,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.js","layer":"pages-dir-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":34051,"timestamp":257331025,"id":1069,"parentId":1005,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fetch-server-response.js","layer":"app-pages-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":34718,"timestamp":257331222,"id":1073,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-dynamic.js","layer":"pages-dir-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":36303,"timestamp":257330657,"id":1064,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-base-path.js","layer":"app-pages-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":36676,"timestamp":257331301,"id":1075,"parentId":1005,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"app-pages-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":38289,"timestamp":257331262,"id":1074,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"pages-dir-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":38661,"timestamp":257331402,"id":1077,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767583953232,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":39366,"timestamp":257331439,"id":1078,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/hooks-client-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767583953232,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":40045,"timestamp":257331489,"id":1079,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/is-next-router-error.js","layer":"pages-dir-browser"},"startTime":1767583953232,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":40823,"timestamp":257331596,"id":1082,"parentId":1005,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/has-interception-route-in-current-tree.js","layer":"app-pages-browser"},"startTime":1767583953232,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":42891,"timestamp":257331530,"id":1080,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/adapters.js","layer":"pages-dir-browser"},"startTime":1767583953232,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":50776,"timestamp":257331351,"id":1076,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/script.js","layer":"pages-dir-browser"},"startTime":1767583953232,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":51743,"timestamp":257331174,"id":1072,"parentId":1005,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/disable-smooth-scroll.js","layer":"app-pages-browser"},"startTime":1767583953231,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":55931,"timestamp":257331649,"id":1083,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/tracing/tracer.js","layer":"pages-dir-browser"},"startTime":1767583953232,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":51544,"timestamp":257336733,"id":1085,"parentId":1016,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"pages-dir-browser"},"startTime":1767583953237,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":45651,"timestamp":257343451,"id":1088,"parentId":1013,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/handle-isr-error.js","layer":"app-pages-browser"},"startTime":1767583953244,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":59824,"timestamp":257343650,"id":1090,"parentId":1017,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation-untracked.js","layer":"app-pages-browser"},"startTime":1767583953244,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":60970,"timestamp":257343566,"id":1089,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/portal/index.js","layer":"pages-dir-browser"},"startTime":1767583953244,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":61650,"timestamp":257343958,"id":1093,"parentId":1017,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"app-pages-browser"},"startTime":1767583953244,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6152,"timestamp":257423178,"id":1095,"parentId":1002,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/jsx-runtime.js","layer":"app-pages-browser"},"startTime":1767583953323,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5743,"timestamp":257424305,"id":1097,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-dom/client.js","layer":"app-pages-browser"},"startTime":1767583953324,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6008,"timestamp":257424364,"id":1098,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-server-dom-webpack/client.browser.js","layer":"app-pages-browser"},"startTime":1767583953325,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2243,"timestamp":257428523,"id":1102,"parentId":1006,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/index.js","layer":"app-pages-browser"},"startTime":1767583953329,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2718,"timestamp":257428773,"id":1105,"parentId":1005,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-dom/index.js","layer":"app-pages-browser"},"startTime":1767583953329,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9935,"timestamp":257424094,"id":1096,"parentId":1038,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/polyfills/polyfill-module.js","layer":"app-pages-browser"},"startTime":1767583953324,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6351,"timestamp":257428285,"id":1101,"parentId":1019,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/framework/boundary-constants.js","layer":"app-pages-browser"},"startTime":1767583953328,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8394,"timestamp":257428670,"id":1104,"parentId":1052,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/is-next-router-error.js","layer":"app-pages-browser"},"startTime":1767583953329,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14501,"timestamp":257422995,"id":1094,"parentId":1017,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"app-pages-browser"},"startTime":1767583953323,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10030,"timestamp":257428581,"id":1103,"parentId":1042,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/set-attributes-from-props.js","layer":"pages-dir-browser"},"startTime":1767583953329,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12850,"timestamp":257428824,"id":1106,"parentId":1021,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"pages-dir-browser"},"startTime":1767583953329,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2964,"timestamp":257457654,"id":1109,"parentId":1000,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"pages-dir-browser"},"startTime":1767583953358,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2629,"timestamp":257459326,"id":1112,"parentId":1012,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"pages-dir-browser"},"startTime":1767583953360,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4803,"timestamp":257458346,"id":1110,"parentId":1009,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_default.js","layer":"app-pages-browser"},"startTime":1767583953359,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5039,"timestamp":257459148,"id":1111,"parentId":1006,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_interop_require_wildcard.js","layer":"app-pages-browser"},"startTime":1767583953359,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8539,"timestamp":257457529,"id":1108,"parentId":1025,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/styles/access-error-styles.js","layer":"app-pages-browser"},"startTime":1767583953358,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7294,"timestamp":257459375,"id":1113,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/create-href-from-url.js","layer":"app-pages-browser"},"startTime":1767583953360,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8493,"timestamp":257459458,"id":1114,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/add-base-path.js","layer":"app-pages-browser"},"startTime":1767583953360,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3366,"timestamp":257468753,"id":1119,"parentId":1062,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-error.js","layer":"app-pages-browser"},"startTime":1767583953369,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5892,"timestamp":257468563,"id":1116,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"app-pages-browser"},"startTime":1767583953369,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6837,"timestamp":257468623,"id":1117,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-bot.js","layer":"pages-dir-browser"},"startTime":1767583953369,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6993,"timestamp":257468882,"id":1120,"parentId":1071,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/warn-once.js","layer":"pages-dir-browser"},"startTime":1767583953369,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8841,"timestamp":257468690,"id":1118,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-announcer.js","layer":"app-pages-browser"},"startTime":1767583953369,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9834,"timestamp":257468932,"id":1121,"parentId":1079,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/http-access-fallback/http-access-fallback.js","layer":"pages-dir-browser"},"startTime":1767583953369,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":97019,"timestamp":257468480,"id":1115,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/add-base-path.js","layer":"pages-dir-browser"},"startTime":1767583953369,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":99112,"timestamp":257469062,"id":1123,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect.js","layer":"app-pages-browser"},"startTime":1767583953369,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":100445,"timestamp":257468980,"id":1122,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/nav-failure-handler.js","layer":"app-pages-browser"},"startTime":1767583953369,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":92020,"timestamp":257479497,"id":1124,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-error.js","layer":"app-pages-browser"},"startTime":1767583953380,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":92741,"timestamp":257479778,"id":1127,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/find-head-in-cache.js","layer":"app-pages-browser"},"startTime":1767583953380,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":95273,"timestamp":257479693,"id":1126,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/compute-changed-path.js","layer":"app-pages-browser"},"startTime":1767583953380,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":96013,"timestamp":257479933,"id":1129,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/root-error-boundary.js","layer":"app-pages-browser"},"startTime":1767583953380,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":97789,"timestamp":257479610,"id":1125,"parentId":1079,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-error.js","layer":"pages-dir-browser"},"startTime":1767583953380,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":102778,"timestamp":257479857,"id":1128,"parentId":1024,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/links.js","layer":"app-pages-browser"},"startTime":1767583953380,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":15739,"timestamp":257599365,"id":1136,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/route-loader.js","layer":"pages-dir-browser"},"startTime":1767583953500,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7268,"timestamp":257623981,"id":1139,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-matcher.js","layer":"pages-dir-browser"},"startTime":1767583953524,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8202,"timestamp":257623882,"id":1138,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-relative-url.js","layer":"pages-dir-browser"},"startTime":1767583953524,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9043,"timestamp":257623739,"id":1137,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"pages-dir-browser"},"startTime":1767583953524,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":290552,"timestamp":257343803,"id":1092,"parentId":1030,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/api/navigation.js","layer":"app-pages-browser"},"startTime":1767583953244,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8860,"timestamp":257625936,"id":1140,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/denormalize-page-path.js","layer":"pages-dir-browser"},"startTime":1767583953526,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9349,"timestamp":257626070,"id":1141,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/i18n/normalize-locale-path.js","layer":"pages-dir-browser"},"startTime":1767583953526,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9236,"timestamp":257627700,"id":1145,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"pages-dir-browser"},"startTime":1767583953528,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10364,"timestamp":257627609,"id":1144,"parentId":1119,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-plain-object.js","layer":"app-pages-browser"},"startTime":1767583953528,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13672,"timestamp":257627512,"id":1143,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-regex.js","layer":"pages-dir-browser"},"startTime":1767583953528,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":4063,"timestamp":257643105,"id":1147,"parentId":1030,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/Header.tsx","layer":"app-pages-browser"},"startTime":1767583953543,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4869,"timestamp":257665950,"id":1148,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/detect-domain-locale.js","layer":"pages-dir-browser"},"startTime":1767583953566,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5189,"timestamp":257666160,"id":1150,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/remove-locale.js","layer":"pages-dir-browser"},"startTime":1767583953566,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":471360,"timestamp":257666258,"id":1152,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"pages-dir-browser"},"startTime":1767583953566,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":472499,"timestamp":257666085,"id":1149,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/add-locale.js","layer":"pages-dir-browser"},"startTime":1767583953566,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":487158,"timestamp":257666210,"id":1151,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/resolve-href.js","layer":"pages-dir-browser"},"startTime":1767583953566,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1679,"timestamp":258179938,"id":1154,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/is-api-route.js","layer":"pages-dir-browser"},"startTime":1767583954080,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6494,"timestamp":258180075,"id":1155,"parentId":1136,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/encode-uri-path.js","layer":"pages-dir-browser"},"startTime":1767583954080,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":9672,"timestamp":258180284,"id":1157,"parentId":1030,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectList.tsx","layer":"app-pages-browser"},"startTime":1767583954080,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10007,"timestamp":258180686,"id":1159,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/compare-states.js","layer":"pages-dir-browser"},"startTime":1767583954081,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":13444,"timestamp":258180492,"id":1158,"parentId":1030,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectModal.tsx","layer":"app-pages-browser"},"startTime":1767583954081,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":26324,"timestamp":258180781,"id":1160,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-next-pathname-info.js","layer":"pages-dir-browser"},"startTime":1767583954081,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":28036,"timestamp":258180858,"id":1161,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"pages-dir-browser"},"startTime":1767583954081,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":30261,"timestamp":258180198,"id":1156,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-next-pathname-info.js","layer":"pages-dir-browser"},"startTime":1767583954080,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":30206,"timestamp":258180934,"id":1162,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/omit.js","layer":"pages-dir-browser"},"startTime":1767583954081,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":19966,"timestamp":258194758,"id":1163,"parentId":1030,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useProjectStore.ts","layer":"app-pages-browser"},"startTime":1767583954095,"traceId":"8482a19cb410207d"},{"name":"postcss-process","duration":800261,"timestamp":257911246,"id":1153,"parentId":1146,"tags":{},"startTime":1767583953811,"traceId":"8482a19cb410207d"},{"name":"postcss-loader","duration":1083693,"timestamp":257627920,"id":1146,"parentId":1142,"tags":{},"startTime":1767583953528,"traceId":"8482a19cb410207d"}]
12
+ [{"name":"css-loader","duration":47580,"timestamp":258711814,"id":1164,"parentId":1142,"tags":{"astUsed":"true"},"startTime":1767583954612,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3729,"timestamp":258762705,"id":1165,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/constants.js","layer":"pages-dir-browser"},"startTime":1767583954663,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":18414,"timestamp":258762810,"id":1166,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/bloom-filter.js","layer":"pages-dir-browser"},"startTime":1767583954663,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8064,"timestamp":258782775,"id":1167,"parentId":1023,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interpolate-as.js","layer":"pages-dir-browser"},"startTime":1767583954683,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8592,"timestamp":258782898,"id":1168,"parentId":1043,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-asset-path-from-route.js","layer":"pages-dir-browser"},"startTime":1767583954683,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8790,"timestamp":258783142,"id":1170,"parentId":1047,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/is-thenable.js","layer":"app-pages-browser"},"startTime":1767583954683,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":10187,"timestamp":258783242,"id":1171,"parentId":1030,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/index.ts","layer":"app-pages-browser"},"startTime":1767583954683,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":15936,"timestamp":258782986,"id":1169,"parentId":1043,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/constants.js","layer":"pages-dir-browser"},"startTime":1767583954683,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":16687,"timestamp":258785739,"id":1173,"parentId":1047,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/router-reducer.js","layer":"app-pages-browser"},"startTime":1767583954686,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":20202,"timestamp":258785628,"id":1172,"parentId":1047,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/segment-cache.js","layer":"app-pages-browser"},"startTime":1767583954686,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":20791,"timestamp":258785838,"id":1174,"parentId":1047,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/prefetch-reducer.js","layer":"app-pages-browser"},"startTime":1767583954686,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":23727,"timestamp":258785934,"id":1175,"parentId":1055,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config.js","layer":"pages-dir-browser"},"startTime":1767583954686,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":24020,"timestamp":258786380,"id":1178,"parentId":1032,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/button.tsx","layer":"app-pages-browser"},"startTime":1767583954687,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":24317,"timestamp":258786564,"id":1179,"parentId":1031,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/input.tsx","layer":"app-pages-browser"},"startTime":1767583954687,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":27283,"timestamp":258786027,"id":1176,"parentId":1054,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.js","layer":"app-pages-browser"},"startTime":1767583954686,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":32948,"timestamp":258786121,"id":1177,"parentId":1032,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/workspace/WorkspaceLayout.tsx","layer":"app-pages-browser"},"startTime":1767583954686,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7258,"timestamp":258860632,"id":1180,"parentId":1059,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"pages-dir-browser"},"startTime":1767583954761,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7640,"timestamp":258860784,"id":1181,"parentId":1065,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/path-has-prefix.js","layer":"app-pages-browser"},"startTime":1767583954761,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8481,"timestamp":258860894,"id":1182,"parentId":1060,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/search-params.browser.prod.js","layer":"app-pages-browser"},"startTime":1767583954761,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":9558,"timestamp":258861024,"id":1183,"parentId":1031,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/api.ts","layer":"app-pages-browser"},"startTime":1767583954761,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10665,"timestamp":258861226,"id":1184,"parentId":1061,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request/params.browser.prod.js","layer":"app-pages-browser"},"startTime":1767583954761,"traceId":"8482a19cb410207d"},{"name":"font-loader","duration":1349029,"timestamp":257527525,"id":1133,"parentId":1132,"tags":{},"startTime":1767583953428,"traceId":"8482a19cb410207d"},{"name":"postcss","duration":1649,"timestamp":258876904,"id":1185,"parentId":1132,"tags":{},"startTime":1767583954777,"traceId":"8482a19cb410207d"},{"name":"next-font-loader","duration":1395482,"timestamp":257483147,"id":1132,"parentId":1130,"tags":{},"startTime":1767583953383,"traceId":"8482a19cb410207d"},{"name":"css-loader","duration":13933,"timestamp":258878586,"id":1186,"parentId":1130,"tags":{"astUsed":"true"},"startTime":1767583954779,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":1412890,"timestamp":257480042,"id":1130,"parentId":1099,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css.webpack[javascript/auto]!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}","layer":null},"startTime":1767583953380,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7565,"timestamp":258894596,"id":1188,"parentId":1063,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/report-global-error.js","layer":"pages-dir-browser"},"startTime":1767583954795,"traceId":"8482a19cb410207d"},{"name":"font-loader","duration":1347707,"timestamp":257554945,"id":1135,"parentId":1134,"tags":{},"startTime":1767583953455,"traceId":"8482a19cb410207d"},{"name":"postcss","duration":749,"timestamp":258902708,"id":1189,"parentId":1134,"tags":{},"startTime":1767583954803,"traceId":"8482a19cb410207d"},{"name":"next-font-loader","duration":1348617,"timestamp":257554899,"id":1134,"parentId":1131,"tags":{},"startTime":1767583953455,"traceId":"8482a19cb410207d"},{"name":"css-loader","duration":3000,"timestamp":258903491,"id":1190,"parentId":1131,"tags":{"astUsed":"true"},"startTime":1767583954804,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":1424086,"timestamp":257482862,"id":1131,"parentId":1100,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css.webpack[javascript/auto]!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[2].use[1]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/next-font-loader/index.js??ruleSet[1].rules[14].oneOf[2].use[2]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}","layer":null},"startTime":1767583953383,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":15982,"timestamp":258894471,"id":1187,"parentId":1062,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/react-client-callbacks/report-global-error.js","layer":"app-pages-browser"},"startTime":1767583954795,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7977,"timestamp":258907154,"id":1191,"parentId":1067,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/flight-data-helpers.js","layer":"app-pages-browser"},"startTime":1767583954807,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":15015,"timestamp":258907275,"id":1192,"parentId":1067,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fill-lazy-items-till-leaf-with-head.js","layer":"app-pages-browser"},"startTime":1767583954807,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9856,"timestamp":258923617,"id":1195,"parentId":1067,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/refetch-inactive-parallel-segments.js","layer":"app-pages-browser"},"startTime":1767583954824,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11103,"timestamp":258923376,"id":1193,"parentId":1070,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"app-pages-browser"},"startTime":1767583954824,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":16011,"timestamp":258923516,"id":1194,"parentId":1067,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/prefetch-cache-utils.js","layer":"app-pages-browser"},"startTime":1767583954824,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":36500,"timestamp":258923714,"id":1196,"parentId":1181,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/parse-path.js","layer":"app-pages-browser"},"startTime":1767583954824,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":22119,"timestamp":258940671,"id":1197,"parentId":1069,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/route-params.js","layer":"app-pages-browser"},"startTime":1767583954841,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":23001,"timestamp":258940809,"id":1198,"parentId":1069,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/app-router-headers.js","layer":"app-pages-browser"},"startTime":1767583954841,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":19262,"timestamp":258944863,"id":1200,"parentId":1075,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"app-pages-browser"},"startTime":1767583954845,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":20253,"timestamp":258944974,"id":1201,"parentId":1073,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"pages-dir-browser"},"startTime":1767583954845,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":21376,"timestamp":258945079,"id":1202,"parentId":1082,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/interception-routes.js","layer":"app-pages-browser"},"startTime":1767583954845,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":21499,"timestamp":258945250,"id":1204,"parentId":1080,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/as-path-to-search-params.js","layer":"pages-dir-browser"},"startTime":1767583954845,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":22458,"timestamp":258945170,"id":1203,"parentId":1076,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/request-idle-callback.js","layer":"pages-dir-browser"},"startTime":1767583954845,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":23048,"timestamp":258945321,"id":1205,"parentId":1062,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"app-pages-browser"},"startTime":1767583954846,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":26617,"timestamp":258942772,"id":1199,"parentId":1069,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/set-cache-busting-search-param.js","layer":"app-pages-browser"},"startTime":1767583954843,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":24510,"timestamp":258945402,"id":1206,"parentId":1063,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/lazy-dynamic/bailout-to-csr.js","layer":"pages-dir-browser"},"startTime":1767583954846,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6046,"timestamp":258979480,"id":1207,"parentId":1201,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/app-paths.js","layer":"pages-dir-browser"},"startTime":1767583954880,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6664,"timestamp":258979909,"id":1208,"parentId":1106,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"pages-dir-browser"},"startTime":1767583954880,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6949,"timestamp":258979998,"id":1209,"parentId":1106,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-context.shared-runtime.js","layer":"pages-dir-browser"},"startTime":1767583954880,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7250,"timestamp":258980095,"id":1210,"parentId":1106,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"pages-dir-browser"},"startTime":1767583954880,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":756,"timestamp":258991614,"id":1211,"parentId":1084,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/cjs/react-jsx-runtime.production.js","layer":"pages-dir-browser"},"startTime":1767583954892,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14765,"timestamp":258991668,"id":1212,"parentId":1086,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react@19.2.3/node_modules/react/cjs/react.production.js","layer":"pages-dir-browser"},"startTime":1767583954892,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":230684,"timestamp":258991696,"id":1213,"parentId":1091,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-dom@19.2.3_react@19.2.3/node_modules/react-dom/cjs/react-dom-client.production.js","layer":"pages-dir-browser"},"startTime":1767583954892,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":231115,"timestamp":258991718,"id":1214,"parentId":1095,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/cjs/react-jsx-runtime.production.js","layer":"app-pages-browser"},"startTime":1767583954892,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":2548011,"timestamp":256678061,"id":980,"parentId":976,"tags":{"request":"next-client-pages-loader?absolutePagePath=%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-not-found.js&page=%2F_not-found%2Fpage!"},"startTime":1767583952578,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4379,"timestamp":259225793,"id":1217,"parentId":1102,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react/cjs/react.production.js","layer":"app-pages-browser"},"startTime":1767583955126,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8637,"timestamp":259225565,"id":1215,"parentId":1207,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment.js","layer":"pages-dir-browser"},"startTime":1767583955126,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11660,"timestamp":259225715,"id":1216,"parentId":1207,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/ensure-leading-slash.js","layer":"pages-dir-browser"},"startTime":1767583955126,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12254,"timestamp":259239171,"id":1219,"parentId":1098,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-server-dom-webpack/cjs/react-server-dom-webpack-client.browser.production.js","layer":"app-pages-browser"},"startTime":1767583955139,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":147794,"timestamp":259257268,"id":1228,"parentId":1097,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-dom/cjs/react-dom-client.production.js","layer":"app-pages-browser"},"startTime":1767583955157,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":149825,"timestamp":259257307,"id":1229,"parentId":1105,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/react-dom/cjs/react-dom.production.js","layer":"app-pages-browser"},"startTime":1767583955157,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":155945,"timestamp":259256617,"id":1220,"parentId":1114,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"app-pages-browser"},"startTime":1767583955157,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":156483,"timestamp":259256737,"id":1221,"parentId":1115,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/normalize-trailing-slash.js","layer":"pages-dir-browser"},"startTime":1767583955157,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":156740,"timestamp":259256815,"id":1222,"parentId":1114,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"app-pages-browser"},"startTime":1767583955157,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":178778,"timestamp":259257067,"id":1225,"parentId":1117,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"pages-dir-browser"},"startTime":1767583955157,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":179139,"timestamp":259257133,"id":1226,"parentId":1123,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"app-pages-browser"},"startTime":1767583955157,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":179576,"timestamp":259257208,"id":1227,"parentId":1125,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/redirect-status-code.js","layer":"pages-dir-browser"},"startTime":1767583955157,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":184333,"timestamp":259256967,"id":1224,"parentId":1116,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/html-bots.js","layer":"app-pages-browser"},"startTime":1767583955157,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":185053,"timestamp":259256901,"id":1223,"parentId":1115,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-prefix.js","layer":"pages-dir-browser"},"startTime":1767583955157,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":17881,"timestamp":259424497,"id":1230,"parentId":1080,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/index.js","layer":"pages-dir-browser"},"startTime":1767583955325,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":354,"timestamp":259453139,"id":1234,"parentId":1076,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-dom@19.2.3_react@19.2.3/node_modules/react-dom/index.js","layer":"pages-dir-browser"},"startTime":1767583955353,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2994,"timestamp":259452912,"id":1232,"parentId":1220,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-trailing-slash.js","layer":"app-pages-browser"},"startTime":1767583955353,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4174,"timestamp":259453060,"id":1233,"parentId":1129,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/errors/graceful-degrade-boundary.js","layer":"app-pages-browser"},"startTime":1767583955353,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3954,"timestamp":259463455,"id":1235,"parentId":1136,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/trusted-types.js","layer":"pages-dir-browser"},"startTime":1767583955364,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4092,"timestamp":259463599,"id":1237,"parentId":1140,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/page-path/normalize-path-sep.js","layer":"pages-dir-browser"},"startTime":1767583955364,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4390,"timestamp":259463649,"id":1238,"parentId":1143,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/escape-regexp.js","layer":"pages-dir-browser"},"startTime":1767583955364,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5331,"timestamp":259463536,"id":1236,"parentId":1139,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/route-match-utils.js","layer":"pages-dir-browser"},"startTime":1767583955364,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":5611,"timestamp":259463741,"id":1240,"parentId":1147,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/layout/LanguageSwitcher.tsx","layer":"app-pages-browser"},"startTime":1767583955364,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8044,"timestamp":259463695,"id":1239,"parentId":1143,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/get-dynamic-param.js","layer":"pages-dir-browser"},"startTime":1767583955364,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8330,"timestamp":259463858,"id":1241,"parentId":1160,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-path-suffix.js","layer":"pages-dir-browser"},"startTime":1767583955364,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8944,"timestamp":259463906,"id":1242,"parentId":1160,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/add-locale.js","layer":"pages-dir-browser"},"startTime":1767583955364,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1742,"timestamp":259476404,"id":1243,"parentId":1156,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/remove-path-prefix.js","layer":"pages-dir-browser"},"startTime":1767583955377,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":2183,"timestamp":259476613,"id":1245,"parentId":1157,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/CreateProjectCard.tsx","layer":"app-pages-browser"},"startTime":1767583955377,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":4361,"timestamp":259476494,"id":1244,"parentId":1157,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/project/ProjectCard.tsx","layer":"app-pages-browser"},"startTime":1767583955377,"traceId":"8482a19cb410207d"},{"name":"build-module-css","duration":1861523,"timestamp":257626165,"id":1142,"parentId":1107,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css.webpack[javascript/auto]!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[2]!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[10].use[3]!/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css","layer":null},"startTime":1767583953526,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":4127,"timestamp":259488582,"id":1246,"parentId":1158,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/dialog.tsx","layer":"app-pages-browser"},"startTime":1767583955389,"traceId":"8482a19cb410207d"},{"name":"build-module-json","duration":939,"timestamp":259493132,"id":1248,"parentId":1171,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/en.json","layer":"app-pages-browser"},"startTime":1767583955393,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3795,"timestamp":259491164,"id":1247,"parentId":1169,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/modern-browserslist-target.js","layer":"pages-dir-browser"},"startTime":1767583955391,"traceId":"8482a19cb410207d"},{"name":"build-module-json","duration":152,"timestamp":259495639,"id":1249,"parentId":1171,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/i18n/translations/ko.json","layer":"app-pages-browser"},"startTime":1767583955396,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":259018,"timestamp":259238943,"id":1218,"parentId":1147,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/api/image.js","layer":"app-pages-browser"},"startTime":1767583955139,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4366,"timestamp":259496695,"id":1250,"parentId":1174,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/promise-queue.js","layer":"app-pages-browser"},"startTime":1767583955397,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5774,"timestamp":259496930,"id":1253,"parentId":1173,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/restore-reducer.js","layer":"app-pages-browser"},"startTime":1767583955397,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6695,"timestamp":259496854,"id":1252,"parentId":1173,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/server-patch-reducer.js","layer":"app-pages-browser"},"startTime":1767583955397,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7800,"timestamp":259496989,"id":1254,"parentId":1173,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/refresh-reducer.js","layer":"app-pages-browser"},"startTime":1767583955397,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8763,"timestamp":259497069,"id":1255,"parentId":1173,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/hmr-refresh-reducer.js","layer":"app-pages-browser"},"startTime":1767583955397,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":8347,"timestamp":259498452,"id":1256,"parentId":1245,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/card.tsx","layer":"app-pages-browser"},"startTime":1767583955399,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9054,"timestamp":259498656,"id":1257,"parentId":1176,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/navigation.react-server.js","layer":"app-pages-browser"},"startTime":1767583955399,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":21489,"timestamp":259498756,"id":1258,"parentId":1173,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/server-action-reducer.js","layer":"app-pages-browser"},"startTime":1767583955399,"traceId":"8482a19cb410207d"}]
13
+ [{"name":"build-module-js","duration":19373,"timestamp":259501313,"id":1259,"parentId":1176,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/server-inserted-html.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767583955402,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":26741,"timestamp":259496790,"id":1251,"parentId":1173,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/navigate-reducer.js","layer":"app-pages-browser"},"startTime":1767583955397,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13897,"timestamp":259510886,"id":1260,"parentId":1176,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unrecognized-action-error.js","layer":"app-pages-browser"},"startTime":1767583955411,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1036,"timestamp":259541433,"id":1265,"parentId":1130,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/webpack/loaders/css-loader/src/runtime/api.js","layer":null},"startTime":1767583955442,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":2133686,"timestamp":257424415,"id":1099,"parentId":989,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist\",\"arguments\":[{\"variable\":\"--font-geist-sans\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistSans\"}","layer":"app-pages-browser"},"startTime":1767583953325,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":2131248,"timestamp":257428040,"id":1100,"parentId":989,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/font/google/target.css?{\"path\":\"src/app/layout.tsx\",\"import\":\"Geist_Mono\",\"arguments\":[{\"variable\":\"--font-geist-mono\",\"subsets\":[\"latin\"]}],\"variableName\":\"geistMono\"}","layer":"app-pages-browser"},"startTime":1767583953328,"traceId":"8482a19cb410207d"},{"name":"build-module-css","duration":2110827,"timestamp":257456628,"id":1107,"parentId":989,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/app/globals.css","layer":"app-pages-browser"},"startTime":1767583953357,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":124834,"timestamp":259443451,"id":1231,"parentId":1147,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-dir/link.js","layer":"app-pages-browser"},"startTime":1767583955344,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":28015,"timestamp":259540955,"id":1261,"parentId":1176,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/reducers/get-segment-value.js","layer":"app-pages-browser"},"startTime":1767583955441,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":28489,"timestamp":259541166,"id":1262,"parentId":1182,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/reflect-utils.js","layer":"app-pages-browser"},"startTime":1767583955441,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":28871,"timestamp":259541265,"id":1263,"parentId":1199,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/cache-busting-search-param.js","layer":"app-pages-browser"},"startTime":1767583955441,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":29496,"timestamp":259541351,"id":1264,"parentId":1195,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-flight-data.js","layer":"app-pages-browser"},"startTime":1767583955442,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4147,"timestamp":259583215,"id":1266,"parentId":1197,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/segment-cache/segment-value-encoding.js","layer":"app-pages-browser"},"startTime":1767583955483,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":151,"timestamp":259587585,"id":1267,"parentId":1099,"tags":{},"startTime":1767583955488,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":35,"timestamp":259587750,"id":1268,"parentId":1100,"tags":{},"startTime":1767583955488,"traceId":"8482a19cb410207d"},{"name":"build-module","duration":57,"timestamp":259587797,"id":1269,"parentId":1107,"tags":{},"startTime":1767583955488,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":11141,"timestamp":259588207,"id":1273,"parentId":1171,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/middleware.mjs","layer":"app-pages-browser"},"startTime":1767583955488,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":11446,"timestamp":259588382,"id":1274,"parentId":1163,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/index.mjs","layer":"app-pages-browser"},"startTime":1767583955489,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13347,"timestamp":259588115,"id":1272,"parentId":1231,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/is-local-url.js","layer":"app-pages-browser"},"startTime":1767583955488,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":16536,"timestamp":259587872,"id":1270,"parentId":1231,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils.js","layer":"app-pages-browser"},"startTime":1767583955488,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":18448,"timestamp":259587999,"id":1271,"parentId":1231,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/format-url.js","layer":"app-pages-browser"},"startTime":1767583955488,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":4107,"timestamp":259607842,"id":1275,"parentId":1178,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/lib/utils.ts","layer":"app-pages-browser"},"startTime":1767583955508,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2206,"timestamp":259622218,"id":1282,"parentId":1234,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-dom@19.2.3_react@19.2.3/node_modules/react-dom/cjs/react-dom.production.js","layer":"pages-dir-browser"},"startTime":1767583955522,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11802,"timestamp":259614482,"id":1276,"parentId":1271,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/querystring.js","layer":"app-pages-browser"},"startTime":1767583955515,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":14436,"timestamp":259614628,"id":1277,"parentId":1177,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileExplorer.tsx","layer":"app-pages-browser"},"startTime":1767583955515,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":16055,"timestamp":259614827,"id":1278,"parentId":1177,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/file/FileViewer.tsx","layer":"app-pages-browser"},"startTime":1767583955515,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":17066,"timestamp":259615248,"id":1280,"parentId":1177,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ChatPanel.tsx","layer":"app-pages-browser"},"startTime":1767583955515,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":21363,"timestamp":259615045,"id":1279,"parentId":1177,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/database/DatabasePanel.tsx","layer":"app-pages-browser"},"startTime":1767583955515,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":28621,"timestamp":259622099,"id":1281,"parentId":1230,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router/utils/sorted-routes.js","layer":"pages-dir-browser"},"startTime":1767583955522,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":36000,"timestamp":259622264,"id":1283,"parentId":1177,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/checkpoint/CheckpointPanel.tsx","layer":"app-pages-browser"},"startTime":1767583955522,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":43652,"timestamp":259622515,"id":1285,"parentId":1177,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/testing/TestRunner.tsx","layer":"app-pages-browser"},"startTime":1767583955523,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":48564,"timestamp":259622616,"id":1286,"parentId":1177,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/PreviewPanel.tsx","layer":"app-pages-browser"},"startTime":1767583955523,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":55499,"timestamp":259622410,"id":1284,"parentId":1177,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/env/EnvPanel.tsx","layer":"app-pages-browser"},"startTime":1767583955523,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":6702,"timestamp":259700317,"id":1297,"parentId":1178,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/class-variance-authority@0.7.1/node_modules/class-variance-authority/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583955601,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1655,"timestamp":259712319,"id":1302,"parentId":1236,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/lib/route-pattern-normalizer.js","layer":"pages-dir-browser"},"startTime":1767583955613,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":77951,"timestamp":259714118,"id":1303,"parentId":1280,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageList.tsx","layer":"app-pages-browser"},"startTime":1767583955614,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":80043,"timestamp":259714329,"id":1304,"parentId":1280,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageInput.tsx","layer":"app-pages-browser"},"startTime":1767583955615,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":95334,"timestamp":259699492,"id":1288,"parentId":1031,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Check,FolderOpen,Loader2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955600,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":108774,"timestamp":259699674,"id":1290,"parentId":1177,"tags":{"name":"__barrel_optimize__?names=Database,Eye,FlaskConical,FolderTree,GitBranch,Settings2,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955600,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":108943,"timestamp":259699763,"id":1291,"parentId":1245,"tags":{"name":"__barrel_optimize__?names=Plus,Sparkles!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955600,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":109599,"timestamp":259699313,"id":1287,"parentId":1032,"tags":{"name":"__barrel_optimize__?names=AlertCircle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955600,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":109312,"timestamp":259699851,"id":1292,"parentId":1244,"tags":{"name":"__barrel_optimize__?names=Globe,Server,Smartphone,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955600,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":109767,"timestamp":259699589,"id":1289,"parentId":1147,"tags":{"name":"__barrel_optimize__?names=ArrowLeft,Settings!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955600,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":109775,"timestamp":259699944,"id":1293,"parentId":1277,"tags":{"name":"__barrel_optimize__?names=ChevronDown,ChevronRight,File,Folder,FolderOpen,RefreshCw!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955600,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":110205,"timestamp":259700153,"id":1295,"parentId":1280,"tags":{"name":"__barrel_optimize__?names=MessageSquarePlus!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955600,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":101651,"timestamp":259709166,"id":1298,"parentId":1283,"tags":{"name":"__barrel_optimize__?names=AlertCircle,ChevronDown,ChevronRight,Clock,FileText,GitBranch,Plus,RefreshCw,RotateCcw!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955609,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":106477,"timestamp":259709292,"id":1299,"parentId":1285,"tags":{"name":"__barrel_optimize__?names=AlertCircle,CheckCircle,Clock,FlaskConical,Play,Plus,RefreshCw,Trash2,XCircle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955609,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":106905,"timestamp":259709389,"id":1300,"parentId":1286,"tags":{"name":"__barrel_optimize__?names=ExternalLink,Loader2,Monitor,Package,Play,RefreshCw,RotateCcw,Smartphone,Square,Tablet,Terminal,Zap!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955610,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":116486,"timestamp":259700057,"id":1294,"parentId":1278,"tags":{"name":"__barrel_optimize__?names=Check,Copy,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955600,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":116667,"timestamp":259700235,"id":1296,"parentId":1279,"tags":{"name":"__barrel_optimize__?names=AlertCircle,ChevronLeft,ChevronRight,Database,Play,RefreshCw,Table,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955600,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":107765,"timestamp":259709511,"id":1301,"parentId":1284,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Eye,EyeOff,FileText,Plus,RefreshCw,Save,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955610,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":2678,"timestamp":259844576,"id":1305,"parentId":1158,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/index.ts","layer":"app-pages-browser"},"startTime":1767583955745,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":446,"timestamp":259848186,"id":1309,"parentId":1213,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/scheduler@0.27.0/node_modules/scheduler/index.js","layer":"pages-dir-browser"},"startTime":1767583955748,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3209,"timestamp":259848232,"id":1310,"parentId":1228,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/scheduler/index.js","layer":"app-pages-browser"},"startTime":1767583955748,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":10557,"timestamp":259844845,"id":1306,"parentId":1286,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ConsoleViewer.tsx","layer":"app-pages-browser"},"startTime":1767583955745,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":8938,"timestamp":259847834,"id":1307,"parentId":1286,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/preview/ErrorOverlay.tsx","layer":"app-pages-browser"},"startTime":1767583955748,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11521,"timestamp":259848094,"id":1308,"parentId":1304,"tags":{"name":"__barrel_optimize__?names=Clock,Paperclip,Send!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955748,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2379,"timestamp":259858401,"id":1311,"parentId":1218,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-external.js","layer":"app-pages-browser"},"startTime":1767583955759,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3784,"timestamp":259864908,"id":1312,"parentId":1236,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/path-to-regexp/index.js","layer":"pages-dir-browser"},"startTime":1767583955765,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11278,"timestamp":259864961,"id":1313,"parentId":1257,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/not-found.js","layer":"app-pages-browser"},"startTime":1767583955765,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11910,"timestamp":259865067,"id":1314,"parentId":1257,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/forbidden.js","layer":"app-pages-browser"},"startTime":1767583955765,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":26205,"timestamp":259865200,"id":1316,"parentId":1303,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MessageItem.tsx","layer":"app-pages-browser"},"startTime":1767583955765,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":26689,"timestamp":259865416,"id":1318,"parentId":1304,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/ModeToggle.tsx","layer":"app-pages-browser"},"startTime":1767583955766,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":26449,"timestamp":259873658,"id":1319,"parentId":1304,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/FilePreview.tsx","layer":"app-pages-browser"},"startTime":1767583955774,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":26862,"timestamp":259873850,"id":1320,"parentId":1257,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unstable-rethrow.js","layer":"app-pages-browser"},"startTime":1767583955774,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":27953,"timestamp":259874074,"id":1322,"parentId":1252,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/apply-router-state-patch-to-tree.js","layer":"app-pages-browser"},"startTime":1767583955774,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":38815,"timestamp":259865311,"id":1317,"parentId":1303,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/StreamingMessage.tsx","layer":"app-pages-browser"},"startTime":1767583955766,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":39672,"timestamp":259865145,"id":1315,"parentId":1257,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unauthorized.js","layer":"app-pages-browser"},"startTime":1767583955765,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":31186,"timestamp":259874295,"id":1325,"parentId":1258,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/assign-location.js","layer":"app-pages-browser"},"startTime":1767583955774,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":28837,"timestamp":259877613,"id":1326,"parentId":1258,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/server-reference-info.js","layer":"app-pages-browser"},"startTime":1767583955778,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":30962,"timestamp":259877730,"id":1327,"parentId":1251,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-below-flight-segmentpath.js","layer":"app-pages-browser"},"startTime":1767583955778,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":35114,"timestamp":259874222,"id":1324,"parentId":1254,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-segment-mismatch.js","layer":"app-pages-browser"},"startTime":1767583955774,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":32180,"timestamp":259877818,"id":1328,"parentId":1251,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/should-hard-navigate.js","layer":"app-pages-browser"},"startTime":1767583955778,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":32882,"timestamp":259877901,"id":1329,"parentId":1252,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/is-navigating-to-new-root-layout.js","layer":"app-pages-browser"},"startTime":1767583955778,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":43778,"timestamp":259873934,"id":1321,"parentId":1253,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/ppr-navigations.js","layer":"app-pages-browser"},"startTime":1767583955774,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":39984,"timestamp":259878650,"id":1332,"parentId":1231,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/use-merged-ref.js","layer":"app-pages-browser"},"startTime":1767583955779,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":42221,"timestamp":259878566,"id":1331,"parentId":1251,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/aliased-prefetch-navigations.js","layer":"app-pages-browser"},"startTime":1767583955779,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":43214,"timestamp":259878462,"id":1330,"parentId":1251,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/clear-cache-node-data-for-segment-path.js","layer":"app-pages-browser"},"startTime":1767583955779,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":48103,"timestamp":259874152,"id":1323,"parentId":1252,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/handle-mutable.js","layer":"app-pages-browser"},"startTime":1767583955774,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":7895,"timestamp":259931283,"id":1336,"parentId":1274,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/vanilla.mjs","layer":"app-pages-browser"},"startTime":1767583955831,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":8381,"timestamp":259931477,"id":1337,"parentId":1274,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zustand@5.0.9_@types+react@19.2.7_react@19.2.3/node_modules/zustand/esm/react.mjs","layer":"app-pages-browser"},"startTime":1767583955832,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13389,"timestamp":259931882,"id":1340,"parentId":1250,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_loose_base.js","layer":"app-pages-browser"},"startTime":1767583955832,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":17597,"timestamp":259930362,"id":1334,"parentId":1263,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/hash.js","layer":"app-pages-browser"},"startTime":1767583955831,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":18129,"timestamp":259931167,"id":1335,"parentId":1264,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/fill-cache-with-new-subtree-data.js","layer":"app-pages-browser"},"startTime":1767583955831,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":19447,"timestamp":259930196,"id":1333,"parentId":1231,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/utils/error-once.js","layer":"app-pages-browser"},"startTime":1767583955830,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":18309,"timestamp":259931783,"id":1339,"parentId":1307,"tags":{"name":"__barrel_optimize__?names=Check,Copy,ExternalLink,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955832,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":18742,"timestamp":259931669,"id":1338,"parentId":1306,"tags":{"name":"__barrel_optimize__?names=AlertCircle,Download,Terminal,Trash2!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955832,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4860,"timestamp":259957231,"id":1341,"parentId":1250,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_loose_key.js","layer":"app-pages-browser"},"startTime":1767583955857,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10575,"timestamp":259958023,"id":1344,"parentId":1288,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-alert.js","layer":"app-pages-browser"},"startTime":1767583955858,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":10783,"timestamp":259958130,"id":1345,"parentId":1288,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/check.js","layer":"app-pages-browser"},"startTime":1767583955858,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":11008,"timestamp":259958233,"id":1346,"parentId":1288,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-open.js","layer":"app-pages-browser"},"startTime":1767583955858,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":12608,"timestamp":259957698,"id":1343,"parentId":1286,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/usePreviewStore.ts","layer":"app-pages-browser"},"startTime":1767583955858,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12278,"timestamp":259958327,"id":1347,"parentId":1288,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/loader-circle.js","layer":"app-pages-browser"},"startTime":1767583955859,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14828,"timestamp":259958415,"id":1348,"parentId":1290,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/database.js","layer":"app-pages-browser"},"startTime":1767583955859,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":15190,"timestamp":259958515,"id":1349,"parentId":1290,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eye.js","layer":"app-pages-browser"},"startTime":1767583955859,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":15445,"timestamp":259958606,"id":1350,"parentId":1290,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-tree.js","layer":"app-pages-browser"},"startTime":1767583955859,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":28665,"timestamp":259957495,"id":1342,"parentId":1280,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/stores/useChatStore.ts","layer":"app-pages-browser"},"startTime":1767583955858,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13349,"timestamp":259975129,"id":1357,"parentId":1290,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings-2.js","layer":"app-pages-browser"},"startTime":1767583955875,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13767,"timestamp":259975071,"id":1356,"parentId":1290,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/git-branch.js","layer":"app-pages-browser"},"startTime":1767583955875,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14192,"timestamp":259974978,"id":1355,"parentId":1290,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/flask-conical.js","layer":"app-pages-browser"},"startTime":1767583955875,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14267,"timestamp":259975190,"id":1358,"parentId":1290,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/x.js","layer":"app-pages-browser"},"startTime":1767583955875,"traceId":"8482a19cb410207d"}]
14
+ [{"name":"build-module-js","duration":14497,"timestamp":259975241,"id":1359,"parentId":1291,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/plus.js","layer":"app-pages-browser"},"startTime":1767583955875,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14829,"timestamp":259975289,"id":1360,"parentId":1291,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/sparkles.js","layer":"app-pages-browser"},"startTime":1767583955875,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":15087,"timestamp":259975335,"id":1361,"parentId":1292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/globe.js","layer":"app-pages-browser"},"startTime":1767583955876,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":16164,"timestamp":259974701,"id":1351,"parentId":1316,"tags":{"name":"__barrel_optimize__?names=Bot,CheckCircle2,Edit3,FileText,FolderSearch,Globe,ListTodo,Search,Terminal!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955875,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":20554,"timestamp":259974803,"id":1352,"parentId":1318,"tags":{"name":"__barrel_optimize__?names=Hammer,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955875,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":20734,"timestamp":259974864,"id":1353,"parentId":1319,"tags":{"name":"__barrel_optimize__?names=FileText,Loader2,X!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955875,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":21179,"timestamp":259974919,"id":1354,"parentId":1317,"tags":{"name":"__barrel_optimize__?names=Bot,CheckCircle2,Edit3,FileText,FolderSearch,Globe,ListTodo,Loader2,Search,Terminal!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955875,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6300,"timestamp":260007825,"id":1363,"parentId":1292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/smartphone.js","layer":"app-pages-browser"},"startTime":1767583955908,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6610,"timestamp":260007925,"id":1364,"parentId":1292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/trash-2.js","layer":"app-pages-browser"},"startTime":1767583955908,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7624,"timestamp":260007672,"id":1362,"parentId":1292,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/server.js","layer":"app-pages-browser"},"startTime":1767583955908,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9418,"timestamp":260009776,"id":1367,"parentId":1289,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/arrow-left.js","layer":"app-pages-browser"},"startTime":1767583955910,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":12796,"timestamp":260009878,"id":1368,"parentId":1289,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/settings.js","layer":"app-pages-browser"},"startTime":1767583955910,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13024,"timestamp":260009969,"id":1369,"parentId":1293,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-down.js","layer":"app-pages-browser"},"startTime":1767583955910,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":13231,"timestamp":260010084,"id":1370,"parentId":1293,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-right.js","layer":"app-pages-browser"},"startTime":1767583955910,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":16396,"timestamp":260009558,"id":1366,"parentId":1317,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/AskUserQuestionBlock.tsx","layer":"app-pages-browser"},"startTime":1767583955910,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":16128,"timestamp":260010179,"id":1371,"parentId":1293,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file.js","layer":"app-pages-browser"},"startTime":1767583955910,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":16327,"timestamp":260010265,"id":1372,"parentId":1293,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder.js","layer":"app-pages-browser"},"startTime":1767583955910,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":17007,"timestamp":260010349,"id":1373,"parentId":1293,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/refresh-cw.js","layer":"app-pages-browser"},"startTime":1767583955911,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":21786,"timestamp":260008034,"id":1365,"parentId":1316,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/chat/MarkdownRenderer.tsx","layer":"app-pages-browser"},"startTime":1767583955908,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3809,"timestamp":260038818,"id":1375,"parentId":1298,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/clock.js","layer":"app-pages-browser"},"startTime":1767583955939,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4481,"timestamp":260038908,"id":1376,"parentId":1298,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/file-text.js","layer":"app-pages-browser"},"startTime":1767583955939,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3860,"timestamp":260039748,"id":1378,"parentId":1298,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/rotate-ccw.js","layer":"app-pages-browser"},"startTime":1767583955940,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4004,"timestamp":260039817,"id":1379,"parentId":1299,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-check-big.js","layer":"app-pages-browser"},"startTime":1767583955940,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4173,"timestamp":260039874,"id":1380,"parentId":1299,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/play.js","layer":"app-pages-browser"},"startTime":1767583955940,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4418,"timestamp":260039926,"id":1381,"parentId":1299,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-x.js","layer":"app-pages-browser"},"startTime":1767583955940,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4697,"timestamp":260039974,"id":1382,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/external-link.js","layer":"app-pages-browser"},"startTime":1767583955940,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6092,"timestamp":260040074,"id":1383,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/package.js","layer":"app-pages-browser"},"startTime":1767583955940,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6333,"timestamp":260040168,"id":1384,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/monitor.js","layer":"app-pages-browser"},"startTime":1767583955940,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":8146,"timestamp":260038658,"id":1374,"parentId":1295,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-square-plus.js","layer":"app-pages-browser"},"startTime":1767583955939,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7384,"timestamp":260039661,"id":1377,"parentId":1366,"tags":{"name":"__barrel_optimize__?names=Check,MessageCircleQuestion!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583955940,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4609,"timestamp":260048945,"id":1385,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/square.js","layer":"app-pages-browser"},"startTime":1767583955949,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4816,"timestamp":260049090,"id":1386,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/tablet.js","layer":"app-pages-browser"},"startTime":1767583955949,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5078,"timestamp":260049182,"id":1387,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/terminal.js","layer":"app-pages-browser"},"startTime":1767583955949,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4959,"timestamp":260049630,"id":1388,"parentId":1294,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/copy.js","layer":"app-pages-browser"},"startTime":1767583955950,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5356,"timestamp":260049746,"id":1389,"parentId":1296,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/table.js","layer":"app-pages-browser"},"startTime":1767583955950,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5486,"timestamp":260049837,"id":1390,"parentId":1296,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/chevron-left.js","layer":"app-pages-browser"},"startTime":1767583955950,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5619,"timestamp":260049925,"id":1391,"parentId":1301,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/eye-off.js","layer":"app-pages-browser"},"startTime":1767583955950,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5700,"timestamp":260050037,"id":1392,"parentId":1300,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/zap.js","layer":"app-pages-browser"},"startTime":1767583955950,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6207,"timestamp":260050136,"id":1393,"parentId":1301,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/save.js","layer":"app-pages-browser"},"startTime":1767583955950,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":9970,"timestamp":260058587,"id":1394,"parentId":1275,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/tailwind-merge@2.6.0/node_modules/tailwind-merge/dist/bundle-mjs.mjs","layer":"app-pages-browser"},"startTime":1767583955959,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":10489,"timestamp":260058727,"id":1395,"parentId":1275,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/clsx@2.1.1/node_modules/clsx/dist/clsx.mjs","layer":"app-pages-browser"},"startTime":1767583955959,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":109727,"timestamp":260084627,"id":1402,"parentId":1278,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/prism-react-renderer@2.4.1_react@19.2.3/node_modules/prism-react-renderer/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583955985,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":113357,"timestamp":260084828,"id":1403,"parentId":1310,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/scheduler/cjs/scheduler.production.js","layer":"app-pages-browser"},"startTime":1767583955985,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":116688,"timestamp":260082175,"id":1397,"parentId":1366,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/checkbox.tsx","layer":"app-pages-browser"},"startTime":1767583955982,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":117629,"timestamp":260081904,"id":1396,"parentId":1366,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/radio-group.tsx","layer":"app-pages-browser"},"startTime":1767583955982,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":117260,"timestamp":260082558,"id":1399,"parentId":1308,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/paperclip.js","layer":"app-pages-browser"},"startTime":1767583955983,"traceId":"8482a19cb410207d"},{"name":"build-module-tsx","duration":117957,"timestamp":260082371,"id":1398,"parentId":1366,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/apps/web/src/components/ui/label.tsx","layer":"app-pages-browser"},"startTime":1767583955983,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":117963,"timestamp":260082649,"id":1400,"parentId":1308,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/send.js","layer":"app-pages-browser"},"startTime":1767583955983,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":123353,"timestamp":260082743,"id":1401,"parentId":1311,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/get-img-props.js","layer":"app-pages-browser"},"startTime":1767583955983,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6234,"timestamp":260219584,"id":1414,"parentId":1309,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/scheduler@0.27.0/node_modules/scheduler/cjs/scheduler.production.js","layer":"pages-dir-browser"},"startTime":1767583956120,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14290,"timestamp":260218393,"id":1404,"parentId":1401,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config.js","layer":"app-pages-browser"},"startTime":1767583956119,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14137,"timestamp":260218810,"id":1408,"parentId":1338,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/download.js","layer":"app-pages-browser"},"startTime":1767583956119,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14403,"timestamp":260218970,"id":1410,"parentId":1320,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/unstable-rethrow.browser.js","layer":"app-pages-browser"},"startTime":1767583956119,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":14871,"timestamp":260218887,"id":1409,"parentId":1335,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/components/router-reducer/invalidate-cache-by-router-state.js","layer":"app-pages-browser"},"startTime":1767583956119,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":15041,"timestamp":260219082,"id":1411,"parentId":1305,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/project.ts","layer":"app-pages-browser"},"startTime":1767583956119,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":15092,"timestamp":260219253,"id":1412,"parentId":1305,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/chat.ts","layer":"app-pages-browser"},"startTime":1767583956119,"traceId":"8482a19cb410207d"},{"name":"build-module-ts","duration":15042,"timestamp":260219424,"id":1413,"parentId":1305,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/packages/shared/src/types/preview.ts","layer":"app-pages-browser"},"startTime":1767583956120,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":16052,"timestamp":260218553,"id":1405,"parentId":1397,"tags":{"name":"__barrel_optimize__?names=Check!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583956119,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":16081,"timestamp":260218648,"id":1406,"parentId":1396,"tags":{"name":"__barrel_optimize__?names=Circle!=!/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/lucide-react.js","layer":"app-pages-browser"},"startTime":1767583956119,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":18255,"timestamp":260218729,"id":1407,"parentId":1311,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/image-component.js","layer":"app-pages-browser"},"startTime":1767583956119,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2546,"timestamp":260242423,"id":1415,"parentId":1344,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/createLucideIcon.js","layer":"app-pages-browser"},"startTime":1767583956143,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6833,"timestamp":260245749,"id":1416,"parentId":1407,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/head.js","layer":"app-pages-browser"},"startTime":1767583956146,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7136,"timestamp":260245858,"id":1417,"parentId":1407,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-config-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767583956146,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7300,"timestamp":260246089,"id":1418,"parentId":1407,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/router-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767583956146,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6622,"timestamp":260257562,"id":1420,"parentId":1351,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/pen-line.js","layer":"app-pages-browser"},"startTime":1767583956158,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7034,"timestamp":260257434,"id":1419,"parentId":1351,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle-check.js","layer":"app-pages-browser"},"startTime":1767583956158,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7150,"timestamp":260257658,"id":1421,"parentId":1351,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/bot.js","layer":"app-pages-browser"},"startTime":1767583956158,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6193,"timestamp":260265476,"id":1422,"parentId":1351,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/folder-search.js","layer":"app-pages-browser"},"startTime":1767583956166,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5902,"timestamp":260266586,"id":1424,"parentId":1416,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-context.shared-runtime.js","layer":"app-pages-browser"},"startTime":1767583956167,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6892,"timestamp":260266468,"id":1423,"parentId":1416,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/side-effect.js","layer":"app-pages-browser"},"startTime":1767583956167,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7035,"timestamp":260266664,"id":1425,"parentId":1416,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/amp-mode.js","layer":"app-pages-browser"},"startTime":1767583956167,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7334,"timestamp":260266733,"id":1426,"parentId":1351,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/list-todo.js","layer":"app-pages-browser"},"startTime":1767583956167,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7543,"timestamp":260266812,"id":1427,"parentId":1351,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/search.js","layer":"app-pages-browser"},"startTime":1767583956167,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":9229,"timestamp":260266895,"id":1428,"parentId":1352,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/hammer.js","layer":"app-pages-browser"},"startTime":1767583956167,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2890,"timestamp":260277167,"id":1429,"parentId":1352,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/message-circle-question.js","layer":"app-pages-browser"},"startTime":1767583956177,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3966,"timestamp":260277291,"id":1430,"parentId":1311,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-loader.js","layer":"app-pages-browser"},"startTime":1767583956177,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":585,"timestamp":260281535,"id":1431,"parentId":1365,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/index.js","layer":"app-pages-browser"},"startTime":1767583956182,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":497,"timestamp":260287257,"id":1436,"parentId":1213,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/polyfills/process.js","layer":"pages-dir-browser"},"startTime":1767583956187,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1839,"timestamp":260287152,"id":1435,"parentId":1183,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/build/polyfills/process.js","layer":"app-pages-browser"},"startTime":1767583956187,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1905,"timestamp":260287286,"id":1437,"parentId":1365,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/index.js","layer":"app-pages-browser"},"startTime":1767583956187,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2767,"timestamp":260286995,"id":1433,"parentId":1406,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/icons/circle.js","layer":"app-pages-browser"},"startTime":1767583956187,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3228,"timestamp":260286907,"id":1432,"parentId":1401,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/shared/lib/image-blur-svg.js","layer":"app-pages-browser"},"startTime":1767583956187,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3458,"timestamp":260287094,"id":1434,"parentId":1415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/Icon.js","layer":"app-pages-browser"},"startTime":1767583956187,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1496,"timestamp":260291955,"id":1438,"parentId":1415,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/shared/src/utils.js","layer":"app-pages-browser"},"startTime":1767583956192,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1777,"timestamp":260295653,"id":1439,"parentId":1434,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/lucide-react@0.460.0_react@19.2.3/node_modules/lucide-react/dist/esm/defaultAttributes.js","layer":"app-pages-browser"},"startTime":1767583956196,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3492,"timestamp":260299132,"id":1440,"parentId":1431,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/react-markdown@9.1.0_@types+react@19.2.7_react@19.2.3/node_modules/react-markdown/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956199,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":884,"timestamp":260307226,"id":1441,"parentId":1437,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-gfm@4.0.1/node_modules/remark-gfm/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956207,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":5905,"timestamp":260309358,"id":1442,"parentId":1397,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-checkbox@1.3.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2_bewiq6cjocmach7p37abfyy75a/node_modules/@radix-ui/react-checkbox/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956210,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":10107,"timestamp":260328869,"id":1443,"parentId":1396,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-radio-group@1.3.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@1_cjtgf3xmcqtfujhoownb73bnbi/node_modules/@radix-ui/react-radio-group/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956229,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":10691,"timestamp":260345446,"id":1444,"parentId":1398,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-label@2.1.8_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2.7__ggc7d2jno3gcorzflrswkya7gm/node_modules/@radix-ui/react-label/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956246,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1159,"timestamp":260364579,"id":1445,"parentId":1436,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/process/browser.js","layer":"pages-dir-browser"},"startTime":1767583956265,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2313,"timestamp":260364634,"id":1446,"parentId":1435,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/compiled/process/browser.js","layer":"app-pages-browser"},"startTime":1767583956265,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":3689611,"timestamp":256678196,"id":981,"parentId":976,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_app&page=%2F_app!"},"startTime":1767583952578,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":3689551,"timestamp":256678269,"id":983,"parentId":976,"tags":{"request":"next-client-pages-loader?absolutePagePath=next%2Fdist%2Fpages%2F_error&page=%2F_error!"},"startTime":1767583952578,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":3689589,"timestamp":256678238,"id":982,"parentId":976,"tags":{"request":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/router.js"},"startTime":1767583952578,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":3689588,"timestamp":256678286,"id":984,"parentId":976,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fcomponents%2FDevErrorRecovery.tsx%22%2C%22ids%22%3A%5B%22DevErrorRecovery%22%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-sans%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistSans%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Ffont%2Fgoogle%2Ftarget.css%3F%7B%5C%22path%5C%22%3A%5C%22src%2Fapp%2Flayout.tsx%5C%22%2C%5C%22import%5C%22%3A%5C%22Geist_Mono%5C%22%2C%5C%22arguments%5C%22%3A%5B%7B%5C%22variable%5C%22%3A%5C%22--font-geist-mono%5C%22%2C%5C%22subsets%5C%22%3A%5B%5C%22latin%5C%22%5D%7D%5D%2C%5C%22variableName%5C%22%3A%5C%22geistMono%5C%22%7D%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fglobals.css%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767583952578,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":3689574,"timestamp":256678307,"id":985,"parentId":976,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767583952578,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":3689367,"timestamp":256678520,"id":987,"parentId":976,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fsettings%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767583952579,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":3690535,"timestamp":256677385,"id":977,"parentId":976,"tags":{"request":"./../../node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/next.js"},"startTime":1767583952578,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":3689907,"timestamp":256678018,"id":979,"parentId":976,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fbuiltin%2Fglobal-error.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-page.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fclient-segment.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fhttp-access-fallback%2Ferror-boundary.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Flayout-router.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Fmetadata%2Fasync-metadata.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Fclient%2Fcomponents%2Frender-from-template-context.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fframework%2Fboundary-components.js%22%2C%22ids%22%3A%5B%5D%7D&modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fnode_modules%2F.pnpm%2Fnext%4015.5.9_react-dom%4019.2.3_react%4019.2.3__react%4019.2.3%2Fnode_modules%2Fnext%2Fdist%2Flib%2Fmetadata%2Fgenerate%2Ficon-mark.js%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767583952578,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":3690095,"timestamp":256677948,"id":978,"parentId":976,"tags":{"request":"./../../node_modules/.pnpm/next@15.5.9_react-dom@19.2.3_react@19.2.3__react@19.2.3/node_modules/next/dist/client/app-next.js"},"startTime":1767583952578,"traceId":"8482a19cb410207d"}]
15
+ [{"name":"build-module-js","duration":665,"timestamp":260381379,"id":1447,"parentId":1440,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-to-jsx-runtime@2.3.6/node_modules/hast-util-to-jsx-runtime/index.js","layer":"app-pages-browser"},"startTime":1767583956282,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":649,"timestamp":260394802,"id":1448,"parentId":1440,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/html-url-attributes@3.0.1/node_modules/html-url-attributes/index.js","layer":"app-pages-browser"},"startTime":1767583956295,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":596,"timestamp":260396561,"id":1449,"parentId":1440,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/index.js","layer":"app-pages-browser"},"startTime":1767583956297,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":460,"timestamp":260400900,"id":1450,"parentId":1440,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/index.js","layer":"app-pages-browser"},"startTime":1767583956301,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":363,"timestamp":260403973,"id":1451,"parentId":1440,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/index.js","layer":"app-pages-browser"},"startTime":1767583956304,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":375,"timestamp":260405929,"id":1452,"parentId":1440,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit@5.0.0/node_modules/unist-util-visit/index.js","layer":"app-pages-browser"},"startTime":1767583956306,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":526,"timestamp":260408869,"id":1453,"parentId":1440,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/index.js","layer":"app-pages-browser"},"startTime":1767583956309,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":472,"timestamp":260410974,"id":1454,"parentId":1440,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/devlop@1.1.0/node_modules/devlop/lib/default.js","layer":"app-pages-browser"},"startTime":1767583956311,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":580,"timestamp":260412873,"id":1455,"parentId":1441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/index.js","layer":"app-pages-browser"},"startTime":1767583956313,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1092,"timestamp":260416443,"id":1456,"parentId":1441,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm@3.0.0/node_modules/micromark-extension-gfm/index.js","layer":"app-pages-browser"},"startTime":1767583956317,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":3134,"timestamp":260422762,"id":1457,"parentId":1442,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-compose-refs@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-compose-refs/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956323,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":3699,"timestamp":260437244,"id":1458,"parentId":1442,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-context@1.1.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-context/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956337,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":2201,"timestamp":260445716,"id":1459,"parentId":1442,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+primitive@1.1.3/node_modules/@radix-ui/primitive/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956346,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":2524,"timestamp":260451630,"id":1460,"parentId":1442,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-controllable-state@1.2.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-controllable-state/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956352,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":828,"timestamp":260461063,"id":1461,"parentId":1442,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-previous@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-previous/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956361,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":5253,"timestamp":260472674,"id":1462,"parentId":1442,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-presence@1.1.5_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19.2_g7nvzcflnhogkdp32witcuayfy/node_modules/@radix-ui/react-presence/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956373,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":2803,"timestamp":260478255,"id":1463,"parentId":1442,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-size@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-size/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956378,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":1134,"timestamp":260482962,"id":1464,"parentId":1442,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-primitive@2.1.3_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._vrijsupjqixawruberrfb56pbm/node_modules/@radix-ui/react-primitive/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956383,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6621,"timestamp":260490429,"id":1465,"parentId":1447,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-to-jsx-runtime@2.3.6/node_modules/hast-util-to-jsx-runtime/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956391,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":925,"timestamp":260505204,"id":1466,"parentId":1443,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-direction@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-direction/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956405,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":784,"timestamp":260510333,"id":1467,"parentId":1448,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/html-url-attributes@3.0.1/node_modules/html-url-attributes/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956411,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":969,"timestamp":260512982,"id":1469,"parentId":1449,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-parse@11.0.0/node_modules/remark-parse/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956413,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":9832,"timestamp":260512785,"id":1468,"parentId":1443,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-roving-focus@1.1.11_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react_olorlwzqifzjwjsjwfg7df3ffe/node_modules/@radix-ui/react-roving-focus/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956413,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":1587,"timestamp":260530032,"id":1470,"parentId":1444,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-primitive@2.1.4_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19._4sfldbbhvd3xapj4euqmtg5wga/node_modules/@radix-ui/react-primitive/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956430,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1930,"timestamp":260530275,"id":1471,"parentId":1450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/remark-rehype@11.1.2/node_modules/remark-rehype/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956430,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4723,"timestamp":260533303,"id":1472,"parentId":1451,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956433,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1563,"timestamp":260544239,"id":1473,"parentId":1452,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit@5.0.0/node_modules/unist-util-visit/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956444,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4999,"timestamp":260544428,"id":1474,"parentId":1453,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956445,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2388,"timestamp":260553040,"id":1475,"parentId":1455,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm@3.1.0/node_modules/mdast-util-gfm/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956453,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":635,"timestamp":260566190,"id":1476,"parentId":1450,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/index.js","layer":"app-pages-browser"},"startTime":1767583956466,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1656,"timestamp":260568476,"id":1477,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-combine-extensions@2.0.1/node_modules/micromark-util-combine-extensions/index.js","layer":"app-pages-browser"},"startTime":1767583956469,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":563,"timestamp":260578359,"id":1478,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/index.js","layer":"app-pages-browser"},"startTime":1767583956479,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":581,"timestamp":260584534,"id":1479,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/index.js","layer":"app-pages-browser"},"startTime":1767583956485,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":513,"timestamp":260588077,"id":1480,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-tagfilter@2.0.0/node_modules/micromark-extension-gfm-tagfilter/index.js","layer":"app-pages-browser"},"startTime":1767583956488,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":572,"timestamp":260594659,"id":1481,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/index.js","layer":"app-pages-browser"},"startTime":1767583956495,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":525,"timestamp":260600039,"id":1482,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/index.js","layer":"app-pages-browser"},"startTime":1767583956500,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":442,"timestamp":260606690,"id":1483,"parentId":1456,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/index.js","layer":"app-pages-browser"},"startTime":1767583956507,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":700,"timestamp":260611135,"id":1484,"parentId":1460,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-effect-event@0.0.2_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-effect-event/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956511,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":751,"timestamp":260616619,"id":1485,"parentId":1472,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unified@11.0.5/node_modules/unified/lib/callable-instance.js","layer":"app-pages-browser"},"startTime":1767583956517,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":873,"timestamp":260616759,"id":1486,"parentId":1460,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-layout-effect@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-layout-effect/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956517,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4494,"timestamp":260619234,"id":1487,"parentId":1474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minpath.browser.js","layer":"app-pages-browser"},"startTime":1767583956519,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4554,"timestamp":260619434,"id":1488,"parentId":1474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minproc.browser.js","layer":"app-pages-browser"},"startTime":1767583956520,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1217,"timestamp":260624611,"id":1489,"parentId":1474,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.browser.js","layer":"app-pages-browser"},"startTime":1767583956525,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":993,"timestamp":260633213,"id":1490,"parentId":1465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/comma-separated-tokens@2.0.3/node_modules/comma-separated-tokens/index.js","layer":"app-pages-browser"},"startTime":1767583956533,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":611,"timestamp":260638942,"id":1491,"parentId":1465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/estree-util-is-identifier-name@3.0.0/node_modules/estree-util-is-identifier-name/index.js","layer":"app-pages-browser"},"startTime":1767583956539,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":520,"timestamp":260646136,"id":1492,"parentId":1465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-whitespace@3.0.0/node_modules/hast-util-whitespace/index.js","layer":"app-pages-browser"},"startTime":1767583956546,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":897,"timestamp":260648408,"id":1493,"parentId":1465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/index.js","layer":"app-pages-browser"},"startTime":1767583956549,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":947,"timestamp":260656351,"id":1494,"parentId":1465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/space-separated-tokens@2.0.2/node_modules/space-separated-tokens/index.js","layer":"app-pages-browser"},"startTime":1767583956557,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":557,"timestamp":260658334,"id":1495,"parentId":1465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-position@5.0.0/node_modules/unist-util-position/index.js","layer":"app-pages-browser"},"startTime":1767583956559,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":533,"timestamp":260661416,"id":1496,"parentId":1465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/index.js","layer":"app-pages-browser"},"startTime":1767583956562,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1107,"timestamp":260664661,"id":1497,"parentId":1465,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-js@1.1.21/node_modules/style-to-js/cjs/index.js","layer":"app-pages-browser"},"startTime":1767583956565,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1070,"timestamp":260666598,"id":1498,"parentId":1476,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956567,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2288,"timestamp":260668613,"id":1499,"parentId":1476,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/footer.js","layer":"app-pages-browser"},"startTime":1767583956569,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":972,"timestamp":260671424,"id":1500,"parentId":1476,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/index.js","layer":"app-pages-browser"},"startTime":1767583956572,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":1537,"timestamp":260679081,"id":1501,"parentId":1464,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-slot@1.2.3_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956579,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":433,"timestamp":260681907,"id":1502,"parentId":1469,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/index.js","layer":"app-pages-browser"},"startTime":1767583956582,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":591,"timestamp":260685634,"id":1503,"parentId":1478,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/html.js","layer":"app-pages-browser"},"startTime":1767583956586,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1783,"timestamp":260685760,"id":1504,"parentId":1478,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-strikethrough@2.1.0/node_modules/micromark-extension-gfm-strikethrough/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767583956586,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1078,"timestamp":260694017,"id":1505,"parentId":1479,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/html.js","layer":"app-pages-browser"},"startTime":1767583956594,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4501,"timestamp":260694149,"id":1506,"parentId":1479,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767583956594,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":429,"timestamp":260703630,"id":1507,"parentId":1472,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/bail@2.0.2/node_modules/bail/index.js","layer":"app-pages-browser"},"startTime":1767583956604,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":497,"timestamp":260706588,"id":1508,"parentId":1472,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/is-plain-obj@4.1.0/node_modules/is-plain-obj/index.js","layer":"app-pages-browser"},"startTime":1767583956607,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":540,"timestamp":260708614,"id":1509,"parentId":1472,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/index.js","layer":"app-pages-browser"},"startTime":1767583956609,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":916,"timestamp":260709874,"id":1510,"parentId":1480,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-tagfilter@2.0.0/node_modules/micromark-extension-gfm-tagfilter/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956610,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":939,"timestamp":260718967,"id":1511,"parentId":1472,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/extend@3.0.2/node_modules/extend/index.js","layer":"app-pages-browser"},"startTime":1767583956619,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":431,"timestamp":260725449,"id":1512,"parentId":1473,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/index.js","layer":"app-pages-browser"},"startTime":1767583956626,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":558,"timestamp":260726412,"id":1513,"parentId":1475,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-autolink-literal@2.0.1/node_modules/mdast-util-gfm-autolink-literal/index.js","layer":"app-pages-browser"},"startTime":1767583956627,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":538,"timestamp":260729439,"id":1514,"parentId":1475,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/index.js","layer":"app-pages-browser"},"startTime":1767583956630,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":401,"timestamp":260730549,"id":1515,"parentId":1475,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-strikethrough@2.0.0/node_modules/mdast-util-gfm-strikethrough/index.js","layer":"app-pages-browser"},"startTime":1767583956631,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":479,"timestamp":260732340,"id":1516,"parentId":1475,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/index.js","layer":"app-pages-browser"},"startTime":1767583956633,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":397,"timestamp":260734192,"id":1517,"parentId":1475,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-task-list-item@2.0.0/node_modules/mdast-util-gfm-task-list-item/index.js","layer":"app-pages-browser"},"startTime":1767583956634,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":623,"timestamp":260736071,"id":1518,"parentId":1481,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/lib/html.js","layer":"app-pages-browser"},"startTime":1767583956636,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1149,"timestamp":260736193,"id":1519,"parentId":1481,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-task-list-item@2.1.0/node_modules/micromark-extension-gfm-task-list-item/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767583956636,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3990,"timestamp":260737919,"id":1520,"parentId":1482,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767583956638,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4302,"timestamp":260738078,"id":1521,"parentId":1482,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-autolink-literal@2.1.0/node_modules/micromark-extension-gfm-autolink-literal/lib/html.js","layer":"app-pages-browser"},"startTime":1767583956638,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":1139,"timestamp":260748567,"id":1523,"parentId":1468,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-id@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-id/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956649,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":678,"timestamp":260752733,"id":1524,"parentId":1468,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-use-callback-ref@1.1.1_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-use-callback-ref/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956653,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4987,"timestamp":260756307,"id":1525,"parentId":1483,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/syntax.js","layer":"app-pages-browser"},"startTime":1767583956656,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":21742,"timestamp":260746587,"id":1522,"parentId":1468,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-collection@1.1.7_@types+react-dom@19.2.3_@types+react@19.2.7__@types+react@19_3vqfgunzp4tkkuqnqgefg7qsai/node_modules/@radix-ui/react-collection/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956647,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1996,"timestamp":260773453,"id":1526,"parentId":1483,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-footnote@2.1.0/node_modules/micromark-extension-gfm-footnote/lib/html.js","layer":"app-pages-browser"},"startTime":1767583956674,"traceId":"8482a19cb410207d"},{"name":"build-module-mjs","duration":1916,"timestamp":260777499,"id":1527,"parentId":1470,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@radix-ui+react-slot@1.2.4_@types+react@19.2.7_react@19.2.3/node_modules/@radix-ui/react-slot/dist/index.mjs","layer":"app-pages-browser"},"startTime":1767583956678,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":870,"timestamp":260788029,"id":1528,"parentId":1477,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-chunked@2.0.1/node_modules/micromark-util-chunked/index.js","layer":"app-pages-browser"},"startTime":1767583956688,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":987,"timestamp":260788185,"id":1529,"parentId":1489,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile@6.0.3/node_modules/vfile/lib/minurl.shared.js","layer":"app-pages-browser"},"startTime":1767583956688,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2227,"timestamp":260797106,"id":1530,"parentId":1491,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/estree-util-is-identifier-name@3.0.0/node_modules/estree-util-is-identifier-name/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956697,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":782,"timestamp":260800832,"id":1531,"parentId":1492,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/hast-util-whitespace@3.0.0/node_modules/hast-util-whitespace/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956701,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1823,"timestamp":260802235,"id":1532,"parentId":1493,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/aria.js","layer":"app-pages-browser"},"startTime":1767583956702,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3693,"timestamp":260802441,"id":1533,"parentId":1493,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/html.js","layer":"app-pages-browser"},"startTime":1767583956703,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6687,"timestamp":260802640,"id":1534,"parentId":1493,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/svg.js","layer":"app-pages-browser"},"startTime":1767583956703,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1236,"timestamp":260814111,"id":1535,"parentId":1493,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xlink.js","layer":"app-pages-browser"},"startTime":1767583956714,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1198,"timestamp":260814451,"id":1536,"parentId":1493,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xml.js","layer":"app-pages-browser"},"startTime":1767583956715,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1627,"timestamp":260817401,"id":1537,"parentId":1493,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/xmlns.js","layer":"app-pages-browser"},"startTime":1767583956718,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1712,"timestamp":260817612,"id":1538,"parentId":1493,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/hast-to-react.js","layer":"app-pages-browser"},"startTime":1767583956718,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2440,"timestamp":260817799,"id":1539,"parentId":1493,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/find.js","layer":"app-pages-browser"},"startTime":1767583956718,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2469,"timestamp":260817991,"id":1540,"parentId":1493,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/normalize.js","layer":"app-pages-browser"},"startTime":1767583956718,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1198,"timestamp":260821929,"id":1541,"parentId":1493,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/merge.js","layer":"app-pages-browser"},"startTime":1767583956722,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1700,"timestamp":260829464,"id":1542,"parentId":1498,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/state.js","layer":"app-pages-browser"},"startTime":1767583956730,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1897,"timestamp":260829613,"id":1543,"parentId":1495,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-position@5.0.0/node_modules/unist-util-position/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956730,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1299,"timestamp":260833160,"id":1544,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/break.js","layer":"app-pages-browser"},"startTime":1767583956733,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1354,"timestamp":260833290,"id":1545,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/blockquote.js","layer":"app-pages-browser"},"startTime":1767583956733,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1559,"timestamp":260833392,"id":1546,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/code.js","layer":"app-pages-browser"},"startTime":1767583956734,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2634,"timestamp":260833493,"id":1547,"parentId":1496,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/vfile-message@4.0.3/node_modules/vfile-message/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956734,"traceId":"8482a19cb410207d"}]
16
+ [{"name":"build-module-js","duration":1402,"timestamp":260837231,"id":1548,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/delete.js","layer":"app-pages-browser"},"startTime":1767583956737,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1474,"timestamp":260837440,"id":1549,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/emphasis.js","layer":"app-pages-browser"},"startTime":1767583956738,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1946,"timestamp":260837633,"id":1550,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/footnote-reference.js","layer":"app-pages-browser"},"startTime":1767583956738,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":910,"timestamp":260845467,"id":1551,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/html.js","layer":"app-pages-browser"},"startTime":1767583956746,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":959,"timestamp":260845674,"id":1552,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/heading.js","layer":"app-pages-browser"},"startTime":1767583956746,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":853,"timestamp":260848816,"id":1553,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/image-reference.js","layer":"app-pages-browser"},"startTime":1767583956749,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5069,"timestamp":260851084,"id":1554,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/link-reference.js","layer":"app-pages-browser"},"startTime":1767583956751,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5257,"timestamp":260851285,"id":1555,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/link.js","layer":"app-pages-browser"},"startTime":1767583956751,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5352,"timestamp":260851460,"id":1556,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/inline-code.js","layer":"app-pages-browser"},"startTime":1767583956752,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5447,"timestamp":260851654,"id":1557,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/image.js","layer":"app-pages-browser"},"startTime":1767583956752,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5809,"timestamp":260851834,"id":1558,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/list-item.js","layer":"app-pages-browser"},"startTime":1767583956752,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5907,"timestamp":260852025,"id":1559,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/list.js","layer":"app-pages-browser"},"startTime":1767583956752,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5942,"timestamp":260852207,"id":1560,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/paragraph.js","layer":"app-pages-browser"},"startTime":1767583956752,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":953,"timestamp":260861663,"id":1561,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/strong.js","layer":"app-pages-browser"},"startTime":1767583956762,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1013,"timestamp":260861881,"id":1562,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/root.js","layer":"app-pages-browser"},"startTime":1767583956762,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1607,"timestamp":260865978,"id":1563,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table.js","layer":"app-pages-browser"},"startTime":1767583956766,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1751,"timestamp":260866200,"id":1564,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table-row.js","layer":"app-pages-browser"},"startTime":1767583956766,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1787,"timestamp":260866395,"id":1565,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/table-cell.js","layer":"app-pages-browser"},"startTime":1767583956767,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1836,"timestamp":260866519,"id":1566,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/thematic-break.js","layer":"app-pages-browser"},"startTime":1767583956767,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1936,"timestamp":260866619,"id":1567,"parentId":1500,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/handlers/text.js","layer":"app-pages-browser"},"startTime":1767583956767,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2469,"timestamp":260866714,"id":1568,"parentId":1497,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-js@1.1.21/node_modules/style-to-js/cjs/utilities.js","layer":"app-pages-browser"},"startTime":1767583956767,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1678,"timestamp":260876086,"id":1569,"parentId":1506,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/edit-map.js","layer":"app-pages-browser"},"startTime":1767583956776,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2057,"timestamp":260876226,"id":1570,"parentId":1506,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-extension-gfm-table@2.1.1/node_modules/micromark-extension-gfm-table/lib/infer.js","layer":"app-pages-browser"},"startTime":1767583956776,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5872,"timestamp":260876326,"id":1571,"parentId":1502,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-from-markdown@2.0.2/node_modules/mdast-util-from-markdown/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956777,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":830,"timestamp":260885156,"id":1572,"parentId":1499,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-sanitize-uri@2.0.1/node_modules/micromark-util-sanitize-uri/index.js","layer":"app-pages-browser"},"startTime":1767583956785,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":849,"timestamp":260889568,"id":1573,"parentId":1499,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/index.js","layer":"app-pages-browser"},"startTime":1767583956790,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1292,"timestamp":260889698,"id":1574,"parentId":1509,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trough@2.2.0/node_modules/trough/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956790,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":949,"timestamp":260894918,"id":1575,"parentId":1497,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/style-to-object@1.0.14/node_modules/style-to-object/cjs/index.js","layer":"app-pages-browser"},"startTime":1767583956795,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":537,"timestamp":260896150,"id":1576,"parentId":1504,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-classify-character@2.0.1/node_modules/micromark-util-classify-character/index.js","layer":"app-pages-browser"},"startTime":1767583956796,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":464,"timestamp":260900583,"id":1577,"parentId":1504,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-resolve-all@2.0.1/node_modules/micromark-util-resolve-all/index.js","layer":"app-pages-browser"},"startTime":1767583956801,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1080,"timestamp":260902560,"id":1578,"parentId":1506,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-character@2.1.1/node_modules/micromark-util-character/index.js","layer":"app-pages-browser"},"startTime":1767583956803,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":761,"timestamp":260906450,"id":1579,"parentId":1506,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-space@2.0.1/node_modules/micromark-factory-space/index.js","layer":"app-pages-browser"},"startTime":1767583956807,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1518,"timestamp":260906587,"id":1580,"parentId":1512,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956807,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5534,"timestamp":260912425,"id":1581,"parentId":1513,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-autolink-literal@2.0.1/node_modules/mdast-util-gfm-autolink-literal/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956813,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":6754,"timestamp":260912548,"id":1582,"parentId":1514,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-footnote@2.1.0/node_modules/mdast-util-gfm-footnote/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956813,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7185,"timestamp":260912656,"id":1583,"parentId":1515,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-strikethrough@2.0.0/node_modules/mdast-util-gfm-strikethrough/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956813,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2851,"timestamp":260923411,"id":1584,"parentId":1516,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-table@2.0.0/node_modules/mdast-util-gfm-table/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956824,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1567,"timestamp":260928790,"id":1585,"parentId":1517,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-gfm-task-list-item@2.0.0/node_modules/mdast-util-gfm-task-list-item/lib/index.js","layer":"app-pages-browser"},"startTime":1767583956829,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1083,"timestamp":260939250,"id":1586,"parentId":1532,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/create.js","layer":"app-pages-browser"},"startTime":1767583956839,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2891,"timestamp":260941477,"id":1587,"parentId":1532,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/types.js","layer":"app-pages-browser"},"startTime":1767583956842,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2964,"timestamp":260941679,"id":1588,"parentId":1533,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-insensitive-transform.js","layer":"app-pages-browser"},"startTime":1767583956842,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3002,"timestamp":260941857,"id":1589,"parentId":1534,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/case-sensitive-transform.js","layer":"app-pages-browser"},"startTime":1767583956842,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3333,"timestamp":260942057,"id":1590,"parentId":1539,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/defined-info.js","layer":"app-pages-browser"},"startTime":1767583956842,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3430,"timestamp":260942287,"id":1591,"parentId":1539,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/info.js","layer":"app-pages-browser"},"startTime":1767583956842,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3525,"timestamp":260942465,"id":1592,"parentId":1541,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/property-information@7.1.0/node_modules/property-information/lib/util/schema.js","layer":"app-pages-browser"},"startTime":1767583956843,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1004,"timestamp":260956637,"id":1593,"parentId":1525,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/index.js","layer":"app-pages-browser"},"startTime":1767583956857,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1019,"timestamp":260961651,"id":1594,"parentId":1553,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-hast@13.2.1/node_modules/mdast-util-to-hast/lib/revert.js","layer":"app-pages-browser"},"startTime":1767583956862,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1193,"timestamp":260961835,"id":1595,"parentId":1525,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-normalize-identifier@2.0.1/node_modules/micromark-util-normalize-identifier/index.js","layer":"app-pages-browser"},"startTime":1767583956862,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1024,"timestamp":260967316,"id":1596,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_get.js","layer":"app-pages-browser"},"startTime":1767583956868,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1097,"timestamp":260967528,"id":1597,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_init.js","layer":"app-pages-browser"},"startTime":1767583956868,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":960,"timestamp":260970768,"id":1598,"parentId":1522,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_private_field_set.js","layer":"app-pages-browser"},"startTime":1767583956871,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1219,"timestamp":260987230,"id":1599,"parentId":1547,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/index.js","layer":"app-pages-browser"},"startTime":1767583956887,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2153,"timestamp":260987448,"id":1600,"parentId":1573,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/deserialize.js","layer":"app-pages-browser"},"startTime":1767583956888,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3723,"timestamp":260987643,"id":1601,"parentId":1573,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/serialize.js","layer":"app-pages-browser"},"startTime":1767583956888,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":894,"timestamp":260997504,"id":1602,"parentId":1567,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/trim-lines@3.0.1/node_modules/trim-lines/index.js","layer":"app-pages-browser"},"startTime":1767583956898,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":556,"timestamp":261003796,"id":1603,"parentId":1571,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-string@4.0.0/node_modules/mdast-util-to-string/index.js","layer":"app-pages-browser"},"startTime":1767583956904,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":918,"timestamp":261005394,"id":1604,"parentId":1571,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/index.js","layer":"app-pages-browser"},"startTime":1767583956906,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":824,"timestamp":261008316,"id":1605,"parentId":1571,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-decode-numeric-character-reference@2.0.2/node_modules/micromark-util-decode-numeric-character-reference/index.js","layer":"app-pages-browser"},"startTime":1767583956909,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":988,"timestamp":261011195,"id":1606,"parentId":1571,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-decode-string@2.0.1/node_modules/micromark-util-decode-string/index.js","layer":"app-pages-browser"},"startTime":1767583956911,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":784,"timestamp":261012885,"id":1607,"parentId":1571,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/decode-named-character-reference@1.2.0/node_modules/decode-named-character-reference/index.dom.js","layer":"app-pages-browser"},"startTime":1767583956913,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":526,"timestamp":261015041,"id":1608,"parentId":1580,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-visit-parents@6.0.2/node_modules/unist-util-visit-parents/lib/color.js","layer":"app-pages-browser"},"startTime":1767583956915,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":673,"timestamp":261016638,"id":1609,"parentId":1572,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-encode@2.0.1/node_modules/micromark-util-encode/index.js","layer":"app-pages-browser"},"startTime":1767583956917,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2151,"timestamp":261018608,"id":1610,"parentId":1575,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/inline-style-parser@0.2.7/node_modules/inline-style-parser/cjs/index.js","layer":"app-pages-browser"},"startTime":1767583956919,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1231,"timestamp":261024573,"id":1611,"parentId":1596,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_apply_descriptor_get.js","layer":"app-pages-browser"},"startTime":1767583956925,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1306,"timestamp":261024788,"id":1612,"parentId":1596,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_extract_field_descriptor.js","layer":"app-pages-browser"},"startTime":1767583956925,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1312,"timestamp":261024974,"id":1613,"parentId":1580,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-is@6.0.1/node_modules/unist-util-is/index.js","layer":"app-pages-browser"},"startTime":1767583956925,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":660,"timestamp":261026675,"id":1614,"parentId":1597,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_check_private_redeclaration.js","layer":"app-pages-browser"},"startTime":1767583956927,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":637,"timestamp":261037602,"id":1615,"parentId":1598,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@swc+helpers@0.5.15/node_modules/@swc/helpers/esm/_class_apply_descriptor_set.js","layer":"app-pages-browser"},"startTime":1767583956938,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2963,"timestamp":261039292,"id":1616,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/attention.js","layer":"app-pages-browser"},"startTime":1767583956939,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3885,"timestamp":261039494,"id":1617,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/autolink.js","layer":"app-pages-browser"},"startTime":1767583956940,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4136,"timestamp":261039677,"id":1618,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/blank-line.js","layer":"app-pages-browser"},"startTime":1767583956940,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1754,"timestamp":261047479,"id":1619,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-escape.js","layer":"app-pages-browser"},"startTime":1767583956948,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2178,"timestamp":261047686,"id":1620,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/block-quote.js","layer":"app-pages-browser"},"startTime":1767583956948,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2682,"timestamp":261047870,"id":1621,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/character-reference.js","layer":"app-pages-browser"},"startTime":1767583956948,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4142,"timestamp":261048078,"id":1622,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-fenced.js","layer":"app-pages-browser"},"startTime":1767583956948,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1511,"timestamp":261056570,"id":1623,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-text.js","layer":"app-pages-browser"},"startTime":1767583956957,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1950,"timestamp":261056721,"id":1624,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/code-indented.js","layer":"app-pages-browser"},"startTime":1767583956957,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2355,"timestamp":261056834,"id":1625,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/content.js","layer":"app-pages-browser"},"startTime":1767583956957,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1239,"timestamp":261059653,"id":1626,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/definition.js","layer":"app-pages-browser"},"startTime":1767583956960,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1376,"timestamp":261059779,"id":1627,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/hard-break-escape.js","layer":"app-pages-browser"},"startTime":1767583956960,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1863,"timestamp":261059886,"id":1628,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/heading-atx.js","layer":"app-pages-browser"},"startTime":1767583956960,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2952,"timestamp":261064474,"id":1629,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-flow.js","layer":"app-pages-browser"},"startTime":1767583956965,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4129,"timestamp":261064599,"id":1630,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/html-text.js","layer":"app-pages-browser"},"startTime":1767583956965,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4351,"timestamp":261064697,"id":1631,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-image.js","layer":"app-pages-browser"},"startTime":1767583956965,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":5563,"timestamp":261064789,"id":1632,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-end.js","layer":"app-pages-browser"},"startTime":1767583956965,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1324,"timestamp":261071894,"id":1633,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/label-start-link.js","layer":"app-pages-browser"},"startTime":1767583956972,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1392,"timestamp":261072062,"id":1634,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/line-ending.js","layer":"app-pages-browser"},"startTime":1767583956972,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2217,"timestamp":261072170,"id":1635,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/list.js","layer":"app-pages-browser"},"startTime":1767583956972,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1795,"timestamp":261076929,"id":1636,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/setext-underline.js","layer":"app-pages-browser"},"startTime":1767583956977,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2039,"timestamp":261077200,"id":1637,"parentId":1593,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-core-commonmark@2.0.3/node_modules/micromark-core-commonmark/lib/thematic-break.js","layer":"app-pages-browser"},"startTime":1767583956977,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":446,"timestamp":261083476,"id":1638,"parentId":1581,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/ccount@2.0.1/node_modules/ccount/index.js","layer":"app-pages-browser"},"startTime":1767583956984,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":348,"timestamp":261085486,"id":1639,"parentId":1581,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-find-and-replace@3.0.2/node_modules/mdast-util-find-and-replace/index.js","layer":"app-pages-browser"},"startTime":1767583956986,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2162,"timestamp":261090880,"id":1640,"parentId":1584,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/markdown-table@3.0.4/node_modules/markdown-table/index.js","layer":"app-pages-browser"},"startTime":1767583956991,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":569,"timestamp":261093591,"id":1641,"parentId":1584,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/index.js","layer":"app-pages-browser"},"startTime":1767583956994,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2239,"timestamp":261100407,"id":1642,"parentId":1600,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/@ungap+structured-clone@1.3.0/node_modules/@ungap/structured-clone/esm/types.js","layer":"app-pages-browser"},"startTime":1767583957001,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2529,"timestamp":261100615,"id":1643,"parentId":1599,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-stringify-position@4.0.0/node_modules/unist-util-stringify-position/lib/index.js","layer":"app-pages-browser"},"startTime":1767583957001,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2936,"timestamp":261100802,"id":1644,"parentId":1603,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-string@4.0.0/node_modules/mdast-util-to-string/lib/index.js","layer":"app-pages-browser"},"startTime":1767583957001,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7033,"timestamp":261100992,"id":1645,"parentId":1604,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/compile.js","layer":"app-pages-browser"},"startTime":1767583957001,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":7309,"timestamp":261101209,"id":1646,"parentId":1604,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/parse.js","layer":"app-pages-browser"},"startTime":1767583957001,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":950,"timestamp":261112755,"id":1647,"parentId":1604,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/postprocess.js","layer":"app-pages-browser"},"startTime":1767583957013,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":4231,"timestamp":261112970,"id":1648,"parentId":1604,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/preprocess.js","layer":"app-pages-browser"},"startTime":1767583957013,"traceId":"8482a19cb410207d"}]
17
+ [{"name":"build-module-js","duration":4603,"timestamp":261121973,"id":1649,"parentId":1613,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/unist-util-is@6.0.1/node_modules/unist-util-is/lib/index.js","layer":"app-pages-browser"},"startTime":1767583957022,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1152,"timestamp":261140996,"id":1650,"parentId":1626,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-label@2.0.1/node_modules/micromark-factory-label/index.js","layer":"app-pages-browser"},"startTime":1767583957041,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1913,"timestamp":261143659,"id":1651,"parentId":1625,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/index.js","layer":"app-pages-browser"},"startTime":1767583957044,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1120,"timestamp":261150141,"id":1652,"parentId":1626,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-destination@2.0.1/node_modules/micromark-factory-destination/index.js","layer":"app-pages-browser"},"startTime":1767583957050,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":674,"timestamp":261153568,"id":1653,"parentId":1626,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-title@2.0.1/node_modules/micromark-factory-title/index.js","layer":"app-pages-browser"},"startTime":1767583957054,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":700,"timestamp":261156688,"id":1654,"parentId":1626,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-factory-whitespace@2.0.1/node_modules/micromark-factory-whitespace/index.js","layer":"app-pages-browser"},"startTime":1767583957057,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1328,"timestamp":261156810,"id":1655,"parentId":1639,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-find-and-replace@3.0.2/node_modules/mdast-util-find-and-replace/lib/index.js","layer":"app-pages-browser"},"startTime":1767583957057,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":698,"timestamp":261158900,"id":1656,"parentId":1629,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-html-tag-name@2.0.1/node_modules/micromark-util-html-tag-name/index.js","layer":"app-pages-browser"},"startTime":1767583957059,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1477,"timestamp":261161135,"id":1657,"parentId":1646,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/constructs.js","layer":"app-pages-browser"},"startTime":1767583957061,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3663,"timestamp":261161258,"id":1658,"parentId":1646,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/create-tokenizer.js","layer":"app-pages-browser"},"startTime":1767583957061,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1786,"timestamp":261165626,"id":1659,"parentId":1641,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/index.js","layer":"app-pages-browser"},"startTime":1767583957066,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2207,"timestamp":261165818,"id":1660,"parentId":1641,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/index.js","layer":"app-pages-browser"},"startTime":1767583957066,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1613,"timestamp":261178185,"id":1661,"parentId":1646,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/content.js","layer":"app-pages-browser"},"startTime":1767583957078,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3101,"timestamp":261178390,"id":1662,"parentId":1646,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/document.js","layer":"app-pages-browser"},"startTime":1767583957079,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":3411,"timestamp":261178576,"id":1663,"parentId":1646,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/flow.js","layer":"app-pages-browser"},"startTime":1767583957079,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2445,"timestamp":261185055,"id":1664,"parentId":1646,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark@4.0.2/node_modules/micromark/lib/initialize/text.js","layer":"app-pages-browser"},"startTime":1767583957085,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1588,"timestamp":261205118,"id":1665,"parentId":1659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/configure.js","layer":"app-pages-browser"},"startTime":1767583957105,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1926,"timestamp":261205285,"id":1666,"parentId":1659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/join.js","layer":"app-pages-browser"},"startTime":1767583957105,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2941,"timestamp":261205474,"id":1667,"parentId":1651,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/micromark-util-subtokenize@2.1.0/node_modules/micromark-util-subtokenize/lib/splice-buffer.js","layer":"app-pages-browser"},"startTime":1767583957106,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1878,"timestamp":261209775,"id":1668,"parentId":1659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/unsafe.js","layer":"app-pages-browser"},"startTime":1767583957110,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1967,"timestamp":261209985,"id":1669,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/blockquote.js","layer":"app-pages-browser"},"startTime":1767583957110,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2215,"timestamp":261210188,"id":1670,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/break.js","layer":"app-pages-browser"},"startTime":1767583957110,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1688,"timestamp":261214665,"id":1671,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/code.js","layer":"app-pages-browser"},"startTime":1767583957115,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2158,"timestamp":261214837,"id":1672,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/definition.js","layer":"app-pages-browser"},"startTime":1767583957115,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2587,"timestamp":261214992,"id":1673,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/emphasis.js","layer":"app-pages-browser"},"startTime":1767583957115,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1819,"timestamp":261221462,"id":1674,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/heading.js","layer":"app-pages-browser"},"startTime":1767583957122,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1872,"timestamp":261221598,"id":1675,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/html.js","layer":"app-pages-browser"},"startTime":1767583957122,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2080,"timestamp":261221703,"id":1676,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image-reference.js","layer":"app-pages-browser"},"startTime":1767583957122,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2457,"timestamp":261221804,"id":1677,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/image.js","layer":"app-pages-browser"},"startTime":1767583957122,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1399,"timestamp":261227318,"id":1678,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link-reference.js","layer":"app-pages-browser"},"startTime":1767583957128,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2043,"timestamp":261227510,"id":1679,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/link.js","layer":"app-pages-browser"},"startTime":1767583957128,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2302,"timestamp":261227680,"id":1680,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/inline-code.js","layer":"app-pages-browser"},"startTime":1767583957128,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1313,"timestamp":261232770,"id":1681,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list.js","layer":"app-pages-browser"},"startTime":1767583957133,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1442,"timestamp":261232899,"id":1682,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/paragraph.js","layer":"app-pages-browser"},"startTime":1767583957133,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1924,"timestamp":261233043,"id":1683,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/list-item.js","layer":"app-pages-browser"},"startTime":1767583957133,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2414,"timestamp":261238503,"id":1684,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/strong.js","layer":"app-pages-browser"},"startTime":1767583957139,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2532,"timestamp":261238708,"id":1685,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/root.js","layer":"app-pages-browser"},"startTime":1767583957139,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2343,"timestamp":261239084,"id":1686,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/text.js","layer":"app-pages-browser"},"startTime":1767583957139,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2447,"timestamp":261239255,"id":1687,"parentId":1660,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/handle/thematic-break.js","layer":"app-pages-browser"},"startTime":1767583957139,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1050,"timestamp":261246725,"id":1688,"parentId":1659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/association.js","layer":"app-pages-browser"},"startTime":1767583957147,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1236,"timestamp":261246945,"id":1689,"parentId":1659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/compile-pattern.js","layer":"app-pages-browser"},"startTime":1767583957147,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2171,"timestamp":261249175,"id":1690,"parentId":1659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/container-phrasing.js","layer":"app-pages-browser"},"startTime":1767583957149,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2664,"timestamp":261249395,"id":1691,"parentId":1659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/container-flow.js","layer":"app-pages-browser"},"startTime":1767583957150,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2893,"timestamp":261249589,"id":1692,"parentId":1659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/indent-lines.js","layer":"app-pages-browser"},"startTime":1767583957150,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2219,"timestamp":261253038,"id":1693,"parentId":1659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/safe.js","layer":"app-pages-browser"},"startTime":1767583957153,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2549,"timestamp":261253261,"id":1694,"parentId":1659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/track.js","layer":"app-pages-browser"},"startTime":1767583957153,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":795,"timestamp":261262546,"id":1695,"parentId":1666,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-code-as-indented.js","layer":"app-pages-browser"},"startTime":1767583957163,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":837,"timestamp":261265642,"id":1696,"parentId":1666,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-heading-as-setext.js","layer":"app-pages-browser"},"startTime":1767583957166,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":740,"timestamp":261268235,"id":1697,"parentId":1670,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/pattern-in-scope.js","layer":"app-pages-browser"},"startTime":1767583957168,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1663,"timestamp":261272577,"id":1698,"parentId":1672,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-quote.js","layer":"app-pages-browser"},"startTime":1767583957173,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1713,"timestamp":261272794,"id":1699,"parentId":1673,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-emphasis.js","layer":"app-pages-browser"},"startTime":1767583957173,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1756,"timestamp":261272993,"id":1700,"parentId":1671,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-fence.js","layer":"app-pages-browser"},"startTime":1767583957173,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1739,"timestamp":261273212,"id":1701,"parentId":1673,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-character-reference.js","layer":"app-pages-browser"},"startTime":1767583957173,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":844,"timestamp":261275758,"id":1702,"parentId":1673,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/encode-info.js","layer":"app-pages-browser"},"startTime":1767583957176,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":938,"timestamp":261278817,"id":1703,"parentId":1679,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/format-link-as-autolink.js","layer":"app-pages-browser"},"startTime":1767583957179,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1726,"timestamp":261282787,"id":1704,"parentId":1655,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/escape-string-regexp@5.0.0/node_modules/escape-string-regexp/index.js","layer":"app-pages-browser"},"startTime":1767583957183,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1784,"timestamp":261282997,"id":1705,"parentId":1681,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet.js","layer":"app-pages-browser"},"startTime":1767583957183,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1950,"timestamp":261283221,"id":1706,"parentId":1681,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet-other.js","layer":"app-pages-browser"},"startTime":1767583957183,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":2082,"timestamp":261283434,"id":1707,"parentId":1681,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-bullet-ordered.js","layer":"app-pages-browser"},"startTime":1767583957184,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1268,"timestamp":261287352,"id":1708,"parentId":1683,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-list-item-indent.js","layer":"app-pages-browser"},"startTime":1767583957188,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1323,"timestamp":261287568,"id":1709,"parentId":1681,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-rule.js","layer":"app-pages-browser"},"startTime":1767583957188,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":1460,"timestamp":261287767,"id":1710,"parentId":1684,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-strong.js","layer":"app-pages-browser"},"startTime":1767583957188,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":620,"timestamp":261290688,"id":1711,"parentId":1687,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-to-markdown@2.1.2/node_modules/mdast-util-to-markdown/lib/util/check-rule-repetition.js","layer":"app-pages-browser"},"startTime":1767583957191,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":855,"timestamp":261291511,"id":1712,"parentId":1659,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/zwitch@2.0.4/node_modules/zwitch/index.js","layer":"app-pages-browser"},"startTime":1767583957192,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":712,"timestamp":261296056,"id":1713,"parentId":1671,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/longest-streak@3.1.0/node_modules/longest-streak/index.js","layer":"app-pages-browser"},"startTime":1767583957196,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":574,"timestamp":261297851,"id":1714,"parentId":1685,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-phrasing@4.1.0/node_modules/mdast-util-phrasing/index.js","layer":"app-pages-browser"},"startTime":1767583957198,"traceId":"8482a19cb410207d"},{"name":"build-module-js","duration":782,"timestamp":261304240,"id":1715,"parentId":1714,"tags":{"name":"/home/runner/work/ClaudeShip/ClaudeShip/node_modules/.pnpm/mdast-util-phrasing@4.1.0/node_modules/mdast-util-phrasing/lib/index.js","layer":"app-pages-browser"},"startTime":1767583957204,"traceId":"8482a19cb410207d"},{"name":"add-entry","duration":4629498,"timestamp":256678478,"id":986,"parentId":976,"tags":{"request":"next-flight-client-entry-loader?modules=%7B%22request%22%3A%22%2Fhome%2Frunner%2Fwork%2FClaudeShip%2FClaudeShip%2Fapps%2Fweb%2Fsrc%2Fapp%2Fproject%2F%5Bid%5D%2Fpage.tsx%22%2C%22ids%22%3A%5B%5D%7D&server=false!"},"startTime":1767583952579,"traceId":"8482a19cb410207d"},{"name":"make","duration":4631472,"timestamp":256676864,"id":976,"parentId":975,"tags":{},"startTime":1767583952577,"traceId":"8482a19cb410207d"},{"name":"chunk-graph","duration":20383,"timestamp":261390386,"id":1717,"parentId":1716,"tags":{},"startTime":1767583957291,"traceId":"8482a19cb410207d"},{"name":"optimize-modules","duration":77,"timestamp":261410974,"id":1719,"parentId":1716,"tags":{},"startTime":1767583957311,"traceId":"8482a19cb410207d"},{"name":"optimize-chunks","duration":14886,"timestamp":261413845,"id":1721,"parentId":1716,"tags":{},"startTime":1767583957314,"traceId":"8482a19cb410207d"},{"name":"optimize-tree","duration":214,"timestamp":261428844,"id":1722,"parentId":1716,"tags":{},"startTime":1767583957329,"traceId":"8482a19cb410207d"},{"name":"optimize-chunk-modules","duration":36017,"timestamp":261429208,"id":1723,"parentId":1716,"tags":{},"startTime":1767583957329,"traceId":"8482a19cb410207d"},{"name":"optimize","duration":54512,"timestamp":261410880,"id":1718,"parentId":1716,"tags":{},"startTime":1767583957311,"traceId":"8482a19cb410207d"},{"name":"module-hash","duration":38637,"timestamp":261495717,"id":1724,"parentId":1716,"tags":{},"startTime":1767583957396,"traceId":"8482a19cb410207d"},{"name":"code-generation","duration":393932,"timestamp":261534414,"id":1725,"parentId":1716,"tags":{},"startTime":1767583957435,"traceId":"8482a19cb410207d"},{"name":"hash","duration":13069,"timestamp":261933907,"id":1726,"parentId":1716,"tags":{},"startTime":1767583957834,"traceId":"8482a19cb410207d"},{"name":"code-generation-jobs","duration":507,"timestamp":261946971,"id":1727,"parentId":1716,"tags":{},"startTime":1767583957847,"traceId":"8482a19cb410207d"},{"name":"module-assets","duration":789,"timestamp":261947424,"id":1728,"parentId":1716,"tags":{},"startTime":1767583957848,"traceId":"8482a19cb410207d"},{"name":"create-chunk-assets","duration":13236,"timestamp":261948230,"id":1729,"parentId":1716,"tags":{},"startTime":1767583957848,"traceId":"8482a19cb410207d"},{"name":"NextJsBuildManifest-generateClientManifest","duration":2032,"timestamp":261991214,"id":1731,"parentId":975,"tags":{},"startTime":1767583957891,"traceId":"8482a19cb410207d"},{"name":"NextJsBuildManifest-createassets","duration":6404,"timestamp":261986859,"id":1730,"parentId":975,"tags":{},"startTime":1767583957887,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":82986,"timestamp":262077942,"id":1736,"parentId":1732,"tags":{"name":"static/chunks/pages/_app-56f4e2c3e0cd5b77.js","cache":"MISS"},"startTime":1767583957978,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":82910,"timestamp":262078114,"id":1737,"parentId":1732,"tags":{"name":"static/chunks/pages/_error-6444830a044a065f.js","cache":"MISS"},"startTime":1767583957978,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":83426,"timestamp":262077658,"id":1735,"parentId":1732,"tags":{"name":"static/chunks/app/_not-found/page-1314fe1ff92ee0aa.js","cache":"MISS"},"startTime":1767583957978,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":83717,"timestamp":262077418,"id":1734,"parentId":1732,"tags":{"name":"static/chunks/main-app-3ee073768a1a6456.js","cache":"MISS"},"startTime":1767583957978,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":82938,"timestamp":262078240,"id":1738,"parentId":1732,"tags":{"name":"static/chunks/app/layout-1baeb8f9d4de0f96.js","cache":"MISS"},"startTime":1767583957978,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":82796,"timestamp":262078480,"id":1739,"parentId":1732,"tags":{"name":"static/chunks/app/page-3af936f4d6d052bf.js","cache":"MISS"},"startTime":1767583957979,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":68546,"timestamp":262095545,"id":1742,"parentId":1732,"tags":{"name":"static/chunks/webpack-9b8a6c078d6e8803.js","cache":"MISS"},"startTime":1767583957996,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":69390,"timestamp":262095165,"id":1741,"parentId":1732,"tags":{"name":"static/chunks/app/settings/page-7942cabfb7befc31.js","cache":"MISS"},"startTime":1767583957995,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":216531,"timestamp":262086609,"id":1740,"parentId":1732,"tags":{"name":"static/chunks/app/project/[id]/page-1ae9f99869ccc5e5.js","cache":"MISS"},"startTime":1767583957987,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":262922,"timestamp":262055167,"id":1733,"parentId":1732,"tags":{"name":"static/chunks/main-ff9852398b1f3782.js","cache":"MISS"},"startTime":1767583957955,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":286169,"timestamp":262109740,"id":1745,"parentId":1732,"tags":{"name":"static/chunks/992-bf52afd3d0de90b0.js","cache":"MISS"},"startTime":1767583958010,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":413081,"timestamp":262105267,"id":1744,"parentId":1732,"tags":{"name":"static/chunks/c476d598-52de8ab10fae5dac.js","cache":"MISS"},"startTime":1767583958005,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":377879,"timestamp":262140551,"id":1748,"parentId":1732,"tags":{"name":"server/middleware-react-loadable-manifest.js","cache":"MISS"},"startTime":1767583958041,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":377817,"timestamp":262140641,"id":1749,"parentId":1732,"tags":{"name":"static/mkY_TTl_ho_ehDKiX10AN/_ssgManifest.js","cache":"MISS"},"startTime":1767583958041,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":377806,"timestamp":262140679,"id":1750,"parentId":1732,"tags":{"name":"server/middleware-build-manifest.js","cache":"MISS"},"startTime":1767583958041,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":377797,"timestamp":262140712,"id":1751,"parentId":1732,"tags":{"name":"static/mkY_TTl_ho_ehDKiX10AN/_buildManifest.js","cache":"MISS"},"startTime":1767583958041,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":377788,"timestamp":262140742,"id":1752,"parentId":1732,"tags":{"name":"server/next-font-manifest.js","cache":"MISS"},"startTime":1767583958041,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":457047,"timestamp":262095720,"id":1743,"parentId":1732,"tags":{"name":"static/chunks/framework-63d70eb4e76697e6.js","cache":"MISS"},"startTime":1767583957996,"traceId":"8482a19cb410207d"}]
18
+ [{"name":"minify-js","duration":438471,"timestamp":262136389,"id":1747,"parentId":1732,"tags":{"name":"static/chunks/498-05477d3729b4e23d.js","cache":"MISS"},"startTime":1767583958037,"traceId":"8482a19cb410207d"},{"name":"minify-js","duration":533997,"timestamp":262110926,"id":1746,"parentId":1732,"tags":{"name":"static/chunks/574-e7576c28171a07ff.js","cache":"MISS"},"startTime":1767583958011,"traceId":"8482a19cb410207d"},{"name":"minify-webpack-plugin-optimize","duration":646076,"timestamp":261998872,"id":1732,"parentId":975,"tags":{"compilationName":"client","mangle":"[object Object]"},"startTime":1767583957899,"traceId":"8482a19cb410207d"},{"name":"minify-css","duration":502593,"timestamp":262645496,"id":1754,"parentId":1753,"tags":{"file":"static/css/ba878652785cd927.css","cache":"MISS"},"startTime":1767583958546,"traceId":"8482a19cb410207d"},{"name":"css-minimizer-plugin","duration":502899,"timestamp":262645211,"id":1753,"parentId":975,"tags":{},"startTime":1767583958545,"traceId":"8482a19cb410207d"},{"name":"seal","duration":1814330,"timestamp":261352660,"id":1716,"parentId":975,"tags":{},"startTime":1767583957253,"traceId":"8482a19cb410207d"},{"name":"webpack-compilation","duration":6498311,"timestamp":256669229,"id":975,"parentId":972,"tags":{"name":"client"},"startTime":1767583952569,"traceId":"8482a19cb410207d"},{"name":"emit","duration":15638,"timestamp":263168136,"id":1755,"parentId":972,"tags":{},"startTime":1767583959068,"traceId":"8482a19cb410207d"},{"name":"webpack-close","duration":695998,"timestamp":263185370,"id":1756,"parentId":972,"tags":{"name":"client"},"startTime":1767583959086,"traceId":"8482a19cb410207d"},{"name":"webpack-generate-error-stats","duration":3355,"timestamp":263881433,"id":1757,"parentId":1756,"tags":{},"startTime":1767583959782,"traceId":"8482a19cb410207d"},{"name":"run-webpack-compiler","duration":7508341,"timestamp":256376822,"id":972,"parentId":971,"tags":{},"startTime":1767583952277,"traceId":"8482a19cb410207d"},{"name":"format-webpack-messages","duration":2771,"timestamp":263885173,"id":1758,"parentId":971,"tags":{},"startTime":1767583959785,"traceId":"8482a19cb410207d"},{"name":"worker-main-client","duration":7511849,"timestamp":256376348,"id":971,"parentId":1,"tags":{},"startTime":1767583952277,"traceId":"8482a19cb410207d"},{"name":"verify-and-lint","duration":4285173,"timestamp":263975716,"id":1762,"parentId":1,"tags":{},"startTime":1767583959876,"traceId":"8482a19cb410207d"},{"name":"verify-typescript-setup","duration":8348384,"timestamp":263970425,"id":1761,"parentId":1,"tags":{},"startTime":1767583959871,"traceId":"8482a19cb410207d"},{"name":"check-static-error-page","duration":13541,"timestamp":272346817,"id":1765,"parentId":1764,"tags":{},"startTime":1767583968247,"traceId":"8482a19cb410207d"},{"name":"check-page","duration":2187,"timestamp":272407679,"id":1766,"parentId":1764,"tags":{"page":"/_app"},"startTime":1767583968308,"traceId":"8482a19cb410207d"},{"name":"check-page","duration":860,"timestamp":272409035,"id":1768,"parentId":1764,"tags":{"page":"/_document"},"startTime":1767583968309,"traceId":"8482a19cb410207d"},{"name":"check-page","duration":1987,"timestamp":272408883,"id":1767,"parentId":1764,"tags":{"page":"/_error"},"startTime":1767583968309,"traceId":"8482a19cb410207d"},{"name":"is-page-static","duration":360732,"timestamp":272420882,"id":1774,"parentId":1770,"tags":{},"startTime":1767583968321,"traceId":"8482a19cb410207d"},{"name":"check-page","duration":372385,"timestamp":272409298,"id":1770,"parentId":1764,"tags":{"page":"/"},"startTime":1767583968309,"traceId":"8482a19cb410207d"},{"name":"is-page-static","duration":385266,"timestamp":272411634,"id":1773,"parentId":1769,"tags":{},"startTime":1767583968312,"traceId":"8482a19cb410207d"},{"name":"check-page","duration":387861,"timestamp":272409100,"id":1769,"parentId":1764,"tags":{"page":"/_not-found"},"startTime":1767583968309,"traceId":"8482a19cb410207d"},{"name":"is-page-static","duration":405428,"timestamp":272420943,"id":1775,"parentId":1772,"tags":{},"startTime":1767583968321,"traceId":"8482a19cb410207d"},{"name":"check-page","duration":416987,"timestamp":272409449,"id":1772,"parentId":1764,"tags":{"page":"/settings"},"startTime":1767583968310,"traceId":"8482a19cb410207d"},{"name":"is-page-static","duration":405603,"timestamp":272420996,"id":1776,"parentId":1771,"tags":{},"startTime":1767583968321,"traceId":"8482a19cb410207d"},{"name":"check-page","duration":417251,"timestamp":272409382,"id":1771,"parentId":1764,"tags":{"page":"/project/[id]"},"startTime":1767583968310,"traceId":"8482a19cb410207d"},{"name":"static-check","duration":480703,"timestamp":272345958,"id":1764,"parentId":1,"tags":{},"startTime":1767583968246,"traceId":"8482a19cb410207d"},{"name":"generate-required-server-files","duration":479,"timestamp":272826798,"id":1778,"parentId":1,"tags":{},"startTime":1767583968727,"traceId":"8482a19cb410207d"},{"name":"write-routes-manifest","duration":3359,"timestamp":272843381,"id":1780,"parentId":1,"tags":{},"startTime":1767583968744,"traceId":"8482a19cb410207d"},{"name":"load-dotenv","duration":52,"timestamp":272900095,"id":1783,"parentId":1782,"tags":{},"startTime":1767583968800,"traceId":"8482a19cb410207d"},{"name":"run-export-path-map","duration":501,"timestamp":274029954,"id":1784,"parentId":1782,"tags":{},"startTime":1767583969930,"traceId":"8482a19cb410207d"},{"name":"next-export","duration":1859918,"timestamp":272898750,"id":1782,"parentId":1,"tags":{},"startTime":1767583968799,"traceId":"8482a19cb410207d"},{"name":"move-exported-app-not-found-","duration":7632,"timestamp":274760225,"id":1785,"parentId":1781,"tags":{},"startTime":1767583970660,"traceId":"8482a19cb410207d"},{"name":"move-exported-page","duration":23327,"timestamp":274768029,"id":1786,"parentId":1781,"tags":{},"startTime":1767583970668,"traceId":"8482a19cb410207d"},{"name":"static-generation","duration":2384154,"timestamp":272893877,"id":1781,"parentId":1,"tags":{},"startTime":1767583968794,"traceId":"8482a19cb410207d"},{"name":"write-routes-manifest","duration":90873,"timestamp":275278224,"id":1787,"parentId":1,"tags":{},"startTime":1767583971178,"traceId":"8482a19cb410207d"},{"name":"node-file-trace-build","duration":8846423,"timestamp":272833026,"id":1779,"parentId":1,"tags":{"isTurbotrace":"false"},"startTime":1767583968733,"traceId":"8482a19cb410207d"},{"name":"apply-include-excludes","duration":492,"timestamp":281679466,"id":1788,"parentId":1,"tags":{},"startTime":1767583977580,"traceId":"8482a19cb410207d"},{"name":"print-tree-view","duration":2732,"timestamp":281680098,"id":1789,"parentId":1,"tags":{},"startTime":1767583977580,"traceId":"8482a19cb410207d"},{"name":"telemetry-flush","duration":40,"timestamp":281682837,"id":1790,"parentId":1,"tags":{},"startTime":1767583977583,"traceId":"8482a19cb410207d"},{"name":"next-build","duration":36440648,"timestamp":245242235,"id":1,"tags":{"buildMode":"default","isTurboBuild":"false","version":"15.5.9","has-custom-webpack-config":"false","use-build-worker":"true"},"startTime":1767583941142,"traceId":"8482a19cb410207d"}]