@aion0/forge 0.5.24 → 0.5.26

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 (2743) hide show
  1. package/.forge/memory/graph.json +1 -0
  2. package/.forge/memory/knowledge.json +18 -0
  3. package/.forge/memory/meta.json +7 -0
  4. package/.forge/worktrees/pipeline-0a33c50d/CLAUDE.md +86 -0
  5. package/.forge/worktrees/pipeline-0a33c50d/README.md +136 -0
  6. package/.forge/worktrees/pipeline-0a33c50d/RELEASE_NOTES.md +11 -0
  7. package/.forge/worktrees/pipeline-0a33c50d/app/api/agents/route.ts +17 -0
  8. package/.forge/worktrees/pipeline-0a33c50d/app/api/auth/[...nextauth]/route.ts +3 -0
  9. package/.forge/worktrees/pipeline-0a33c50d/app/api/auth/verify/route.ts +46 -0
  10. package/.forge/worktrees/pipeline-0a33c50d/app/api/claude/[id]/route.ts +31 -0
  11. package/.forge/worktrees/pipeline-0a33c50d/app/api/claude/[id]/stream/route.ts +63 -0
  12. package/.forge/worktrees/pipeline-0a33c50d/app/api/claude/route.ts +28 -0
  13. package/.forge/worktrees/pipeline-0a33c50d/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
  14. package/.forge/worktrees/pipeline-0a33c50d/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
  15. package/.forge/worktrees/pipeline-0a33c50d/app/api/claude-sessions/[projectName]/route.ts +37 -0
  16. package/.forge/worktrees/pipeline-0a33c50d/app/api/claude-sessions/sync/route.ts +17 -0
  17. package/.forge/worktrees/pipeline-0a33c50d/app/api/claude-templates/route.ts +145 -0
  18. package/.forge/worktrees/pipeline-0a33c50d/app/api/code/route.ts +299 -0
  19. package/.forge/worktrees/pipeline-0a33c50d/app/api/delivery/[id]/route.ts +62 -0
  20. package/.forge/worktrees/pipeline-0a33c50d/app/api/delivery/route.ts +40 -0
  21. package/.forge/worktrees/pipeline-0a33c50d/app/api/detect-cli/route.ts +46 -0
  22. package/.forge/worktrees/pipeline-0a33c50d/app/api/docs/route.ts +176 -0
  23. package/.forge/worktrees/pipeline-0a33c50d/app/api/docs/sessions/route.ts +54 -0
  24. package/.forge/worktrees/pipeline-0a33c50d/app/api/favorites/route.ts +26 -0
  25. package/.forge/worktrees/pipeline-0a33c50d/app/api/flows/route.ts +6 -0
  26. package/.forge/worktrees/pipeline-0a33c50d/app/api/flows/run/route.ts +19 -0
  27. package/.forge/worktrees/pipeline-0a33c50d/app/api/git/route.ts +149 -0
  28. package/.forge/worktrees/pipeline-0a33c50d/app/api/help/route.ts +84 -0
  29. package/.forge/worktrees/pipeline-0a33c50d/app/api/issue-scanner/route.ts +116 -0
  30. package/.forge/worktrees/pipeline-0a33c50d/app/api/logs/route.ts +100 -0
  31. package/.forge/worktrees/pipeline-0a33c50d/app/api/mobile-chat/route.ts +115 -0
  32. package/.forge/worktrees/pipeline-0a33c50d/app/api/monitor/route.ts +74 -0
  33. package/.forge/worktrees/pipeline-0a33c50d/app/api/notifications/route.ts +42 -0
  34. package/.forge/worktrees/pipeline-0a33c50d/app/api/notify/test/route.ts +33 -0
  35. package/.forge/worktrees/pipeline-0a33c50d/app/api/online/route.ts +40 -0
  36. package/.forge/worktrees/pipeline-0a33c50d/app/api/pipelines/[id]/route.ts +41 -0
  37. package/.forge/worktrees/pipeline-0a33c50d/app/api/pipelines/route.ts +90 -0
  38. package/.forge/worktrees/pipeline-0a33c50d/app/api/plugins/route.ts +75 -0
  39. package/.forge/worktrees/pipeline-0a33c50d/app/api/preview/[...path]/route.ts +64 -0
  40. package/.forge/worktrees/pipeline-0a33c50d/app/api/preview/route.ts +156 -0
  41. package/.forge/worktrees/pipeline-0a33c50d/app/api/project-pipelines/route.ts +91 -0
  42. package/.forge/worktrees/pipeline-0a33c50d/app/api/project-sessions/route.ts +61 -0
  43. package/.forge/worktrees/pipeline-0a33c50d/app/api/projects/route.ts +26 -0
  44. package/.forge/worktrees/pipeline-0a33c50d/app/api/sessions/[id]/chat/route.ts +64 -0
  45. package/.forge/worktrees/pipeline-0a33c50d/app/api/sessions/[id]/messages/route.ts +9 -0
  46. package/.forge/worktrees/pipeline-0a33c50d/app/api/sessions/[id]/route.ts +17 -0
  47. package/.forge/worktrees/pipeline-0a33c50d/app/api/sessions/route.ts +20 -0
  48. package/.forge/worktrees/pipeline-0a33c50d/app/api/settings/route.ts +64 -0
  49. package/.forge/worktrees/pipeline-0a33c50d/app/api/skills/local/route.ts +228 -0
  50. package/.forge/worktrees/pipeline-0a33c50d/app/api/skills/route.ts +182 -0
  51. package/.forge/worktrees/pipeline-0a33c50d/app/api/smith-templates/route.ts +81 -0
  52. package/.forge/worktrees/pipeline-0a33c50d/app/api/status/route.ts +12 -0
  53. package/.forge/worktrees/pipeline-0a33c50d/app/api/tabs/route.ts +25 -0
  54. package/.forge/worktrees/pipeline-0a33c50d/app/api/tasks/[id]/route.ts +51 -0
  55. package/.forge/worktrees/pipeline-0a33c50d/app/api/tasks/[id]/stream/route.ts +77 -0
  56. package/.forge/worktrees/pipeline-0a33c50d/app/api/tasks/link/route.ts +37 -0
  57. package/.forge/worktrees/pipeline-0a33c50d/app/api/tasks/route.ts +44 -0
  58. package/.forge/worktrees/pipeline-0a33c50d/app/api/tasks/session/route.ts +14 -0
  59. package/.forge/worktrees/pipeline-0a33c50d/app/api/telegram/route.ts +23 -0
  60. package/.forge/worktrees/pipeline-0a33c50d/app/api/templates/route.ts +6 -0
  61. package/.forge/worktrees/pipeline-0a33c50d/app/api/terminal-bell/route.ts +35 -0
  62. package/.forge/worktrees/pipeline-0a33c50d/app/api/terminal-cwd/route.ts +19 -0
  63. package/.forge/worktrees/pipeline-0a33c50d/app/api/terminal-state/route.ts +15 -0
  64. package/.forge/worktrees/pipeline-0a33c50d/app/api/tunnel/route.ts +26 -0
  65. package/.forge/worktrees/pipeline-0a33c50d/app/api/upgrade/route.ts +43 -0
  66. package/.forge/worktrees/pipeline-0a33c50d/app/api/usage/route.ts +20 -0
  67. package/.forge/worktrees/pipeline-0a33c50d/app/api/version/route.ts +78 -0
  68. package/.forge/worktrees/pipeline-0a33c50d/app/api/watchers/route.ts +33 -0
  69. package/.forge/worktrees/pipeline-0a33c50d/app/api/workspace/[id]/agents/route.ts +35 -0
  70. package/.forge/worktrees/pipeline-0a33c50d/app/api/workspace/[id]/memory/route.ts +23 -0
  71. package/.forge/worktrees/pipeline-0a33c50d/app/api/workspace/[id]/smith/route.ts +22 -0
  72. package/.forge/worktrees/pipeline-0a33c50d/app/api/workspace/[id]/stream/route.ts +28 -0
  73. package/.forge/worktrees/pipeline-0a33c50d/app/api/workspace/route.ts +100 -0
  74. package/.forge/worktrees/pipeline-0a33c50d/app/global-error.tsx +21 -0
  75. package/.forge/worktrees/pipeline-0a33c50d/app/globals.css +52 -0
  76. package/.forge/worktrees/pipeline-0a33c50d/app/icon.ico +0 -0
  77. package/.forge/worktrees/pipeline-0a33c50d/app/icon.png +0 -0
  78. package/.forge/worktrees/pipeline-0a33c50d/app/icon.svg +106 -0
  79. package/.forge/worktrees/pipeline-0a33c50d/app/layout.tsx +17 -0
  80. package/.forge/worktrees/pipeline-0a33c50d/app/login/LoginForm.tsx +96 -0
  81. package/.forge/worktrees/pipeline-0a33c50d/app/login/page.tsx +10 -0
  82. package/.forge/worktrees/pipeline-0a33c50d/app/mobile/page.tsx +9 -0
  83. package/.forge/worktrees/pipeline-0a33c50d/app/page.tsx +21 -0
  84. package/.forge/worktrees/pipeline-0a33c50d/bin/forge-server.mjs +484 -0
  85. package/.forge/worktrees/pipeline-0a33c50d/check-forge-status.sh +71 -0
  86. package/.forge/worktrees/pipeline-0a33c50d/cli/mw.ts +579 -0
  87. package/.forge/worktrees/pipeline-0a33c50d/components/BrowserPanel.tsx +175 -0
  88. package/.forge/worktrees/pipeline-0a33c50d/components/ChatPanel.tsx +191 -0
  89. package/.forge/worktrees/pipeline-0a33c50d/components/ClaudeTerminal.tsx +267 -0
  90. package/.forge/worktrees/pipeline-0a33c50d/components/CodeViewer.tsx +787 -0
  91. package/.forge/worktrees/pipeline-0a33c50d/components/ConversationEditor.tsx +411 -0
  92. package/.forge/worktrees/pipeline-0a33c50d/components/ConversationGraphView.tsx +347 -0
  93. package/.forge/worktrees/pipeline-0a33c50d/components/ConversationTerminalView.tsx +303 -0
  94. package/.forge/worktrees/pipeline-0a33c50d/components/Dashboard.tsx +807 -0
  95. package/.forge/worktrees/pipeline-0a33c50d/components/DashboardWrapper.tsx +9 -0
  96. package/.forge/worktrees/pipeline-0a33c50d/components/DeliveryFlowEditor.tsx +491 -0
  97. package/.forge/worktrees/pipeline-0a33c50d/components/DeliveryList.tsx +230 -0
  98. package/.forge/worktrees/pipeline-0a33c50d/components/DeliveryWorkspace.tsx +589 -0
  99. package/.forge/worktrees/pipeline-0a33c50d/components/DocTerminal.tsx +187 -0
  100. package/.forge/worktrees/pipeline-0a33c50d/components/DocsViewer.tsx +574 -0
  101. package/.forge/worktrees/pipeline-0a33c50d/components/HelpDialog.tsx +169 -0
  102. package/.forge/worktrees/pipeline-0a33c50d/components/HelpTerminal.tsx +141 -0
  103. package/.forge/worktrees/pipeline-0a33c50d/components/InlinePipelineView.tsx +111 -0
  104. package/.forge/worktrees/pipeline-0a33c50d/components/LogViewer.tsx +194 -0
  105. package/.forge/worktrees/pipeline-0a33c50d/components/MarkdownContent.tsx +73 -0
  106. package/.forge/worktrees/pipeline-0a33c50d/components/MobileView.tsx +385 -0
  107. package/.forge/worktrees/pipeline-0a33c50d/components/MonitorPanel.tsx +122 -0
  108. package/.forge/worktrees/pipeline-0a33c50d/components/NewSessionModal.tsx +93 -0
  109. package/.forge/worktrees/pipeline-0a33c50d/components/NewTaskModal.tsx +492 -0
  110. package/.forge/worktrees/pipeline-0a33c50d/components/PipelineEditor.tsx +570 -0
  111. package/.forge/worktrees/pipeline-0a33c50d/components/PipelineView.tsx +1018 -0
  112. package/.forge/worktrees/pipeline-0a33c50d/components/PluginsPanel.tsx +472 -0
  113. package/.forge/worktrees/pipeline-0a33c50d/components/ProjectDetail.tsx +1618 -0
  114. package/.forge/worktrees/pipeline-0a33c50d/components/ProjectList.tsx +108 -0
  115. package/.forge/worktrees/pipeline-0a33c50d/components/ProjectManager.tsx +401 -0
  116. package/.forge/worktrees/pipeline-0a33c50d/components/SessionList.tsx +74 -0
  117. package/.forge/worktrees/pipeline-0a33c50d/components/SessionView.tsx +726 -0
  118. package/.forge/worktrees/pipeline-0a33c50d/components/SettingsModal.tsx +1647 -0
  119. package/.forge/worktrees/pipeline-0a33c50d/components/SkillsPanel.tsx +969 -0
  120. package/.forge/worktrees/pipeline-0a33c50d/components/StatusBar.tsx +99 -0
  121. package/.forge/worktrees/pipeline-0a33c50d/components/TabBar.tsx +46 -0
  122. package/.forge/worktrees/pipeline-0a33c50d/components/TaskBoard.tsx +113 -0
  123. package/.forge/worktrees/pipeline-0a33c50d/components/TaskDetail.tsx +372 -0
  124. package/.forge/worktrees/pipeline-0a33c50d/components/TerminalLauncher.tsx +398 -0
  125. package/.forge/worktrees/pipeline-0a33c50d/components/TunnelToggle.tsx +206 -0
  126. package/.forge/worktrees/pipeline-0a33c50d/components/UsagePanel.tsx +207 -0
  127. package/.forge/worktrees/pipeline-0a33c50d/components/WebTerminal.tsx +1683 -0
  128. package/.forge/worktrees/pipeline-0a33c50d/components/WorkspaceTree.tsx +221 -0
  129. package/.forge/worktrees/pipeline-0a33c50d/components/WorkspaceView.tsx +4048 -0
  130. package/.forge/worktrees/pipeline-0a33c50d/dev-test.sh +5 -0
  131. package/.forge/worktrees/pipeline-0a33c50d/docs/Forge_Memory_Layer_Design.docx +0 -0
  132. package/.forge/worktrees/pipeline-0a33c50d/docs/Forge_Strategy_Research_2026.docx +0 -0
  133. package/.forge/worktrees/pipeline-0a33c50d/docs/LOCAL-DEPLOY.md +144 -0
  134. package/.forge/worktrees/pipeline-0a33c50d/docs/roadmap-multi-agent-workflow.md +330 -0
  135. package/.forge/worktrees/pipeline-0a33c50d/forge-logo.png +0 -0
  136. package/.forge/worktrees/pipeline-0a33c50d/forge-logo.svg +106 -0
  137. package/.forge/worktrees/pipeline-0a33c50d/hooks/useSidebarResize.ts +52 -0
  138. package/.forge/worktrees/pipeline-0a33c50d/install.sh +29 -0
  139. package/.forge/worktrees/pipeline-0a33c50d/instrumentation.ts +35 -0
  140. package/.forge/worktrees/pipeline-0a33c50d/lib/agents/claude-adapter.ts +104 -0
  141. package/.forge/worktrees/pipeline-0a33c50d/lib/agents/generic-adapter.ts +64 -0
  142. package/.forge/worktrees/pipeline-0a33c50d/lib/agents/index.ts +245 -0
  143. package/.forge/worktrees/pipeline-0a33c50d/lib/agents/types.ts +70 -0
  144. package/.forge/worktrees/pipeline-0a33c50d/lib/artifacts.ts +106 -0
  145. package/.forge/worktrees/pipeline-0a33c50d/lib/auth.ts +62 -0
  146. package/.forge/worktrees/pipeline-0a33c50d/lib/builtin-plugins/docker.yaml +70 -0
  147. package/.forge/worktrees/pipeline-0a33c50d/lib/builtin-plugins/http.yaml +66 -0
  148. package/.forge/worktrees/pipeline-0a33c50d/lib/builtin-plugins/jenkins.yaml +92 -0
  149. package/.forge/worktrees/pipeline-0a33c50d/lib/builtin-plugins/llm-vision.yaml +85 -0
  150. package/.forge/worktrees/pipeline-0a33c50d/lib/builtin-plugins/playwright.yaml +111 -0
  151. package/.forge/worktrees/pipeline-0a33c50d/lib/builtin-plugins/shell-command.yaml +60 -0
  152. package/.forge/worktrees/pipeline-0a33c50d/lib/builtin-plugins/slack.yaml +48 -0
  153. package/.forge/worktrees/pipeline-0a33c50d/lib/builtin-plugins/webhook.yaml +56 -0
  154. package/.forge/worktrees/pipeline-0a33c50d/lib/claude-process.ts +352 -0
  155. package/.forge/worktrees/pipeline-0a33c50d/lib/claude-sessions.ts +266 -0
  156. package/.forge/worktrees/pipeline-0a33c50d/lib/claude-templates.ts +227 -0
  157. package/.forge/worktrees/pipeline-0a33c50d/lib/cloudflared.ts +424 -0
  158. package/.forge/worktrees/pipeline-0a33c50d/lib/crypto.ts +67 -0
  159. package/.forge/worktrees/pipeline-0a33c50d/lib/delivery.ts +787 -0
  160. package/.forge/worktrees/pipeline-0a33c50d/lib/dirs.ts +99 -0
  161. package/.forge/worktrees/pipeline-0a33c50d/lib/flows.ts +86 -0
  162. package/.forge/worktrees/pipeline-0a33c50d/lib/forge-mcp-server.ts +717 -0
  163. package/.forge/worktrees/pipeline-0a33c50d/lib/forge-skills/forge-inbox.md +38 -0
  164. package/.forge/worktrees/pipeline-0a33c50d/lib/forge-skills/forge-send.md +47 -0
  165. package/.forge/worktrees/pipeline-0a33c50d/lib/forge-skills/forge-status.md +32 -0
  166. package/.forge/worktrees/pipeline-0a33c50d/lib/forge-skills/forge-workspace-sync.md +37 -0
  167. package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/00-overview.md +40 -0
  168. package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/01-settings.md +194 -0
  169. package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/02-telegram.md +41 -0
  170. package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/03-tunnel.md +31 -0
  171. package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/04-tasks.md +52 -0
  172. package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/05-pipelines.md +460 -0
  173. package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/06-skills.md +43 -0
  174. package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/07-projects.md +73 -0
  175. package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/08-rules.md +53 -0
  176. package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/09-issue-autofix.md +55 -0
  177. package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/10-troubleshooting.md +89 -0
  178. package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/11-workspace.md +810 -0
  179. package/.forge/worktrees/pipeline-0a33c50d/lib/help-docs/CLAUDE.md +62 -0
  180. package/.forge/worktrees/pipeline-0a33c50d/lib/init.ts +266 -0
  181. package/.forge/worktrees/pipeline-0a33c50d/lib/issue-scanner.ts +298 -0
  182. package/.forge/worktrees/pipeline-0a33c50d/lib/logger.ts +79 -0
  183. package/.forge/worktrees/pipeline-0a33c50d/lib/notifications.ts +75 -0
  184. package/.forge/worktrees/pipeline-0a33c50d/lib/notify.ts +108 -0
  185. package/.forge/worktrees/pipeline-0a33c50d/lib/password.ts +97 -0
  186. package/.forge/worktrees/pipeline-0a33c50d/lib/pipeline-scheduler.ts +373 -0
  187. package/.forge/worktrees/pipeline-0a33c50d/lib/pipeline.ts +1438 -0
  188. package/.forge/worktrees/pipeline-0a33c50d/lib/plugins/executor.ts +347 -0
  189. package/.forge/worktrees/pipeline-0a33c50d/lib/plugins/registry.ts +228 -0
  190. package/.forge/worktrees/pipeline-0a33c50d/lib/plugins/types.ts +103 -0
  191. package/.forge/worktrees/pipeline-0a33c50d/lib/project-sessions.ts +53 -0
  192. package/.forge/worktrees/pipeline-0a33c50d/lib/projects.ts +86 -0
  193. package/.forge/worktrees/pipeline-0a33c50d/lib/session-manager.ts +156 -0
  194. package/.forge/worktrees/pipeline-0a33c50d/lib/session-utils.ts +53 -0
  195. package/.forge/worktrees/pipeline-0a33c50d/lib/session-watcher.ts +345 -0
  196. package/.forge/worktrees/pipeline-0a33c50d/lib/settings.ts +195 -0
  197. package/.forge/worktrees/pipeline-0a33c50d/lib/skills.ts +458 -0
  198. package/.forge/worktrees/pipeline-0a33c50d/lib/task-manager.ts +949 -0
  199. package/.forge/worktrees/pipeline-0a33c50d/lib/telegram-bot.ts +1477 -0
  200. package/.forge/worktrees/pipeline-0a33c50d/lib/telegram-standalone.ts +83 -0
  201. package/.forge/worktrees/pipeline-0a33c50d/lib/terminal-server.ts +70 -0
  202. package/.forge/worktrees/pipeline-0a33c50d/lib/terminal-standalone.ts +421 -0
  203. package/.forge/worktrees/pipeline-0a33c50d/lib/usage-scanner.ts +249 -0
  204. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/__tests__/state-machine.test.ts +388 -0
  205. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/__tests__/workspace.test.ts +311 -0
  206. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/agent-bus.ts +416 -0
  207. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/agent-worker.ts +655 -0
  208. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/backends/api-backend.ts +262 -0
  209. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/backends/cli-backend.ts +491 -0
  210. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/index.ts +82 -0
  211. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/manager.ts +136 -0
  212. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/orchestrator.ts +3400 -0
  213. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/persistence.ts +309 -0
  214. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/presets.ts +649 -0
  215. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/requests.ts +287 -0
  216. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/session-monitor.ts +240 -0
  217. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/skill-installer.ts +275 -0
  218. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/smith-memory.ts +498 -0
  219. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/types.ts +241 -0
  220. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace/watch-manager.ts +560 -0
  221. package/.forge/worktrees/pipeline-0a33c50d/lib/workspace-standalone.ts +911 -0
  222. package/.forge/worktrees/pipeline-0a33c50d/middleware.ts +51 -0
  223. package/.forge/worktrees/pipeline-0a33c50d/next.config.ts +26 -0
  224. package/.forge/worktrees/pipeline-0a33c50d/package.json +74 -0
  225. package/.forge/worktrees/pipeline-0a33c50d/pnpm-lock.yaml +3719 -0
  226. package/.forge/worktrees/pipeline-0a33c50d/pnpm-workspace.yaml +1 -0
  227. package/.forge/worktrees/pipeline-0a33c50d/postcss.config.mjs +7 -0
  228. package/.forge/worktrees/pipeline-0a33c50d/publish.sh +133 -0
  229. package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/README.md +66 -0
  230. package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/results/.gitignore +2 -0
  231. package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/run.ts +635 -0
  232. package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/tasks/01-text-utils/task.md +26 -0
  233. package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
  234. package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/tasks/02-pagination/setup.sh +19 -0
  235. package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/tasks/02-pagination/task.md +48 -0
  236. package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/tasks/02-pagination/validator.sh +69 -0
  237. package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
  238. package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/tasks/03-bug-fix/task.md +30 -0
  239. package/.forge/worktrees/pipeline-0a33c50d/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
  240. package/.forge/worktrees/pipeline-0a33c50d/scripts/verify-usage.ts +178 -0
  241. package/.forge/worktrees/pipeline-0a33c50d/src/config/index.ts +129 -0
  242. package/.forge/worktrees/pipeline-0a33c50d/src/core/db/database.ts +259 -0
  243. package/.forge/worktrees/pipeline-0a33c50d/src/core/memory/strategy.ts +32 -0
  244. package/.forge/worktrees/pipeline-0a33c50d/src/core/providers/chat.ts +65 -0
  245. package/.forge/worktrees/pipeline-0a33c50d/src/core/providers/registry.ts +60 -0
  246. package/.forge/worktrees/pipeline-0a33c50d/src/core/session/manager.ts +190 -0
  247. package/.forge/worktrees/pipeline-0a33c50d/src/types/index.ts +129 -0
  248. package/.forge/worktrees/pipeline-0a33c50d/start.sh +31 -0
  249. package/.forge/worktrees/pipeline-0a33c50d/templates/smith-lead.json +45 -0
  250. package/.forge/worktrees/pipeline-0a33c50d/tsconfig.json +42 -0
  251. package/.forge/worktrees/pipeline-2ba01c10/CLAUDE.md +86 -0
  252. package/.forge/worktrees/pipeline-2ba01c10/README.md +136 -0
  253. package/.forge/worktrees/pipeline-2ba01c10/RELEASE_NOTES.md +11 -0
  254. package/.forge/worktrees/pipeline-2ba01c10/app/api/agents/route.ts +17 -0
  255. package/.forge/worktrees/pipeline-2ba01c10/app/api/auth/[...nextauth]/route.ts +3 -0
  256. package/.forge/worktrees/pipeline-2ba01c10/app/api/auth/verify/route.ts +46 -0
  257. package/.forge/worktrees/pipeline-2ba01c10/app/api/claude/[id]/route.ts +31 -0
  258. package/.forge/worktrees/pipeline-2ba01c10/app/api/claude/[id]/stream/route.ts +63 -0
  259. package/.forge/worktrees/pipeline-2ba01c10/app/api/claude/route.ts +28 -0
  260. package/.forge/worktrees/pipeline-2ba01c10/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
  261. package/.forge/worktrees/pipeline-2ba01c10/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
  262. package/.forge/worktrees/pipeline-2ba01c10/app/api/claude-sessions/[projectName]/route.ts +37 -0
  263. package/.forge/worktrees/pipeline-2ba01c10/app/api/claude-sessions/sync/route.ts +17 -0
  264. package/.forge/worktrees/pipeline-2ba01c10/app/api/claude-templates/route.ts +145 -0
  265. package/.forge/worktrees/pipeline-2ba01c10/app/api/code/route.ts +299 -0
  266. package/.forge/worktrees/pipeline-2ba01c10/app/api/delivery/[id]/route.ts +62 -0
  267. package/.forge/worktrees/pipeline-2ba01c10/app/api/delivery/route.ts +40 -0
  268. package/.forge/worktrees/pipeline-2ba01c10/app/api/detect-cli/route.ts +46 -0
  269. package/.forge/worktrees/pipeline-2ba01c10/app/api/docs/route.ts +176 -0
  270. package/.forge/worktrees/pipeline-2ba01c10/app/api/docs/sessions/route.ts +54 -0
  271. package/.forge/worktrees/pipeline-2ba01c10/app/api/favorites/route.ts +26 -0
  272. package/.forge/worktrees/pipeline-2ba01c10/app/api/flows/route.ts +6 -0
  273. package/.forge/worktrees/pipeline-2ba01c10/app/api/flows/run/route.ts +19 -0
  274. package/.forge/worktrees/pipeline-2ba01c10/app/api/git/route.ts +149 -0
  275. package/.forge/worktrees/pipeline-2ba01c10/app/api/help/route.ts +84 -0
  276. package/.forge/worktrees/pipeline-2ba01c10/app/api/issue-scanner/route.ts +116 -0
  277. package/.forge/worktrees/pipeline-2ba01c10/app/api/logs/route.ts +100 -0
  278. package/.forge/worktrees/pipeline-2ba01c10/app/api/mobile-chat/route.ts +115 -0
  279. package/.forge/worktrees/pipeline-2ba01c10/app/api/monitor/route.ts +74 -0
  280. package/.forge/worktrees/pipeline-2ba01c10/app/api/notifications/route.ts +42 -0
  281. package/.forge/worktrees/pipeline-2ba01c10/app/api/notify/test/route.ts +33 -0
  282. package/.forge/worktrees/pipeline-2ba01c10/app/api/online/route.ts +40 -0
  283. package/.forge/worktrees/pipeline-2ba01c10/app/api/pipelines/[id]/route.ts +41 -0
  284. package/.forge/worktrees/pipeline-2ba01c10/app/api/pipelines/route.ts +90 -0
  285. package/.forge/worktrees/pipeline-2ba01c10/app/api/plugins/route.ts +75 -0
  286. package/.forge/worktrees/pipeline-2ba01c10/app/api/preview/[...path]/route.ts +64 -0
  287. package/.forge/worktrees/pipeline-2ba01c10/app/api/preview/route.ts +156 -0
  288. package/.forge/worktrees/pipeline-2ba01c10/app/api/project-pipelines/route.ts +91 -0
  289. package/.forge/worktrees/pipeline-2ba01c10/app/api/project-sessions/route.ts +61 -0
  290. package/.forge/worktrees/pipeline-2ba01c10/app/api/projects/route.ts +26 -0
  291. package/.forge/worktrees/pipeline-2ba01c10/app/api/sessions/[id]/chat/route.ts +64 -0
  292. package/.forge/worktrees/pipeline-2ba01c10/app/api/sessions/[id]/messages/route.ts +9 -0
  293. package/.forge/worktrees/pipeline-2ba01c10/app/api/sessions/[id]/route.ts +17 -0
  294. package/.forge/worktrees/pipeline-2ba01c10/app/api/sessions/route.ts +20 -0
  295. package/.forge/worktrees/pipeline-2ba01c10/app/api/settings/route.ts +64 -0
  296. package/.forge/worktrees/pipeline-2ba01c10/app/api/skills/local/route.ts +228 -0
  297. package/.forge/worktrees/pipeline-2ba01c10/app/api/skills/route.ts +182 -0
  298. package/.forge/worktrees/pipeline-2ba01c10/app/api/smith-templates/route.ts +81 -0
  299. package/.forge/worktrees/pipeline-2ba01c10/app/api/status/route.ts +12 -0
  300. package/.forge/worktrees/pipeline-2ba01c10/app/api/tabs/route.ts +25 -0
  301. package/.forge/worktrees/pipeline-2ba01c10/app/api/tasks/[id]/route.ts +51 -0
  302. package/.forge/worktrees/pipeline-2ba01c10/app/api/tasks/[id]/stream/route.ts +77 -0
  303. package/.forge/worktrees/pipeline-2ba01c10/app/api/tasks/link/route.ts +37 -0
  304. package/.forge/worktrees/pipeline-2ba01c10/app/api/tasks/route.ts +44 -0
  305. package/.forge/worktrees/pipeline-2ba01c10/app/api/tasks/session/route.ts +14 -0
  306. package/.forge/worktrees/pipeline-2ba01c10/app/api/telegram/route.ts +23 -0
  307. package/.forge/worktrees/pipeline-2ba01c10/app/api/templates/route.ts +6 -0
  308. package/.forge/worktrees/pipeline-2ba01c10/app/api/terminal-bell/route.ts +35 -0
  309. package/.forge/worktrees/pipeline-2ba01c10/app/api/terminal-cwd/route.ts +19 -0
  310. package/.forge/worktrees/pipeline-2ba01c10/app/api/terminal-state/route.ts +15 -0
  311. package/.forge/worktrees/pipeline-2ba01c10/app/api/tunnel/route.ts +26 -0
  312. package/.forge/worktrees/pipeline-2ba01c10/app/api/upgrade/route.ts +43 -0
  313. package/.forge/worktrees/pipeline-2ba01c10/app/api/usage/route.ts +20 -0
  314. package/.forge/worktrees/pipeline-2ba01c10/app/api/version/route.ts +78 -0
  315. package/.forge/worktrees/pipeline-2ba01c10/app/api/watchers/route.ts +33 -0
  316. package/.forge/worktrees/pipeline-2ba01c10/app/api/workspace/[id]/agents/route.ts +35 -0
  317. package/.forge/worktrees/pipeline-2ba01c10/app/api/workspace/[id]/memory/route.ts +23 -0
  318. package/.forge/worktrees/pipeline-2ba01c10/app/api/workspace/[id]/smith/route.ts +22 -0
  319. package/.forge/worktrees/pipeline-2ba01c10/app/api/workspace/[id]/stream/route.ts +28 -0
  320. package/.forge/worktrees/pipeline-2ba01c10/app/api/workspace/route.ts +100 -0
  321. package/.forge/worktrees/pipeline-2ba01c10/app/global-error.tsx +21 -0
  322. package/.forge/worktrees/pipeline-2ba01c10/app/globals.css +52 -0
  323. package/.forge/worktrees/pipeline-2ba01c10/app/icon.ico +0 -0
  324. package/.forge/worktrees/pipeline-2ba01c10/app/icon.png +0 -0
  325. package/.forge/worktrees/pipeline-2ba01c10/app/icon.svg +106 -0
  326. package/.forge/worktrees/pipeline-2ba01c10/app/layout.tsx +17 -0
  327. package/.forge/worktrees/pipeline-2ba01c10/app/login/LoginForm.tsx +96 -0
  328. package/.forge/worktrees/pipeline-2ba01c10/app/login/page.tsx +10 -0
  329. package/.forge/worktrees/pipeline-2ba01c10/app/mobile/page.tsx +9 -0
  330. package/.forge/worktrees/pipeline-2ba01c10/app/page.tsx +21 -0
  331. package/.forge/worktrees/pipeline-2ba01c10/bin/forge-server.mjs +484 -0
  332. package/.forge/worktrees/pipeline-2ba01c10/check-forge-status.sh +71 -0
  333. package/.forge/worktrees/pipeline-2ba01c10/cli/mw.ts +579 -0
  334. package/.forge/worktrees/pipeline-2ba01c10/components/BrowserPanel.tsx +175 -0
  335. package/.forge/worktrees/pipeline-2ba01c10/components/ChatPanel.tsx +191 -0
  336. package/.forge/worktrees/pipeline-2ba01c10/components/ClaudeTerminal.tsx +267 -0
  337. package/.forge/worktrees/pipeline-2ba01c10/components/CodeViewer.tsx +787 -0
  338. package/.forge/worktrees/pipeline-2ba01c10/components/ConversationEditor.tsx +411 -0
  339. package/.forge/worktrees/pipeline-2ba01c10/components/ConversationGraphView.tsx +347 -0
  340. package/.forge/worktrees/pipeline-2ba01c10/components/ConversationTerminalView.tsx +303 -0
  341. package/.forge/worktrees/pipeline-2ba01c10/components/Dashboard.tsx +807 -0
  342. package/.forge/worktrees/pipeline-2ba01c10/components/DashboardWrapper.tsx +9 -0
  343. package/.forge/worktrees/pipeline-2ba01c10/components/DeliveryFlowEditor.tsx +491 -0
  344. package/.forge/worktrees/pipeline-2ba01c10/components/DeliveryList.tsx +230 -0
  345. package/.forge/worktrees/pipeline-2ba01c10/components/DeliveryWorkspace.tsx +589 -0
  346. package/.forge/worktrees/pipeline-2ba01c10/components/DocTerminal.tsx +187 -0
  347. package/.forge/worktrees/pipeline-2ba01c10/components/DocsViewer.tsx +574 -0
  348. package/.forge/worktrees/pipeline-2ba01c10/components/HelpDialog.tsx +169 -0
  349. package/.forge/worktrees/pipeline-2ba01c10/components/HelpTerminal.tsx +141 -0
  350. package/.forge/worktrees/pipeline-2ba01c10/components/InlinePipelineView.tsx +111 -0
  351. package/.forge/worktrees/pipeline-2ba01c10/components/LogViewer.tsx +194 -0
  352. package/.forge/worktrees/pipeline-2ba01c10/components/MarkdownContent.tsx +73 -0
  353. package/.forge/worktrees/pipeline-2ba01c10/components/MobileView.tsx +385 -0
  354. package/.forge/worktrees/pipeline-2ba01c10/components/MonitorPanel.tsx +122 -0
  355. package/.forge/worktrees/pipeline-2ba01c10/components/NewSessionModal.tsx +93 -0
  356. package/.forge/worktrees/pipeline-2ba01c10/components/NewTaskModal.tsx +492 -0
  357. package/.forge/worktrees/pipeline-2ba01c10/components/PipelineEditor.tsx +570 -0
  358. package/.forge/worktrees/pipeline-2ba01c10/components/PipelineView.tsx +1018 -0
  359. package/.forge/worktrees/pipeline-2ba01c10/components/PluginsPanel.tsx +472 -0
  360. package/.forge/worktrees/pipeline-2ba01c10/components/ProjectDetail.tsx +1618 -0
  361. package/.forge/worktrees/pipeline-2ba01c10/components/ProjectList.tsx +108 -0
  362. package/.forge/worktrees/pipeline-2ba01c10/components/ProjectManager.tsx +401 -0
  363. package/.forge/worktrees/pipeline-2ba01c10/components/SessionList.tsx +74 -0
  364. package/.forge/worktrees/pipeline-2ba01c10/components/SessionView.tsx +726 -0
  365. package/.forge/worktrees/pipeline-2ba01c10/components/SettingsModal.tsx +1647 -0
  366. package/.forge/worktrees/pipeline-2ba01c10/components/SkillsPanel.tsx +969 -0
  367. package/.forge/worktrees/pipeline-2ba01c10/components/StatusBar.tsx +99 -0
  368. package/.forge/worktrees/pipeline-2ba01c10/components/TabBar.tsx +46 -0
  369. package/.forge/worktrees/pipeline-2ba01c10/components/TaskBoard.tsx +113 -0
  370. package/.forge/worktrees/pipeline-2ba01c10/components/TaskDetail.tsx +372 -0
  371. package/.forge/worktrees/pipeline-2ba01c10/components/TerminalLauncher.tsx +398 -0
  372. package/.forge/worktrees/pipeline-2ba01c10/components/TunnelToggle.tsx +206 -0
  373. package/.forge/worktrees/pipeline-2ba01c10/components/UsagePanel.tsx +207 -0
  374. package/.forge/worktrees/pipeline-2ba01c10/components/WebTerminal.tsx +1683 -0
  375. package/.forge/worktrees/pipeline-2ba01c10/components/WorkspaceTree.tsx +221 -0
  376. package/.forge/worktrees/pipeline-2ba01c10/components/WorkspaceView.tsx +4048 -0
  377. package/.forge/worktrees/pipeline-2ba01c10/dev-test.sh +5 -0
  378. package/.forge/worktrees/pipeline-2ba01c10/docs/Forge_Memory_Layer_Design.docx +0 -0
  379. package/.forge/worktrees/pipeline-2ba01c10/docs/Forge_Strategy_Research_2026.docx +0 -0
  380. package/.forge/worktrees/pipeline-2ba01c10/docs/LOCAL-DEPLOY.md +144 -0
  381. package/.forge/worktrees/pipeline-2ba01c10/docs/roadmap-multi-agent-workflow.md +330 -0
  382. package/.forge/worktrees/pipeline-2ba01c10/forge-logo.png +0 -0
  383. package/.forge/worktrees/pipeline-2ba01c10/forge-logo.svg +106 -0
  384. package/.forge/worktrees/pipeline-2ba01c10/hooks/useSidebarResize.ts +52 -0
  385. package/.forge/worktrees/pipeline-2ba01c10/install.sh +29 -0
  386. package/.forge/worktrees/pipeline-2ba01c10/instrumentation.ts +35 -0
  387. package/.forge/worktrees/pipeline-2ba01c10/lib/agents/claude-adapter.ts +104 -0
  388. package/.forge/worktrees/pipeline-2ba01c10/lib/agents/generic-adapter.ts +64 -0
  389. package/.forge/worktrees/pipeline-2ba01c10/lib/agents/index.ts +245 -0
  390. package/.forge/worktrees/pipeline-2ba01c10/lib/agents/types.ts +70 -0
  391. package/.forge/worktrees/pipeline-2ba01c10/lib/artifacts.ts +106 -0
  392. package/.forge/worktrees/pipeline-2ba01c10/lib/auth.ts +62 -0
  393. package/.forge/worktrees/pipeline-2ba01c10/lib/builtin-plugins/docker.yaml +70 -0
  394. package/.forge/worktrees/pipeline-2ba01c10/lib/builtin-plugins/http.yaml +66 -0
  395. package/.forge/worktrees/pipeline-2ba01c10/lib/builtin-plugins/jenkins.yaml +92 -0
  396. package/.forge/worktrees/pipeline-2ba01c10/lib/builtin-plugins/llm-vision.yaml +85 -0
  397. package/.forge/worktrees/pipeline-2ba01c10/lib/builtin-plugins/playwright.yaml +111 -0
  398. package/.forge/worktrees/pipeline-2ba01c10/lib/builtin-plugins/shell-command.yaml +60 -0
  399. package/.forge/worktrees/pipeline-2ba01c10/lib/builtin-plugins/slack.yaml +48 -0
  400. package/.forge/worktrees/pipeline-2ba01c10/lib/builtin-plugins/webhook.yaml +56 -0
  401. package/.forge/worktrees/pipeline-2ba01c10/lib/claude-process.ts +352 -0
  402. package/.forge/worktrees/pipeline-2ba01c10/lib/claude-sessions.ts +266 -0
  403. package/.forge/worktrees/pipeline-2ba01c10/lib/claude-templates.ts +227 -0
  404. package/.forge/worktrees/pipeline-2ba01c10/lib/cloudflared.ts +424 -0
  405. package/.forge/worktrees/pipeline-2ba01c10/lib/crypto.ts +67 -0
  406. package/.forge/worktrees/pipeline-2ba01c10/lib/delivery.ts +787 -0
  407. package/.forge/worktrees/pipeline-2ba01c10/lib/dirs.ts +99 -0
  408. package/.forge/worktrees/pipeline-2ba01c10/lib/flows.ts +86 -0
  409. package/.forge/worktrees/pipeline-2ba01c10/lib/forge-mcp-server.ts +717 -0
  410. package/.forge/worktrees/pipeline-2ba01c10/lib/forge-skills/forge-inbox.md +38 -0
  411. package/.forge/worktrees/pipeline-2ba01c10/lib/forge-skills/forge-send.md +47 -0
  412. package/.forge/worktrees/pipeline-2ba01c10/lib/forge-skills/forge-status.md +32 -0
  413. package/.forge/worktrees/pipeline-2ba01c10/lib/forge-skills/forge-workspace-sync.md +37 -0
  414. package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/00-overview.md +40 -0
  415. package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/01-settings.md +194 -0
  416. package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/02-telegram.md +41 -0
  417. package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/03-tunnel.md +31 -0
  418. package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/04-tasks.md +52 -0
  419. package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/05-pipelines.md +460 -0
  420. package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/06-skills.md +43 -0
  421. package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/07-projects.md +73 -0
  422. package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/08-rules.md +53 -0
  423. package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/09-issue-autofix.md +55 -0
  424. package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/10-troubleshooting.md +89 -0
  425. package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/11-workspace.md +810 -0
  426. package/.forge/worktrees/pipeline-2ba01c10/lib/help-docs/CLAUDE.md +62 -0
  427. package/.forge/worktrees/pipeline-2ba01c10/lib/init.ts +266 -0
  428. package/.forge/worktrees/pipeline-2ba01c10/lib/issue-scanner.ts +298 -0
  429. package/.forge/worktrees/pipeline-2ba01c10/lib/logger.ts +79 -0
  430. package/.forge/worktrees/pipeline-2ba01c10/lib/notifications.ts +75 -0
  431. package/.forge/worktrees/pipeline-2ba01c10/lib/notify.ts +108 -0
  432. package/.forge/worktrees/pipeline-2ba01c10/lib/password.ts +97 -0
  433. package/.forge/worktrees/pipeline-2ba01c10/lib/pipeline-scheduler.ts +373 -0
  434. package/.forge/worktrees/pipeline-2ba01c10/lib/pipeline.ts +1438 -0
  435. package/.forge/worktrees/pipeline-2ba01c10/lib/plugins/executor.ts +347 -0
  436. package/.forge/worktrees/pipeline-2ba01c10/lib/plugins/registry.ts +228 -0
  437. package/.forge/worktrees/pipeline-2ba01c10/lib/plugins/types.ts +103 -0
  438. package/.forge/worktrees/pipeline-2ba01c10/lib/project-sessions.ts +53 -0
  439. package/.forge/worktrees/pipeline-2ba01c10/lib/projects.ts +86 -0
  440. package/.forge/worktrees/pipeline-2ba01c10/lib/session-manager.ts +156 -0
  441. package/.forge/worktrees/pipeline-2ba01c10/lib/session-utils.ts +53 -0
  442. package/.forge/worktrees/pipeline-2ba01c10/lib/session-watcher.ts +345 -0
  443. package/.forge/worktrees/pipeline-2ba01c10/lib/settings.ts +195 -0
  444. package/.forge/worktrees/pipeline-2ba01c10/lib/skills.ts +458 -0
  445. package/.forge/worktrees/pipeline-2ba01c10/lib/task-manager.ts +949 -0
  446. package/.forge/worktrees/pipeline-2ba01c10/lib/telegram-bot.ts +1477 -0
  447. package/.forge/worktrees/pipeline-2ba01c10/lib/telegram-standalone.ts +83 -0
  448. package/.forge/worktrees/pipeline-2ba01c10/lib/terminal-server.ts +70 -0
  449. package/.forge/worktrees/pipeline-2ba01c10/lib/terminal-standalone.ts +421 -0
  450. package/.forge/worktrees/pipeline-2ba01c10/lib/usage-scanner.ts +249 -0
  451. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/__tests__/state-machine.test.ts +388 -0
  452. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/__tests__/workspace.test.ts +311 -0
  453. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/agent-bus.ts +416 -0
  454. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/agent-worker.ts +655 -0
  455. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/backends/api-backend.ts +262 -0
  456. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/backends/cli-backend.ts +491 -0
  457. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/index.ts +82 -0
  458. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/manager.ts +136 -0
  459. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/orchestrator.ts +3400 -0
  460. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/persistence.ts +309 -0
  461. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/presets.ts +649 -0
  462. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/requests.ts +287 -0
  463. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/session-monitor.ts +240 -0
  464. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/skill-installer.ts +275 -0
  465. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/smith-memory.ts +498 -0
  466. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/types.ts +241 -0
  467. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace/watch-manager.ts +560 -0
  468. package/.forge/worktrees/pipeline-2ba01c10/lib/workspace-standalone.ts +911 -0
  469. package/.forge/worktrees/pipeline-2ba01c10/middleware.ts +51 -0
  470. package/.forge/worktrees/pipeline-2ba01c10/next.config.ts +26 -0
  471. package/.forge/worktrees/pipeline-2ba01c10/package.json +74 -0
  472. package/.forge/worktrees/pipeline-2ba01c10/pnpm-lock.yaml +3719 -0
  473. package/.forge/worktrees/pipeline-2ba01c10/pnpm-workspace.yaml +1 -0
  474. package/.forge/worktrees/pipeline-2ba01c10/postcss.config.mjs +7 -0
  475. package/.forge/worktrees/pipeline-2ba01c10/publish.sh +133 -0
  476. package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/README.md +66 -0
  477. package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/results/.gitignore +2 -0
  478. package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/run.ts +635 -0
  479. package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/tasks/01-text-utils/task.md +26 -0
  480. package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
  481. package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/tasks/02-pagination/setup.sh +19 -0
  482. package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/tasks/02-pagination/task.md +48 -0
  483. package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/tasks/02-pagination/validator.sh +69 -0
  484. package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
  485. package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/tasks/03-bug-fix/task.md +30 -0
  486. package/.forge/worktrees/pipeline-2ba01c10/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
  487. package/.forge/worktrees/pipeline-2ba01c10/scripts/verify-usage.ts +178 -0
  488. package/.forge/worktrees/pipeline-2ba01c10/src/config/index.ts +129 -0
  489. package/.forge/worktrees/pipeline-2ba01c10/src/core/db/database.ts +259 -0
  490. package/.forge/worktrees/pipeline-2ba01c10/src/core/memory/strategy.ts +32 -0
  491. package/.forge/worktrees/pipeline-2ba01c10/src/core/providers/chat.ts +65 -0
  492. package/.forge/worktrees/pipeline-2ba01c10/src/core/providers/registry.ts +60 -0
  493. package/.forge/worktrees/pipeline-2ba01c10/src/core/session/manager.ts +190 -0
  494. package/.forge/worktrees/pipeline-2ba01c10/src/types/index.ts +129 -0
  495. package/.forge/worktrees/pipeline-2ba01c10/start.sh +31 -0
  496. package/.forge/worktrees/pipeline-2ba01c10/templates/smith-lead.json +45 -0
  497. package/.forge/worktrees/pipeline-2ba01c10/tsconfig.json +42 -0
  498. package/.forge/worktrees/pipeline-3156a8b3/CLAUDE.md +86 -0
  499. package/.forge/worktrees/pipeline-3156a8b3/README.md +136 -0
  500. package/.forge/worktrees/pipeline-3156a8b3/RELEASE_NOTES.md +11 -0
  501. package/.forge/worktrees/pipeline-3156a8b3/app/api/agents/route.ts +17 -0
  502. package/.forge/worktrees/pipeline-3156a8b3/app/api/auth/[...nextauth]/route.ts +3 -0
  503. package/.forge/worktrees/pipeline-3156a8b3/app/api/auth/verify/route.ts +46 -0
  504. package/.forge/worktrees/pipeline-3156a8b3/app/api/claude/[id]/route.ts +31 -0
  505. package/.forge/worktrees/pipeline-3156a8b3/app/api/claude/[id]/stream/route.ts +63 -0
  506. package/.forge/worktrees/pipeline-3156a8b3/app/api/claude/route.ts +28 -0
  507. package/.forge/worktrees/pipeline-3156a8b3/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
  508. package/.forge/worktrees/pipeline-3156a8b3/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
  509. package/.forge/worktrees/pipeline-3156a8b3/app/api/claude-sessions/[projectName]/route.ts +37 -0
  510. package/.forge/worktrees/pipeline-3156a8b3/app/api/claude-sessions/sync/route.ts +17 -0
  511. package/.forge/worktrees/pipeline-3156a8b3/app/api/claude-templates/route.ts +145 -0
  512. package/.forge/worktrees/pipeline-3156a8b3/app/api/code/route.ts +299 -0
  513. package/.forge/worktrees/pipeline-3156a8b3/app/api/delivery/[id]/route.ts +62 -0
  514. package/.forge/worktrees/pipeline-3156a8b3/app/api/delivery/route.ts +40 -0
  515. package/.forge/worktrees/pipeline-3156a8b3/app/api/detect-cli/route.ts +46 -0
  516. package/.forge/worktrees/pipeline-3156a8b3/app/api/docs/route.ts +176 -0
  517. package/.forge/worktrees/pipeline-3156a8b3/app/api/docs/sessions/route.ts +54 -0
  518. package/.forge/worktrees/pipeline-3156a8b3/app/api/favorites/route.ts +26 -0
  519. package/.forge/worktrees/pipeline-3156a8b3/app/api/flows/route.ts +6 -0
  520. package/.forge/worktrees/pipeline-3156a8b3/app/api/flows/run/route.ts +19 -0
  521. package/.forge/worktrees/pipeline-3156a8b3/app/api/git/route.ts +149 -0
  522. package/.forge/worktrees/pipeline-3156a8b3/app/api/help/route.ts +84 -0
  523. package/.forge/worktrees/pipeline-3156a8b3/app/api/issue-scanner/route.ts +116 -0
  524. package/.forge/worktrees/pipeline-3156a8b3/app/api/logs/route.ts +100 -0
  525. package/.forge/worktrees/pipeline-3156a8b3/app/api/mobile-chat/route.ts +115 -0
  526. package/.forge/worktrees/pipeline-3156a8b3/app/api/monitor/route.ts +74 -0
  527. package/.forge/worktrees/pipeline-3156a8b3/app/api/notifications/route.ts +42 -0
  528. package/.forge/worktrees/pipeline-3156a8b3/app/api/notify/test/route.ts +33 -0
  529. package/.forge/worktrees/pipeline-3156a8b3/app/api/online/route.ts +40 -0
  530. package/.forge/worktrees/pipeline-3156a8b3/app/api/pipelines/[id]/route.ts +41 -0
  531. package/.forge/worktrees/pipeline-3156a8b3/app/api/pipelines/route.ts +90 -0
  532. package/.forge/worktrees/pipeline-3156a8b3/app/api/plugins/route.ts +75 -0
  533. package/.forge/worktrees/pipeline-3156a8b3/app/api/preview/[...path]/route.ts +64 -0
  534. package/.forge/worktrees/pipeline-3156a8b3/app/api/preview/route.ts +156 -0
  535. package/.forge/worktrees/pipeline-3156a8b3/app/api/project-pipelines/route.ts +91 -0
  536. package/.forge/worktrees/pipeline-3156a8b3/app/api/project-sessions/route.ts +61 -0
  537. package/.forge/worktrees/pipeline-3156a8b3/app/api/projects/route.ts +26 -0
  538. package/.forge/worktrees/pipeline-3156a8b3/app/api/sessions/[id]/chat/route.ts +64 -0
  539. package/.forge/worktrees/pipeline-3156a8b3/app/api/sessions/[id]/messages/route.ts +9 -0
  540. package/.forge/worktrees/pipeline-3156a8b3/app/api/sessions/[id]/route.ts +17 -0
  541. package/.forge/worktrees/pipeline-3156a8b3/app/api/sessions/route.ts +20 -0
  542. package/.forge/worktrees/pipeline-3156a8b3/app/api/settings/route.ts +64 -0
  543. package/.forge/worktrees/pipeline-3156a8b3/app/api/skills/local/route.ts +228 -0
  544. package/.forge/worktrees/pipeline-3156a8b3/app/api/skills/route.ts +182 -0
  545. package/.forge/worktrees/pipeline-3156a8b3/app/api/smith-templates/route.ts +81 -0
  546. package/.forge/worktrees/pipeline-3156a8b3/app/api/status/route.ts +12 -0
  547. package/.forge/worktrees/pipeline-3156a8b3/app/api/tabs/route.ts +25 -0
  548. package/.forge/worktrees/pipeline-3156a8b3/app/api/tasks/[id]/route.ts +51 -0
  549. package/.forge/worktrees/pipeline-3156a8b3/app/api/tasks/[id]/stream/route.ts +77 -0
  550. package/.forge/worktrees/pipeline-3156a8b3/app/api/tasks/link/route.ts +37 -0
  551. package/.forge/worktrees/pipeline-3156a8b3/app/api/tasks/route.ts +44 -0
  552. package/.forge/worktrees/pipeline-3156a8b3/app/api/tasks/session/route.ts +14 -0
  553. package/.forge/worktrees/pipeline-3156a8b3/app/api/telegram/route.ts +23 -0
  554. package/.forge/worktrees/pipeline-3156a8b3/app/api/templates/route.ts +6 -0
  555. package/.forge/worktrees/pipeline-3156a8b3/app/api/terminal-bell/route.ts +35 -0
  556. package/.forge/worktrees/pipeline-3156a8b3/app/api/terminal-cwd/route.ts +19 -0
  557. package/.forge/worktrees/pipeline-3156a8b3/app/api/terminal-state/route.ts +15 -0
  558. package/.forge/worktrees/pipeline-3156a8b3/app/api/tunnel/route.ts +26 -0
  559. package/.forge/worktrees/pipeline-3156a8b3/app/api/upgrade/route.ts +43 -0
  560. package/.forge/worktrees/pipeline-3156a8b3/app/api/usage/route.ts +20 -0
  561. package/.forge/worktrees/pipeline-3156a8b3/app/api/version/route.ts +78 -0
  562. package/.forge/worktrees/pipeline-3156a8b3/app/api/watchers/route.ts +33 -0
  563. package/.forge/worktrees/pipeline-3156a8b3/app/api/workspace/[id]/agents/route.ts +35 -0
  564. package/.forge/worktrees/pipeline-3156a8b3/app/api/workspace/[id]/memory/route.ts +23 -0
  565. package/.forge/worktrees/pipeline-3156a8b3/app/api/workspace/[id]/smith/route.ts +22 -0
  566. package/.forge/worktrees/pipeline-3156a8b3/app/api/workspace/[id]/stream/route.ts +28 -0
  567. package/.forge/worktrees/pipeline-3156a8b3/app/api/workspace/route.ts +100 -0
  568. package/.forge/worktrees/pipeline-3156a8b3/app/global-error.tsx +21 -0
  569. package/.forge/worktrees/pipeline-3156a8b3/app/globals.css +52 -0
  570. package/.forge/worktrees/pipeline-3156a8b3/app/icon.ico +0 -0
  571. package/.forge/worktrees/pipeline-3156a8b3/app/icon.png +0 -0
  572. package/.forge/worktrees/pipeline-3156a8b3/app/icon.svg +106 -0
  573. package/.forge/worktrees/pipeline-3156a8b3/app/layout.tsx +17 -0
  574. package/.forge/worktrees/pipeline-3156a8b3/app/login/LoginForm.tsx +96 -0
  575. package/.forge/worktrees/pipeline-3156a8b3/app/login/page.tsx +10 -0
  576. package/.forge/worktrees/pipeline-3156a8b3/app/mobile/page.tsx +9 -0
  577. package/.forge/worktrees/pipeline-3156a8b3/app/page.tsx +21 -0
  578. package/.forge/worktrees/pipeline-3156a8b3/bin/forge-server.mjs +484 -0
  579. package/.forge/worktrees/pipeline-3156a8b3/check-forge-status.sh +71 -0
  580. package/.forge/worktrees/pipeline-3156a8b3/cli/mw.ts +579 -0
  581. package/.forge/worktrees/pipeline-3156a8b3/components/BrowserPanel.tsx +175 -0
  582. package/.forge/worktrees/pipeline-3156a8b3/components/ChatPanel.tsx +191 -0
  583. package/.forge/worktrees/pipeline-3156a8b3/components/ClaudeTerminal.tsx +267 -0
  584. package/.forge/worktrees/pipeline-3156a8b3/components/CodeViewer.tsx +787 -0
  585. package/.forge/worktrees/pipeline-3156a8b3/components/ConversationEditor.tsx +411 -0
  586. package/.forge/worktrees/pipeline-3156a8b3/components/ConversationGraphView.tsx +347 -0
  587. package/.forge/worktrees/pipeline-3156a8b3/components/ConversationTerminalView.tsx +303 -0
  588. package/.forge/worktrees/pipeline-3156a8b3/components/Dashboard.tsx +807 -0
  589. package/.forge/worktrees/pipeline-3156a8b3/components/DashboardWrapper.tsx +9 -0
  590. package/.forge/worktrees/pipeline-3156a8b3/components/DeliveryFlowEditor.tsx +491 -0
  591. package/.forge/worktrees/pipeline-3156a8b3/components/DeliveryList.tsx +230 -0
  592. package/.forge/worktrees/pipeline-3156a8b3/components/DeliveryWorkspace.tsx +589 -0
  593. package/.forge/worktrees/pipeline-3156a8b3/components/DocTerminal.tsx +187 -0
  594. package/.forge/worktrees/pipeline-3156a8b3/components/DocsViewer.tsx +574 -0
  595. package/.forge/worktrees/pipeline-3156a8b3/components/HelpDialog.tsx +169 -0
  596. package/.forge/worktrees/pipeline-3156a8b3/components/HelpTerminal.tsx +141 -0
  597. package/.forge/worktrees/pipeline-3156a8b3/components/InlinePipelineView.tsx +111 -0
  598. package/.forge/worktrees/pipeline-3156a8b3/components/LogViewer.tsx +194 -0
  599. package/.forge/worktrees/pipeline-3156a8b3/components/MarkdownContent.tsx +73 -0
  600. package/.forge/worktrees/pipeline-3156a8b3/components/MobileView.tsx +385 -0
  601. package/.forge/worktrees/pipeline-3156a8b3/components/MonitorPanel.tsx +122 -0
  602. package/.forge/worktrees/pipeline-3156a8b3/components/NewSessionModal.tsx +93 -0
  603. package/.forge/worktrees/pipeline-3156a8b3/components/NewTaskModal.tsx +492 -0
  604. package/.forge/worktrees/pipeline-3156a8b3/components/PipelineEditor.tsx +570 -0
  605. package/.forge/worktrees/pipeline-3156a8b3/components/PipelineView.tsx +1018 -0
  606. package/.forge/worktrees/pipeline-3156a8b3/components/PluginsPanel.tsx +472 -0
  607. package/.forge/worktrees/pipeline-3156a8b3/components/ProjectDetail.tsx +1618 -0
  608. package/.forge/worktrees/pipeline-3156a8b3/components/ProjectList.tsx +108 -0
  609. package/.forge/worktrees/pipeline-3156a8b3/components/ProjectManager.tsx +401 -0
  610. package/.forge/worktrees/pipeline-3156a8b3/components/SessionList.tsx +74 -0
  611. package/.forge/worktrees/pipeline-3156a8b3/components/SessionView.tsx +726 -0
  612. package/.forge/worktrees/pipeline-3156a8b3/components/SettingsModal.tsx +1647 -0
  613. package/.forge/worktrees/pipeline-3156a8b3/components/SkillsPanel.tsx +969 -0
  614. package/.forge/worktrees/pipeline-3156a8b3/components/StatusBar.tsx +99 -0
  615. package/.forge/worktrees/pipeline-3156a8b3/components/TabBar.tsx +46 -0
  616. package/.forge/worktrees/pipeline-3156a8b3/components/TaskBoard.tsx +113 -0
  617. package/.forge/worktrees/pipeline-3156a8b3/components/TaskDetail.tsx +372 -0
  618. package/.forge/worktrees/pipeline-3156a8b3/components/TerminalLauncher.tsx +398 -0
  619. package/.forge/worktrees/pipeline-3156a8b3/components/TunnelToggle.tsx +206 -0
  620. package/.forge/worktrees/pipeline-3156a8b3/components/UsagePanel.tsx +207 -0
  621. package/.forge/worktrees/pipeline-3156a8b3/components/WebTerminal.tsx +1683 -0
  622. package/.forge/worktrees/pipeline-3156a8b3/components/WorkspaceTree.tsx +221 -0
  623. package/.forge/worktrees/pipeline-3156a8b3/components/WorkspaceView.tsx +4048 -0
  624. package/.forge/worktrees/pipeline-3156a8b3/dev-test.sh +5 -0
  625. package/.forge/worktrees/pipeline-3156a8b3/docs/Forge_Memory_Layer_Design.docx +0 -0
  626. package/.forge/worktrees/pipeline-3156a8b3/docs/Forge_Strategy_Research_2026.docx +0 -0
  627. package/.forge/worktrees/pipeline-3156a8b3/docs/LOCAL-DEPLOY.md +144 -0
  628. package/.forge/worktrees/pipeline-3156a8b3/docs/roadmap-multi-agent-workflow.md +330 -0
  629. package/.forge/worktrees/pipeline-3156a8b3/forge-logo.png +0 -0
  630. package/.forge/worktrees/pipeline-3156a8b3/forge-logo.svg +106 -0
  631. package/.forge/worktrees/pipeline-3156a8b3/hooks/useSidebarResize.ts +52 -0
  632. package/.forge/worktrees/pipeline-3156a8b3/install.sh +29 -0
  633. package/.forge/worktrees/pipeline-3156a8b3/instrumentation.ts +35 -0
  634. package/.forge/worktrees/pipeline-3156a8b3/lib/agents/claude-adapter.ts +104 -0
  635. package/.forge/worktrees/pipeline-3156a8b3/lib/agents/generic-adapter.ts +64 -0
  636. package/.forge/worktrees/pipeline-3156a8b3/lib/agents/index.ts +245 -0
  637. package/.forge/worktrees/pipeline-3156a8b3/lib/agents/types.ts +70 -0
  638. package/.forge/worktrees/pipeline-3156a8b3/lib/artifacts.ts +106 -0
  639. package/.forge/worktrees/pipeline-3156a8b3/lib/auth.ts +62 -0
  640. package/.forge/worktrees/pipeline-3156a8b3/lib/builtin-plugins/docker.yaml +70 -0
  641. package/.forge/worktrees/pipeline-3156a8b3/lib/builtin-plugins/http.yaml +66 -0
  642. package/.forge/worktrees/pipeline-3156a8b3/lib/builtin-plugins/jenkins.yaml +92 -0
  643. package/.forge/worktrees/pipeline-3156a8b3/lib/builtin-plugins/llm-vision.yaml +85 -0
  644. package/.forge/worktrees/pipeline-3156a8b3/lib/builtin-plugins/playwright.yaml +111 -0
  645. package/.forge/worktrees/pipeline-3156a8b3/lib/builtin-plugins/shell-command.yaml +60 -0
  646. package/.forge/worktrees/pipeline-3156a8b3/lib/builtin-plugins/slack.yaml +48 -0
  647. package/.forge/worktrees/pipeline-3156a8b3/lib/builtin-plugins/webhook.yaml +56 -0
  648. package/.forge/worktrees/pipeline-3156a8b3/lib/claude-process.ts +351 -0
  649. package/.forge/worktrees/pipeline-3156a8b3/lib/claude-sessions.ts +266 -0
  650. package/.forge/worktrees/pipeline-3156a8b3/lib/claude-templates.ts +227 -0
  651. package/.forge/worktrees/pipeline-3156a8b3/lib/cloudflared.ts +424 -0
  652. package/.forge/worktrees/pipeline-3156a8b3/lib/crypto.ts +67 -0
  653. package/.forge/worktrees/pipeline-3156a8b3/lib/delivery.ts +787 -0
  654. package/.forge/worktrees/pipeline-3156a8b3/lib/dirs.ts +99 -0
  655. package/.forge/worktrees/pipeline-3156a8b3/lib/flows.ts +86 -0
  656. package/.forge/worktrees/pipeline-3156a8b3/lib/forge-mcp-server.ts +717 -0
  657. package/.forge/worktrees/pipeline-3156a8b3/lib/forge-skills/forge-inbox.md +38 -0
  658. package/.forge/worktrees/pipeline-3156a8b3/lib/forge-skills/forge-send.md +47 -0
  659. package/.forge/worktrees/pipeline-3156a8b3/lib/forge-skills/forge-status.md +32 -0
  660. package/.forge/worktrees/pipeline-3156a8b3/lib/forge-skills/forge-workspace-sync.md +37 -0
  661. package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/00-overview.md +40 -0
  662. package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/01-settings.md +194 -0
  663. package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/02-telegram.md +41 -0
  664. package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/03-tunnel.md +31 -0
  665. package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/04-tasks.md +52 -0
  666. package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/05-pipelines.md +460 -0
  667. package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/06-skills.md +43 -0
  668. package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/07-projects.md +73 -0
  669. package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/08-rules.md +53 -0
  670. package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/09-issue-autofix.md +55 -0
  671. package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/10-troubleshooting.md +89 -0
  672. package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/11-workspace.md +810 -0
  673. package/.forge/worktrees/pipeline-3156a8b3/lib/help-docs/CLAUDE.md +62 -0
  674. package/.forge/worktrees/pipeline-3156a8b3/lib/init.ts +266 -0
  675. package/.forge/worktrees/pipeline-3156a8b3/lib/issue-scanner.ts +298 -0
  676. package/.forge/worktrees/pipeline-3156a8b3/lib/logger.ts +79 -0
  677. package/.forge/worktrees/pipeline-3156a8b3/lib/notifications.ts +75 -0
  678. package/.forge/worktrees/pipeline-3156a8b3/lib/notify.ts +108 -0
  679. package/.forge/worktrees/pipeline-3156a8b3/lib/password.ts +97 -0
  680. package/.forge/worktrees/pipeline-3156a8b3/lib/pipeline-scheduler.ts +373 -0
  681. package/.forge/worktrees/pipeline-3156a8b3/lib/pipeline.ts +1441 -0
  682. package/.forge/worktrees/pipeline-3156a8b3/lib/plugins/executor.ts +347 -0
  683. package/.forge/worktrees/pipeline-3156a8b3/lib/plugins/registry.ts +228 -0
  684. package/.forge/worktrees/pipeline-3156a8b3/lib/plugins/types.ts +103 -0
  685. package/.forge/worktrees/pipeline-3156a8b3/lib/project-sessions.ts +53 -0
  686. package/.forge/worktrees/pipeline-3156a8b3/lib/projects.ts +86 -0
  687. package/.forge/worktrees/pipeline-3156a8b3/lib/session-manager.ts +156 -0
  688. package/.forge/worktrees/pipeline-3156a8b3/lib/session-utils.ts +53 -0
  689. package/.forge/worktrees/pipeline-3156a8b3/lib/session-watcher.ts +345 -0
  690. package/.forge/worktrees/pipeline-3156a8b3/lib/settings.ts +195 -0
  691. package/.forge/worktrees/pipeline-3156a8b3/lib/skills.ts +458 -0
  692. package/.forge/worktrees/pipeline-3156a8b3/lib/task-manager.ts +949 -0
  693. package/.forge/worktrees/pipeline-3156a8b3/lib/telegram-bot.ts +1477 -0
  694. package/.forge/worktrees/pipeline-3156a8b3/lib/telegram-standalone.ts +83 -0
  695. package/.forge/worktrees/pipeline-3156a8b3/lib/terminal-server.ts +70 -0
  696. package/.forge/worktrees/pipeline-3156a8b3/lib/terminal-standalone.ts +421 -0
  697. package/.forge/worktrees/pipeline-3156a8b3/lib/usage-scanner.ts +249 -0
  698. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/__tests__/state-machine.test.ts +388 -0
  699. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/__tests__/workspace.test.ts +311 -0
  700. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/agent-bus.ts +416 -0
  701. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/agent-worker.ts +655 -0
  702. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/backends/api-backend.ts +262 -0
  703. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/backends/cli-backend.ts +491 -0
  704. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/index.ts +82 -0
  705. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/manager.ts +136 -0
  706. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/orchestrator.ts +3400 -0
  707. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/persistence.ts +309 -0
  708. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/presets.ts +649 -0
  709. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/requests.ts +287 -0
  710. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/session-monitor.ts +240 -0
  711. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/skill-installer.ts +275 -0
  712. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/smith-memory.ts +498 -0
  713. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/types.ts +241 -0
  714. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace/watch-manager.ts +560 -0
  715. package/.forge/worktrees/pipeline-3156a8b3/lib/workspace-standalone.ts +911 -0
  716. package/.forge/worktrees/pipeline-3156a8b3/middleware.ts +51 -0
  717. package/.forge/worktrees/pipeline-3156a8b3/next.config.ts +26 -0
  718. package/.forge/worktrees/pipeline-3156a8b3/package.json +74 -0
  719. package/.forge/worktrees/pipeline-3156a8b3/pnpm-lock.yaml +3719 -0
  720. package/.forge/worktrees/pipeline-3156a8b3/pnpm-workspace.yaml +1 -0
  721. package/.forge/worktrees/pipeline-3156a8b3/postcss.config.mjs +7 -0
  722. package/.forge/worktrees/pipeline-3156a8b3/publish.sh +133 -0
  723. package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/README.md +66 -0
  724. package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/results/.gitignore +2 -0
  725. package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/run.ts +635 -0
  726. package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/tasks/01-text-utils/task.md +26 -0
  727. package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
  728. package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/tasks/02-pagination/setup.sh +19 -0
  729. package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/tasks/02-pagination/task.md +48 -0
  730. package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/tasks/02-pagination/validator.sh +69 -0
  731. package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
  732. package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/tasks/03-bug-fix/task.md +30 -0
  733. package/.forge/worktrees/pipeline-3156a8b3/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
  734. package/.forge/worktrees/pipeline-3156a8b3/scripts/verify-usage.ts +178 -0
  735. package/.forge/worktrees/pipeline-3156a8b3/src/config/index.ts +129 -0
  736. package/.forge/worktrees/pipeline-3156a8b3/src/core/db/database.ts +259 -0
  737. package/.forge/worktrees/pipeline-3156a8b3/src/core/memory/strategy.ts +32 -0
  738. package/.forge/worktrees/pipeline-3156a8b3/src/core/providers/chat.ts +65 -0
  739. package/.forge/worktrees/pipeline-3156a8b3/src/core/providers/registry.ts +60 -0
  740. package/.forge/worktrees/pipeline-3156a8b3/src/core/session/manager.ts +190 -0
  741. package/.forge/worktrees/pipeline-3156a8b3/src/types/index.ts +129 -0
  742. package/.forge/worktrees/pipeline-3156a8b3/start.sh +31 -0
  743. package/.forge/worktrees/pipeline-3156a8b3/templates/smith-lead.json +45 -0
  744. package/.forge/worktrees/pipeline-3156a8b3/tsconfig.json +42 -0
  745. package/.forge/worktrees/pipeline-316c6574/CLAUDE.md +86 -0
  746. package/.forge/worktrees/pipeline-316c6574/README.md +136 -0
  747. package/.forge/worktrees/pipeline-316c6574/RELEASE_NOTES.md +11 -0
  748. package/.forge/worktrees/pipeline-316c6574/app/api/agents/route.ts +17 -0
  749. package/.forge/worktrees/pipeline-316c6574/app/api/auth/[...nextauth]/route.ts +3 -0
  750. package/.forge/worktrees/pipeline-316c6574/app/api/auth/verify/route.ts +46 -0
  751. package/.forge/worktrees/pipeline-316c6574/app/api/claude/[id]/route.ts +31 -0
  752. package/.forge/worktrees/pipeline-316c6574/app/api/claude/[id]/stream/route.ts +63 -0
  753. package/.forge/worktrees/pipeline-316c6574/app/api/claude/route.ts +28 -0
  754. package/.forge/worktrees/pipeline-316c6574/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
  755. package/.forge/worktrees/pipeline-316c6574/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
  756. package/.forge/worktrees/pipeline-316c6574/app/api/claude-sessions/[projectName]/route.ts +37 -0
  757. package/.forge/worktrees/pipeline-316c6574/app/api/claude-sessions/sync/route.ts +17 -0
  758. package/.forge/worktrees/pipeline-316c6574/app/api/claude-templates/route.ts +145 -0
  759. package/.forge/worktrees/pipeline-316c6574/app/api/code/route.ts +299 -0
  760. package/.forge/worktrees/pipeline-316c6574/app/api/delivery/[id]/route.ts +62 -0
  761. package/.forge/worktrees/pipeline-316c6574/app/api/delivery/route.ts +40 -0
  762. package/.forge/worktrees/pipeline-316c6574/app/api/detect-cli/route.ts +46 -0
  763. package/.forge/worktrees/pipeline-316c6574/app/api/docs/route.ts +176 -0
  764. package/.forge/worktrees/pipeline-316c6574/app/api/docs/sessions/route.ts +54 -0
  765. package/.forge/worktrees/pipeline-316c6574/app/api/favorites/route.ts +26 -0
  766. package/.forge/worktrees/pipeline-316c6574/app/api/flows/route.ts +6 -0
  767. package/.forge/worktrees/pipeline-316c6574/app/api/flows/run/route.ts +19 -0
  768. package/.forge/worktrees/pipeline-316c6574/app/api/git/route.ts +149 -0
  769. package/.forge/worktrees/pipeline-316c6574/app/api/help/route.ts +84 -0
  770. package/.forge/worktrees/pipeline-316c6574/app/api/issue-scanner/route.ts +116 -0
  771. package/.forge/worktrees/pipeline-316c6574/app/api/logs/route.ts +100 -0
  772. package/.forge/worktrees/pipeline-316c6574/app/api/mobile-chat/route.ts +115 -0
  773. package/.forge/worktrees/pipeline-316c6574/app/api/monitor/route.ts +74 -0
  774. package/.forge/worktrees/pipeline-316c6574/app/api/notifications/route.ts +42 -0
  775. package/.forge/worktrees/pipeline-316c6574/app/api/notify/test/route.ts +33 -0
  776. package/.forge/worktrees/pipeline-316c6574/app/api/online/route.ts +40 -0
  777. package/.forge/worktrees/pipeline-316c6574/app/api/pipelines/[id]/route.ts +41 -0
  778. package/.forge/worktrees/pipeline-316c6574/app/api/pipelines/route.ts +90 -0
  779. package/.forge/worktrees/pipeline-316c6574/app/api/plugins/route.ts +75 -0
  780. package/.forge/worktrees/pipeline-316c6574/app/api/preview/[...path]/route.ts +64 -0
  781. package/.forge/worktrees/pipeline-316c6574/app/api/preview/route.ts +156 -0
  782. package/.forge/worktrees/pipeline-316c6574/app/api/project-pipelines/route.ts +91 -0
  783. package/.forge/worktrees/pipeline-316c6574/app/api/project-sessions/route.ts +61 -0
  784. package/.forge/worktrees/pipeline-316c6574/app/api/projects/route.ts +26 -0
  785. package/.forge/worktrees/pipeline-316c6574/app/api/sessions/[id]/chat/route.ts +64 -0
  786. package/.forge/worktrees/pipeline-316c6574/app/api/sessions/[id]/messages/route.ts +9 -0
  787. package/.forge/worktrees/pipeline-316c6574/app/api/sessions/[id]/route.ts +17 -0
  788. package/.forge/worktrees/pipeline-316c6574/app/api/sessions/route.ts +20 -0
  789. package/.forge/worktrees/pipeline-316c6574/app/api/settings/route.ts +64 -0
  790. package/.forge/worktrees/pipeline-316c6574/app/api/skills/local/route.ts +228 -0
  791. package/.forge/worktrees/pipeline-316c6574/app/api/skills/route.ts +182 -0
  792. package/.forge/worktrees/pipeline-316c6574/app/api/smith-templates/route.ts +81 -0
  793. package/.forge/worktrees/pipeline-316c6574/app/api/status/route.ts +12 -0
  794. package/.forge/worktrees/pipeline-316c6574/app/api/tabs/route.ts +25 -0
  795. package/.forge/worktrees/pipeline-316c6574/app/api/tasks/[id]/route.ts +51 -0
  796. package/.forge/worktrees/pipeline-316c6574/app/api/tasks/[id]/stream/route.ts +77 -0
  797. package/.forge/worktrees/pipeline-316c6574/app/api/tasks/link/route.ts +37 -0
  798. package/.forge/worktrees/pipeline-316c6574/app/api/tasks/route.ts +44 -0
  799. package/.forge/worktrees/pipeline-316c6574/app/api/tasks/session/route.ts +14 -0
  800. package/.forge/worktrees/pipeline-316c6574/app/api/telegram/route.ts +23 -0
  801. package/.forge/worktrees/pipeline-316c6574/app/api/templates/route.ts +6 -0
  802. package/.forge/worktrees/pipeline-316c6574/app/api/terminal-bell/route.ts +35 -0
  803. package/.forge/worktrees/pipeline-316c6574/app/api/terminal-cwd/route.ts +19 -0
  804. package/.forge/worktrees/pipeline-316c6574/app/api/terminal-state/route.ts +15 -0
  805. package/.forge/worktrees/pipeline-316c6574/app/api/tunnel/route.ts +26 -0
  806. package/.forge/worktrees/pipeline-316c6574/app/api/upgrade/route.ts +43 -0
  807. package/.forge/worktrees/pipeline-316c6574/app/api/usage/route.ts +20 -0
  808. package/.forge/worktrees/pipeline-316c6574/app/api/version/route.ts +78 -0
  809. package/.forge/worktrees/pipeline-316c6574/app/api/watchers/route.ts +33 -0
  810. package/.forge/worktrees/pipeline-316c6574/app/api/workspace/[id]/agents/route.ts +35 -0
  811. package/.forge/worktrees/pipeline-316c6574/app/api/workspace/[id]/memory/route.ts +23 -0
  812. package/.forge/worktrees/pipeline-316c6574/app/api/workspace/[id]/smith/route.ts +22 -0
  813. package/.forge/worktrees/pipeline-316c6574/app/api/workspace/[id]/stream/route.ts +28 -0
  814. package/.forge/worktrees/pipeline-316c6574/app/api/workspace/route.ts +100 -0
  815. package/.forge/worktrees/pipeline-316c6574/app/global-error.tsx +21 -0
  816. package/.forge/worktrees/pipeline-316c6574/app/globals.css +52 -0
  817. package/.forge/worktrees/pipeline-316c6574/app/icon.ico +0 -0
  818. package/.forge/worktrees/pipeline-316c6574/app/icon.png +0 -0
  819. package/.forge/worktrees/pipeline-316c6574/app/icon.svg +106 -0
  820. package/.forge/worktrees/pipeline-316c6574/app/layout.tsx +17 -0
  821. package/.forge/worktrees/pipeline-316c6574/app/login/LoginForm.tsx +96 -0
  822. package/.forge/worktrees/pipeline-316c6574/app/login/page.tsx +10 -0
  823. package/.forge/worktrees/pipeline-316c6574/app/mobile/page.tsx +9 -0
  824. package/.forge/worktrees/pipeline-316c6574/app/page.tsx +21 -0
  825. package/.forge/worktrees/pipeline-316c6574/bin/forge-server.mjs +484 -0
  826. package/.forge/worktrees/pipeline-316c6574/check-forge-status.sh +71 -0
  827. package/.forge/worktrees/pipeline-316c6574/cli/mw.ts +579 -0
  828. package/.forge/worktrees/pipeline-316c6574/components/BrowserPanel.tsx +175 -0
  829. package/.forge/worktrees/pipeline-316c6574/components/ChatPanel.tsx +191 -0
  830. package/.forge/worktrees/pipeline-316c6574/components/ClaudeTerminal.tsx +267 -0
  831. package/.forge/worktrees/pipeline-316c6574/components/CodeViewer.tsx +787 -0
  832. package/.forge/worktrees/pipeline-316c6574/components/ConversationEditor.tsx +411 -0
  833. package/.forge/worktrees/pipeline-316c6574/components/ConversationGraphView.tsx +347 -0
  834. package/.forge/worktrees/pipeline-316c6574/components/ConversationTerminalView.tsx +303 -0
  835. package/.forge/worktrees/pipeline-316c6574/components/Dashboard.tsx +807 -0
  836. package/.forge/worktrees/pipeline-316c6574/components/DashboardWrapper.tsx +9 -0
  837. package/.forge/worktrees/pipeline-316c6574/components/DeliveryFlowEditor.tsx +491 -0
  838. package/.forge/worktrees/pipeline-316c6574/components/DeliveryList.tsx +230 -0
  839. package/.forge/worktrees/pipeline-316c6574/components/DeliveryWorkspace.tsx +589 -0
  840. package/.forge/worktrees/pipeline-316c6574/components/DocTerminal.tsx +187 -0
  841. package/.forge/worktrees/pipeline-316c6574/components/DocsViewer.tsx +574 -0
  842. package/.forge/worktrees/pipeline-316c6574/components/HelpDialog.tsx +169 -0
  843. package/.forge/worktrees/pipeline-316c6574/components/HelpTerminal.tsx +141 -0
  844. package/.forge/worktrees/pipeline-316c6574/components/InlinePipelineView.tsx +111 -0
  845. package/.forge/worktrees/pipeline-316c6574/components/LogViewer.tsx +194 -0
  846. package/.forge/worktrees/pipeline-316c6574/components/MarkdownContent.tsx +73 -0
  847. package/.forge/worktrees/pipeline-316c6574/components/MobileView.tsx +385 -0
  848. package/.forge/worktrees/pipeline-316c6574/components/MonitorPanel.tsx +122 -0
  849. package/.forge/worktrees/pipeline-316c6574/components/NewSessionModal.tsx +93 -0
  850. package/.forge/worktrees/pipeline-316c6574/components/NewTaskModal.tsx +492 -0
  851. package/.forge/worktrees/pipeline-316c6574/components/PipelineEditor.tsx +570 -0
  852. package/.forge/worktrees/pipeline-316c6574/components/PipelineView.tsx +1018 -0
  853. package/.forge/worktrees/pipeline-316c6574/components/PluginsPanel.tsx +472 -0
  854. package/.forge/worktrees/pipeline-316c6574/components/ProjectDetail.tsx +1618 -0
  855. package/.forge/worktrees/pipeline-316c6574/components/ProjectList.tsx +108 -0
  856. package/.forge/worktrees/pipeline-316c6574/components/ProjectManager.tsx +401 -0
  857. package/.forge/worktrees/pipeline-316c6574/components/SessionList.tsx +74 -0
  858. package/.forge/worktrees/pipeline-316c6574/components/SessionView.tsx +726 -0
  859. package/.forge/worktrees/pipeline-316c6574/components/SettingsModal.tsx +1647 -0
  860. package/.forge/worktrees/pipeline-316c6574/components/SkillsPanel.tsx +969 -0
  861. package/.forge/worktrees/pipeline-316c6574/components/StatusBar.tsx +99 -0
  862. package/.forge/worktrees/pipeline-316c6574/components/TabBar.tsx +46 -0
  863. package/.forge/worktrees/pipeline-316c6574/components/TaskBoard.tsx +113 -0
  864. package/.forge/worktrees/pipeline-316c6574/components/TaskDetail.tsx +372 -0
  865. package/.forge/worktrees/pipeline-316c6574/components/TerminalLauncher.tsx +398 -0
  866. package/.forge/worktrees/pipeline-316c6574/components/TunnelToggle.tsx +206 -0
  867. package/.forge/worktrees/pipeline-316c6574/components/UsagePanel.tsx +207 -0
  868. package/.forge/worktrees/pipeline-316c6574/components/WebTerminal.tsx +1683 -0
  869. package/.forge/worktrees/pipeline-316c6574/components/WorkspaceTree.tsx +221 -0
  870. package/.forge/worktrees/pipeline-316c6574/components/WorkspaceView.tsx +4048 -0
  871. package/.forge/worktrees/pipeline-316c6574/dev-test.sh +5 -0
  872. package/.forge/worktrees/pipeline-316c6574/docs/Forge_Memory_Layer_Design.docx +0 -0
  873. package/.forge/worktrees/pipeline-316c6574/docs/Forge_Strategy_Research_2026.docx +0 -0
  874. package/.forge/worktrees/pipeline-316c6574/docs/LOCAL-DEPLOY.md +144 -0
  875. package/.forge/worktrees/pipeline-316c6574/docs/roadmap-multi-agent-workflow.md +330 -0
  876. package/.forge/worktrees/pipeline-316c6574/forge-logo.png +0 -0
  877. package/.forge/worktrees/pipeline-316c6574/forge-logo.svg +106 -0
  878. package/.forge/worktrees/pipeline-316c6574/hooks/useSidebarResize.ts +52 -0
  879. package/.forge/worktrees/pipeline-316c6574/install.sh +29 -0
  880. package/.forge/worktrees/pipeline-316c6574/instrumentation.ts +35 -0
  881. package/.forge/worktrees/pipeline-316c6574/lib/agents/claude-adapter.ts +104 -0
  882. package/.forge/worktrees/pipeline-316c6574/lib/agents/generic-adapter.ts +64 -0
  883. package/.forge/worktrees/pipeline-316c6574/lib/agents/index.ts +245 -0
  884. package/.forge/worktrees/pipeline-316c6574/lib/agents/types.ts +70 -0
  885. package/.forge/worktrees/pipeline-316c6574/lib/artifacts.ts +106 -0
  886. package/.forge/worktrees/pipeline-316c6574/lib/auth.ts +62 -0
  887. package/.forge/worktrees/pipeline-316c6574/lib/builtin-plugins/docker.yaml +70 -0
  888. package/.forge/worktrees/pipeline-316c6574/lib/builtin-plugins/http.yaml +66 -0
  889. package/.forge/worktrees/pipeline-316c6574/lib/builtin-plugins/jenkins.yaml +92 -0
  890. package/.forge/worktrees/pipeline-316c6574/lib/builtin-plugins/llm-vision.yaml +85 -0
  891. package/.forge/worktrees/pipeline-316c6574/lib/builtin-plugins/playwright.yaml +111 -0
  892. package/.forge/worktrees/pipeline-316c6574/lib/builtin-plugins/shell-command.yaml +60 -0
  893. package/.forge/worktrees/pipeline-316c6574/lib/builtin-plugins/slack.yaml +48 -0
  894. package/.forge/worktrees/pipeline-316c6574/lib/builtin-plugins/webhook.yaml +56 -0
  895. package/.forge/worktrees/pipeline-316c6574/lib/claude-process.ts +361 -0
  896. package/.forge/worktrees/pipeline-316c6574/lib/claude-sessions.ts +266 -0
  897. package/.forge/worktrees/pipeline-316c6574/lib/claude-templates.ts +227 -0
  898. package/.forge/worktrees/pipeline-316c6574/lib/cloudflared.ts +424 -0
  899. package/.forge/worktrees/pipeline-316c6574/lib/crypto.ts +67 -0
  900. package/.forge/worktrees/pipeline-316c6574/lib/delivery.ts +787 -0
  901. package/.forge/worktrees/pipeline-316c6574/lib/dirs.ts +99 -0
  902. package/.forge/worktrees/pipeline-316c6574/lib/flows.ts +86 -0
  903. package/.forge/worktrees/pipeline-316c6574/lib/forge-mcp-server.ts +717 -0
  904. package/.forge/worktrees/pipeline-316c6574/lib/forge-skills/forge-inbox.md +38 -0
  905. package/.forge/worktrees/pipeline-316c6574/lib/forge-skills/forge-send.md +47 -0
  906. package/.forge/worktrees/pipeline-316c6574/lib/forge-skills/forge-status.md +32 -0
  907. package/.forge/worktrees/pipeline-316c6574/lib/forge-skills/forge-workspace-sync.md +37 -0
  908. package/.forge/worktrees/pipeline-316c6574/lib/help-docs/00-overview.md +40 -0
  909. package/.forge/worktrees/pipeline-316c6574/lib/help-docs/01-settings.md +194 -0
  910. package/.forge/worktrees/pipeline-316c6574/lib/help-docs/02-telegram.md +41 -0
  911. package/.forge/worktrees/pipeline-316c6574/lib/help-docs/03-tunnel.md +31 -0
  912. package/.forge/worktrees/pipeline-316c6574/lib/help-docs/04-tasks.md +52 -0
  913. package/.forge/worktrees/pipeline-316c6574/lib/help-docs/05-pipelines.md +460 -0
  914. package/.forge/worktrees/pipeline-316c6574/lib/help-docs/06-skills.md +43 -0
  915. package/.forge/worktrees/pipeline-316c6574/lib/help-docs/07-projects.md +73 -0
  916. package/.forge/worktrees/pipeline-316c6574/lib/help-docs/08-rules.md +53 -0
  917. package/.forge/worktrees/pipeline-316c6574/lib/help-docs/09-issue-autofix.md +55 -0
  918. package/.forge/worktrees/pipeline-316c6574/lib/help-docs/10-troubleshooting.md +89 -0
  919. package/.forge/worktrees/pipeline-316c6574/lib/help-docs/11-workspace.md +810 -0
  920. package/.forge/worktrees/pipeline-316c6574/lib/help-docs/CLAUDE.md +62 -0
  921. package/.forge/worktrees/pipeline-316c6574/lib/init.ts +266 -0
  922. package/.forge/worktrees/pipeline-316c6574/lib/issue-scanner.ts +298 -0
  923. package/.forge/worktrees/pipeline-316c6574/lib/logger.ts +79 -0
  924. package/.forge/worktrees/pipeline-316c6574/lib/notifications.ts +75 -0
  925. package/.forge/worktrees/pipeline-316c6574/lib/notify.ts +108 -0
  926. package/.forge/worktrees/pipeline-316c6574/lib/password.ts +97 -0
  927. package/.forge/worktrees/pipeline-316c6574/lib/pipeline-scheduler.ts +373 -0
  928. package/.forge/worktrees/pipeline-316c6574/lib/pipeline.ts +1441 -0
  929. package/.forge/worktrees/pipeline-316c6574/lib/plugins/executor.ts +347 -0
  930. package/.forge/worktrees/pipeline-316c6574/lib/plugins/registry.ts +228 -0
  931. package/.forge/worktrees/pipeline-316c6574/lib/plugins/types.ts +103 -0
  932. package/.forge/worktrees/pipeline-316c6574/lib/project-sessions.ts +53 -0
  933. package/.forge/worktrees/pipeline-316c6574/lib/projects.ts +86 -0
  934. package/.forge/worktrees/pipeline-316c6574/lib/session-manager.ts +156 -0
  935. package/.forge/worktrees/pipeline-316c6574/lib/session-utils.ts +53 -0
  936. package/.forge/worktrees/pipeline-316c6574/lib/session-watcher.ts +345 -0
  937. package/.forge/worktrees/pipeline-316c6574/lib/settings.ts +195 -0
  938. package/.forge/worktrees/pipeline-316c6574/lib/skills.ts +458 -0
  939. package/.forge/worktrees/pipeline-316c6574/lib/task-manager.ts +949 -0
  940. package/.forge/worktrees/pipeline-316c6574/lib/telegram-bot.ts +1477 -0
  941. package/.forge/worktrees/pipeline-316c6574/lib/telegram-standalone.ts +83 -0
  942. package/.forge/worktrees/pipeline-316c6574/lib/terminal-server.ts +70 -0
  943. package/.forge/worktrees/pipeline-316c6574/lib/terminal-standalone.ts +421 -0
  944. package/.forge/worktrees/pipeline-316c6574/lib/usage-scanner.ts +249 -0
  945. package/.forge/worktrees/pipeline-316c6574/lib/workspace/__tests__/state-machine.test.ts +388 -0
  946. package/.forge/worktrees/pipeline-316c6574/lib/workspace/__tests__/workspace.test.ts +311 -0
  947. package/.forge/worktrees/pipeline-316c6574/lib/workspace/agent-bus.ts +416 -0
  948. package/.forge/worktrees/pipeline-316c6574/lib/workspace/agent-worker.ts +655 -0
  949. package/.forge/worktrees/pipeline-316c6574/lib/workspace/backends/api-backend.ts +262 -0
  950. package/.forge/worktrees/pipeline-316c6574/lib/workspace/backends/cli-backend.ts +491 -0
  951. package/.forge/worktrees/pipeline-316c6574/lib/workspace/index.ts +82 -0
  952. package/.forge/worktrees/pipeline-316c6574/lib/workspace/manager.ts +136 -0
  953. package/.forge/worktrees/pipeline-316c6574/lib/workspace/orchestrator.ts +3400 -0
  954. package/.forge/worktrees/pipeline-316c6574/lib/workspace/persistence.ts +309 -0
  955. package/.forge/worktrees/pipeline-316c6574/lib/workspace/presets.ts +649 -0
  956. package/.forge/worktrees/pipeline-316c6574/lib/workspace/requests.ts +287 -0
  957. package/.forge/worktrees/pipeline-316c6574/lib/workspace/session-monitor.ts +240 -0
  958. package/.forge/worktrees/pipeline-316c6574/lib/workspace/skill-installer.ts +275 -0
  959. package/.forge/worktrees/pipeline-316c6574/lib/workspace/smith-memory.ts +498 -0
  960. package/.forge/worktrees/pipeline-316c6574/lib/workspace/types.ts +241 -0
  961. package/.forge/worktrees/pipeline-316c6574/lib/workspace/watch-manager.ts +560 -0
  962. package/.forge/worktrees/pipeline-316c6574/lib/workspace-standalone.ts +911 -0
  963. package/.forge/worktrees/pipeline-316c6574/middleware.ts +51 -0
  964. package/.forge/worktrees/pipeline-316c6574/next.config.ts +26 -0
  965. package/.forge/worktrees/pipeline-316c6574/package.json +74 -0
  966. package/.forge/worktrees/pipeline-316c6574/pnpm-lock.yaml +3719 -0
  967. package/.forge/worktrees/pipeline-316c6574/pnpm-workspace.yaml +1 -0
  968. package/.forge/worktrees/pipeline-316c6574/postcss.config.mjs +7 -0
  969. package/.forge/worktrees/pipeline-316c6574/publish.sh +133 -0
  970. package/.forge/worktrees/pipeline-316c6574/scripts/bench/README.md +66 -0
  971. package/.forge/worktrees/pipeline-316c6574/scripts/bench/results/.gitignore +2 -0
  972. package/.forge/worktrees/pipeline-316c6574/scripts/bench/run.ts +635 -0
  973. package/.forge/worktrees/pipeline-316c6574/scripts/bench/tasks/01-text-utils/task.md +26 -0
  974. package/.forge/worktrees/pipeline-316c6574/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
  975. package/.forge/worktrees/pipeline-316c6574/scripts/bench/tasks/02-pagination/setup.sh +19 -0
  976. package/.forge/worktrees/pipeline-316c6574/scripts/bench/tasks/02-pagination/task.md +48 -0
  977. package/.forge/worktrees/pipeline-316c6574/scripts/bench/tasks/02-pagination/validator.sh +69 -0
  978. package/.forge/worktrees/pipeline-316c6574/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
  979. package/.forge/worktrees/pipeline-316c6574/scripts/bench/tasks/03-bug-fix/task.md +30 -0
  980. package/.forge/worktrees/pipeline-316c6574/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
  981. package/.forge/worktrees/pipeline-316c6574/scripts/verify-usage.ts +178 -0
  982. package/.forge/worktrees/pipeline-316c6574/src/config/index.ts +129 -0
  983. package/.forge/worktrees/pipeline-316c6574/src/core/db/database.ts +259 -0
  984. package/.forge/worktrees/pipeline-316c6574/src/core/memory/strategy.ts +32 -0
  985. package/.forge/worktrees/pipeline-316c6574/src/core/providers/chat.ts +65 -0
  986. package/.forge/worktrees/pipeline-316c6574/src/core/providers/registry.ts +60 -0
  987. package/.forge/worktrees/pipeline-316c6574/src/core/session/manager.ts +190 -0
  988. package/.forge/worktrees/pipeline-316c6574/src/types/index.ts +129 -0
  989. package/.forge/worktrees/pipeline-316c6574/start.sh +31 -0
  990. package/.forge/worktrees/pipeline-316c6574/templates/smith-lead.json +45 -0
  991. package/.forge/worktrees/pipeline-316c6574/tsconfig.json +42 -0
  992. package/.forge/worktrees/pipeline-44a94121/CLAUDE.md +86 -0
  993. package/.forge/worktrees/pipeline-44a94121/README.md +136 -0
  994. package/.forge/worktrees/pipeline-44a94121/RELEASE_NOTES.md +11 -0
  995. package/.forge/worktrees/pipeline-44a94121/app/api/agents/route.ts +17 -0
  996. package/.forge/worktrees/pipeline-44a94121/app/api/auth/[...nextauth]/route.ts +3 -0
  997. package/.forge/worktrees/pipeline-44a94121/app/api/auth/verify/route.ts +46 -0
  998. package/.forge/worktrees/pipeline-44a94121/app/api/claude/[id]/route.ts +31 -0
  999. package/.forge/worktrees/pipeline-44a94121/app/api/claude/[id]/stream/route.ts +63 -0
  1000. package/.forge/worktrees/pipeline-44a94121/app/api/claude/route.ts +28 -0
  1001. package/.forge/worktrees/pipeline-44a94121/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
  1002. package/.forge/worktrees/pipeline-44a94121/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
  1003. package/.forge/worktrees/pipeline-44a94121/app/api/claude-sessions/[projectName]/route.ts +37 -0
  1004. package/.forge/worktrees/pipeline-44a94121/app/api/claude-sessions/sync/route.ts +17 -0
  1005. package/.forge/worktrees/pipeline-44a94121/app/api/claude-templates/route.ts +145 -0
  1006. package/.forge/worktrees/pipeline-44a94121/app/api/code/route.ts +299 -0
  1007. package/.forge/worktrees/pipeline-44a94121/app/api/delivery/[id]/route.ts +62 -0
  1008. package/.forge/worktrees/pipeline-44a94121/app/api/delivery/route.ts +40 -0
  1009. package/.forge/worktrees/pipeline-44a94121/app/api/detect-cli/route.ts +46 -0
  1010. package/.forge/worktrees/pipeline-44a94121/app/api/docs/route.ts +176 -0
  1011. package/.forge/worktrees/pipeline-44a94121/app/api/docs/sessions/route.ts +54 -0
  1012. package/.forge/worktrees/pipeline-44a94121/app/api/favorites/route.ts +26 -0
  1013. package/.forge/worktrees/pipeline-44a94121/app/api/flows/route.ts +6 -0
  1014. package/.forge/worktrees/pipeline-44a94121/app/api/flows/run/route.ts +19 -0
  1015. package/.forge/worktrees/pipeline-44a94121/app/api/git/route.ts +149 -0
  1016. package/.forge/worktrees/pipeline-44a94121/app/api/help/route.ts +84 -0
  1017. package/.forge/worktrees/pipeline-44a94121/app/api/issue-scanner/route.ts +116 -0
  1018. package/.forge/worktrees/pipeline-44a94121/app/api/logs/route.ts +100 -0
  1019. package/.forge/worktrees/pipeline-44a94121/app/api/mobile-chat/route.ts +115 -0
  1020. package/.forge/worktrees/pipeline-44a94121/app/api/monitor/route.ts +74 -0
  1021. package/.forge/worktrees/pipeline-44a94121/app/api/notifications/route.ts +42 -0
  1022. package/.forge/worktrees/pipeline-44a94121/app/api/notify/test/route.ts +33 -0
  1023. package/.forge/worktrees/pipeline-44a94121/app/api/online/route.ts +40 -0
  1024. package/.forge/worktrees/pipeline-44a94121/app/api/pipelines/[id]/route.ts +41 -0
  1025. package/.forge/worktrees/pipeline-44a94121/app/api/pipelines/route.ts +90 -0
  1026. package/.forge/worktrees/pipeline-44a94121/app/api/plugins/route.ts +75 -0
  1027. package/.forge/worktrees/pipeline-44a94121/app/api/preview/[...path]/route.ts +64 -0
  1028. package/.forge/worktrees/pipeline-44a94121/app/api/preview/route.ts +156 -0
  1029. package/.forge/worktrees/pipeline-44a94121/app/api/project-pipelines/route.ts +91 -0
  1030. package/.forge/worktrees/pipeline-44a94121/app/api/project-sessions/route.ts +61 -0
  1031. package/.forge/worktrees/pipeline-44a94121/app/api/projects/route.ts +26 -0
  1032. package/.forge/worktrees/pipeline-44a94121/app/api/sessions/[id]/chat/route.ts +64 -0
  1033. package/.forge/worktrees/pipeline-44a94121/app/api/sessions/[id]/messages/route.ts +9 -0
  1034. package/.forge/worktrees/pipeline-44a94121/app/api/sessions/[id]/route.ts +17 -0
  1035. package/.forge/worktrees/pipeline-44a94121/app/api/sessions/route.ts +20 -0
  1036. package/.forge/worktrees/pipeline-44a94121/app/api/settings/route.ts +64 -0
  1037. package/.forge/worktrees/pipeline-44a94121/app/api/skills/local/route.ts +228 -0
  1038. package/.forge/worktrees/pipeline-44a94121/app/api/skills/route.ts +182 -0
  1039. package/.forge/worktrees/pipeline-44a94121/app/api/smith-templates/route.ts +81 -0
  1040. package/.forge/worktrees/pipeline-44a94121/app/api/status/route.ts +12 -0
  1041. package/.forge/worktrees/pipeline-44a94121/app/api/tabs/route.ts +25 -0
  1042. package/.forge/worktrees/pipeline-44a94121/app/api/tasks/[id]/route.ts +51 -0
  1043. package/.forge/worktrees/pipeline-44a94121/app/api/tasks/[id]/stream/route.ts +77 -0
  1044. package/.forge/worktrees/pipeline-44a94121/app/api/tasks/link/route.ts +37 -0
  1045. package/.forge/worktrees/pipeline-44a94121/app/api/tasks/route.ts +44 -0
  1046. package/.forge/worktrees/pipeline-44a94121/app/api/tasks/session/route.ts +14 -0
  1047. package/.forge/worktrees/pipeline-44a94121/app/api/telegram/route.ts +23 -0
  1048. package/.forge/worktrees/pipeline-44a94121/app/api/templates/route.ts +6 -0
  1049. package/.forge/worktrees/pipeline-44a94121/app/api/terminal-bell/route.ts +35 -0
  1050. package/.forge/worktrees/pipeline-44a94121/app/api/terminal-cwd/route.ts +19 -0
  1051. package/.forge/worktrees/pipeline-44a94121/app/api/terminal-state/route.ts +15 -0
  1052. package/.forge/worktrees/pipeline-44a94121/app/api/tunnel/route.ts +26 -0
  1053. package/.forge/worktrees/pipeline-44a94121/app/api/upgrade/route.ts +43 -0
  1054. package/.forge/worktrees/pipeline-44a94121/app/api/usage/route.ts +20 -0
  1055. package/.forge/worktrees/pipeline-44a94121/app/api/version/route.ts +78 -0
  1056. package/.forge/worktrees/pipeline-44a94121/app/api/watchers/route.ts +33 -0
  1057. package/.forge/worktrees/pipeline-44a94121/app/api/workspace/[id]/agents/route.ts +35 -0
  1058. package/.forge/worktrees/pipeline-44a94121/app/api/workspace/[id]/memory/route.ts +23 -0
  1059. package/.forge/worktrees/pipeline-44a94121/app/api/workspace/[id]/smith/route.ts +22 -0
  1060. package/.forge/worktrees/pipeline-44a94121/app/api/workspace/[id]/stream/route.ts +28 -0
  1061. package/.forge/worktrees/pipeline-44a94121/app/api/workspace/route.ts +100 -0
  1062. package/.forge/worktrees/pipeline-44a94121/app/global-error.tsx +21 -0
  1063. package/.forge/worktrees/pipeline-44a94121/app/globals.css +52 -0
  1064. package/.forge/worktrees/pipeline-44a94121/app/icon.ico +0 -0
  1065. package/.forge/worktrees/pipeline-44a94121/app/icon.png +0 -0
  1066. package/.forge/worktrees/pipeline-44a94121/app/icon.svg +106 -0
  1067. package/.forge/worktrees/pipeline-44a94121/app/layout.tsx +17 -0
  1068. package/.forge/worktrees/pipeline-44a94121/app/login/LoginForm.tsx +96 -0
  1069. package/.forge/worktrees/pipeline-44a94121/app/login/page.tsx +10 -0
  1070. package/.forge/worktrees/pipeline-44a94121/app/mobile/page.tsx +9 -0
  1071. package/.forge/worktrees/pipeline-44a94121/app/page.tsx +21 -0
  1072. package/.forge/worktrees/pipeline-44a94121/bin/forge-server.mjs +484 -0
  1073. package/.forge/worktrees/pipeline-44a94121/check-forge-status.sh +71 -0
  1074. package/.forge/worktrees/pipeline-44a94121/cli/mw.ts +579 -0
  1075. package/.forge/worktrees/pipeline-44a94121/components/BrowserPanel.tsx +175 -0
  1076. package/.forge/worktrees/pipeline-44a94121/components/ChatPanel.tsx +191 -0
  1077. package/.forge/worktrees/pipeline-44a94121/components/ClaudeTerminal.tsx +267 -0
  1078. package/.forge/worktrees/pipeline-44a94121/components/CodeViewer.tsx +787 -0
  1079. package/.forge/worktrees/pipeline-44a94121/components/ConversationEditor.tsx +411 -0
  1080. package/.forge/worktrees/pipeline-44a94121/components/ConversationGraphView.tsx +347 -0
  1081. package/.forge/worktrees/pipeline-44a94121/components/ConversationTerminalView.tsx +303 -0
  1082. package/.forge/worktrees/pipeline-44a94121/components/Dashboard.tsx +807 -0
  1083. package/.forge/worktrees/pipeline-44a94121/components/DashboardWrapper.tsx +9 -0
  1084. package/.forge/worktrees/pipeline-44a94121/components/DeliveryFlowEditor.tsx +491 -0
  1085. package/.forge/worktrees/pipeline-44a94121/components/DeliveryList.tsx +230 -0
  1086. package/.forge/worktrees/pipeline-44a94121/components/DeliveryWorkspace.tsx +589 -0
  1087. package/.forge/worktrees/pipeline-44a94121/components/DocTerminal.tsx +187 -0
  1088. package/.forge/worktrees/pipeline-44a94121/components/DocsViewer.tsx +574 -0
  1089. package/.forge/worktrees/pipeline-44a94121/components/HelpDialog.tsx +169 -0
  1090. package/.forge/worktrees/pipeline-44a94121/components/HelpTerminal.tsx +141 -0
  1091. package/.forge/worktrees/pipeline-44a94121/components/InlinePipelineView.tsx +111 -0
  1092. package/.forge/worktrees/pipeline-44a94121/components/LogViewer.tsx +194 -0
  1093. package/.forge/worktrees/pipeline-44a94121/components/MarkdownContent.tsx +73 -0
  1094. package/.forge/worktrees/pipeline-44a94121/components/MobileView.tsx +385 -0
  1095. package/.forge/worktrees/pipeline-44a94121/components/MonitorPanel.tsx +122 -0
  1096. package/.forge/worktrees/pipeline-44a94121/components/NewSessionModal.tsx +93 -0
  1097. package/.forge/worktrees/pipeline-44a94121/components/NewTaskModal.tsx +492 -0
  1098. package/.forge/worktrees/pipeline-44a94121/components/PipelineEditor.tsx +570 -0
  1099. package/.forge/worktrees/pipeline-44a94121/components/PipelineView.tsx +1018 -0
  1100. package/.forge/worktrees/pipeline-44a94121/components/PluginsPanel.tsx +472 -0
  1101. package/.forge/worktrees/pipeline-44a94121/components/ProjectDetail.tsx +1618 -0
  1102. package/.forge/worktrees/pipeline-44a94121/components/ProjectList.tsx +108 -0
  1103. package/.forge/worktrees/pipeline-44a94121/components/ProjectManager.tsx +401 -0
  1104. package/.forge/worktrees/pipeline-44a94121/components/SessionList.tsx +74 -0
  1105. package/.forge/worktrees/pipeline-44a94121/components/SessionView.tsx +726 -0
  1106. package/.forge/worktrees/pipeline-44a94121/components/SettingsModal.tsx +1647 -0
  1107. package/.forge/worktrees/pipeline-44a94121/components/SkillsPanel.tsx +969 -0
  1108. package/.forge/worktrees/pipeline-44a94121/components/StatusBar.tsx +99 -0
  1109. package/.forge/worktrees/pipeline-44a94121/components/TabBar.tsx +46 -0
  1110. package/.forge/worktrees/pipeline-44a94121/components/TaskBoard.tsx +113 -0
  1111. package/.forge/worktrees/pipeline-44a94121/components/TaskDetail.tsx +372 -0
  1112. package/.forge/worktrees/pipeline-44a94121/components/TerminalLauncher.tsx +398 -0
  1113. package/.forge/worktrees/pipeline-44a94121/components/TunnelToggle.tsx +206 -0
  1114. package/.forge/worktrees/pipeline-44a94121/components/UsagePanel.tsx +207 -0
  1115. package/.forge/worktrees/pipeline-44a94121/components/WebTerminal.tsx +1683 -0
  1116. package/.forge/worktrees/pipeline-44a94121/components/WorkspaceTree.tsx +221 -0
  1117. package/.forge/worktrees/pipeline-44a94121/components/WorkspaceView.tsx +4048 -0
  1118. package/.forge/worktrees/pipeline-44a94121/dev-test.sh +5 -0
  1119. package/.forge/worktrees/pipeline-44a94121/docs/Forge_Memory_Layer_Design.docx +0 -0
  1120. package/.forge/worktrees/pipeline-44a94121/docs/Forge_Strategy_Research_2026.docx +0 -0
  1121. package/.forge/worktrees/pipeline-44a94121/docs/LOCAL-DEPLOY.md +144 -0
  1122. package/.forge/worktrees/pipeline-44a94121/docs/roadmap-multi-agent-workflow.md +330 -0
  1123. package/.forge/worktrees/pipeline-44a94121/forge-logo.png +0 -0
  1124. package/.forge/worktrees/pipeline-44a94121/forge-logo.svg +106 -0
  1125. package/.forge/worktrees/pipeline-44a94121/hooks/useSidebarResize.ts +52 -0
  1126. package/.forge/worktrees/pipeline-44a94121/install.sh +29 -0
  1127. package/.forge/worktrees/pipeline-44a94121/instrumentation.ts +35 -0
  1128. package/.forge/worktrees/pipeline-44a94121/lib/agents/claude-adapter.ts +104 -0
  1129. package/.forge/worktrees/pipeline-44a94121/lib/agents/generic-adapter.ts +64 -0
  1130. package/.forge/worktrees/pipeline-44a94121/lib/agents/index.ts +245 -0
  1131. package/.forge/worktrees/pipeline-44a94121/lib/agents/types.ts +70 -0
  1132. package/.forge/worktrees/pipeline-44a94121/lib/artifacts.ts +106 -0
  1133. package/.forge/worktrees/pipeline-44a94121/lib/auth.ts +62 -0
  1134. package/.forge/worktrees/pipeline-44a94121/lib/builtin-plugins/docker.yaml +70 -0
  1135. package/.forge/worktrees/pipeline-44a94121/lib/builtin-plugins/http.yaml +66 -0
  1136. package/.forge/worktrees/pipeline-44a94121/lib/builtin-plugins/jenkins.yaml +92 -0
  1137. package/.forge/worktrees/pipeline-44a94121/lib/builtin-plugins/llm-vision.yaml +85 -0
  1138. package/.forge/worktrees/pipeline-44a94121/lib/builtin-plugins/playwright.yaml +111 -0
  1139. package/.forge/worktrees/pipeline-44a94121/lib/builtin-plugins/shell-command.yaml +60 -0
  1140. package/.forge/worktrees/pipeline-44a94121/lib/builtin-plugins/slack.yaml +48 -0
  1141. package/.forge/worktrees/pipeline-44a94121/lib/builtin-plugins/webhook.yaml +56 -0
  1142. package/.forge/worktrees/pipeline-44a94121/lib/claude-process.ts +351 -0
  1143. package/.forge/worktrees/pipeline-44a94121/lib/claude-sessions.ts +266 -0
  1144. package/.forge/worktrees/pipeline-44a94121/lib/claude-templates.ts +227 -0
  1145. package/.forge/worktrees/pipeline-44a94121/lib/cloudflared.ts +424 -0
  1146. package/.forge/worktrees/pipeline-44a94121/lib/crypto.ts +67 -0
  1147. package/.forge/worktrees/pipeline-44a94121/lib/delivery.ts +787 -0
  1148. package/.forge/worktrees/pipeline-44a94121/lib/dirs.ts +99 -0
  1149. package/.forge/worktrees/pipeline-44a94121/lib/flows.ts +86 -0
  1150. package/.forge/worktrees/pipeline-44a94121/lib/forge-mcp-server.ts +717 -0
  1151. package/.forge/worktrees/pipeline-44a94121/lib/forge-skills/forge-inbox.md +38 -0
  1152. package/.forge/worktrees/pipeline-44a94121/lib/forge-skills/forge-send.md +47 -0
  1153. package/.forge/worktrees/pipeline-44a94121/lib/forge-skills/forge-status.md +32 -0
  1154. package/.forge/worktrees/pipeline-44a94121/lib/forge-skills/forge-workspace-sync.md +37 -0
  1155. package/.forge/worktrees/pipeline-44a94121/lib/help-docs/00-overview.md +40 -0
  1156. package/.forge/worktrees/pipeline-44a94121/lib/help-docs/01-settings.md +194 -0
  1157. package/.forge/worktrees/pipeline-44a94121/lib/help-docs/02-telegram.md +41 -0
  1158. package/.forge/worktrees/pipeline-44a94121/lib/help-docs/03-tunnel.md +31 -0
  1159. package/.forge/worktrees/pipeline-44a94121/lib/help-docs/04-tasks.md +52 -0
  1160. package/.forge/worktrees/pipeline-44a94121/lib/help-docs/05-pipelines.md +460 -0
  1161. package/.forge/worktrees/pipeline-44a94121/lib/help-docs/06-skills.md +43 -0
  1162. package/.forge/worktrees/pipeline-44a94121/lib/help-docs/07-projects.md +73 -0
  1163. package/.forge/worktrees/pipeline-44a94121/lib/help-docs/08-rules.md +53 -0
  1164. package/.forge/worktrees/pipeline-44a94121/lib/help-docs/09-issue-autofix.md +55 -0
  1165. package/.forge/worktrees/pipeline-44a94121/lib/help-docs/10-troubleshooting.md +89 -0
  1166. package/.forge/worktrees/pipeline-44a94121/lib/help-docs/11-workspace.md +810 -0
  1167. package/.forge/worktrees/pipeline-44a94121/lib/help-docs/CLAUDE.md +62 -0
  1168. package/.forge/worktrees/pipeline-44a94121/lib/init.ts +266 -0
  1169. package/.forge/worktrees/pipeline-44a94121/lib/issue-scanner.ts +298 -0
  1170. package/.forge/worktrees/pipeline-44a94121/lib/logger.ts +79 -0
  1171. package/.forge/worktrees/pipeline-44a94121/lib/notifications.ts +75 -0
  1172. package/.forge/worktrees/pipeline-44a94121/lib/notify.ts +108 -0
  1173. package/.forge/worktrees/pipeline-44a94121/lib/password.ts +97 -0
  1174. package/.forge/worktrees/pipeline-44a94121/lib/pipeline-scheduler.ts +373 -0
  1175. package/.forge/worktrees/pipeline-44a94121/lib/pipeline.ts +1441 -0
  1176. package/.forge/worktrees/pipeline-44a94121/lib/plugins/executor.ts +347 -0
  1177. package/.forge/worktrees/pipeline-44a94121/lib/plugins/registry.ts +228 -0
  1178. package/.forge/worktrees/pipeline-44a94121/lib/plugins/types.ts +103 -0
  1179. package/.forge/worktrees/pipeline-44a94121/lib/project-sessions.ts +53 -0
  1180. package/.forge/worktrees/pipeline-44a94121/lib/projects.ts +86 -0
  1181. package/.forge/worktrees/pipeline-44a94121/lib/session-manager.ts +156 -0
  1182. package/.forge/worktrees/pipeline-44a94121/lib/session-utils.ts +53 -0
  1183. package/.forge/worktrees/pipeline-44a94121/lib/session-watcher.ts +345 -0
  1184. package/.forge/worktrees/pipeline-44a94121/lib/settings.ts +195 -0
  1185. package/.forge/worktrees/pipeline-44a94121/lib/skills.ts +458 -0
  1186. package/.forge/worktrees/pipeline-44a94121/lib/task-manager.ts +949 -0
  1187. package/.forge/worktrees/pipeline-44a94121/lib/telegram-bot.ts +1477 -0
  1188. package/.forge/worktrees/pipeline-44a94121/lib/telegram-standalone.ts +83 -0
  1189. package/.forge/worktrees/pipeline-44a94121/lib/terminal-server.ts +70 -0
  1190. package/.forge/worktrees/pipeline-44a94121/lib/terminal-standalone.ts +421 -0
  1191. package/.forge/worktrees/pipeline-44a94121/lib/usage-scanner.ts +249 -0
  1192. package/.forge/worktrees/pipeline-44a94121/lib/workspace/__tests__/state-machine.test.ts +388 -0
  1193. package/.forge/worktrees/pipeline-44a94121/lib/workspace/__tests__/workspace.test.ts +311 -0
  1194. package/.forge/worktrees/pipeline-44a94121/lib/workspace/agent-bus.ts +416 -0
  1195. package/.forge/worktrees/pipeline-44a94121/lib/workspace/agent-worker.ts +655 -0
  1196. package/.forge/worktrees/pipeline-44a94121/lib/workspace/backends/api-backend.ts +262 -0
  1197. package/.forge/worktrees/pipeline-44a94121/lib/workspace/backends/cli-backend.ts +491 -0
  1198. package/.forge/worktrees/pipeline-44a94121/lib/workspace/index.ts +82 -0
  1199. package/.forge/worktrees/pipeline-44a94121/lib/workspace/manager.ts +136 -0
  1200. package/.forge/worktrees/pipeline-44a94121/lib/workspace/orchestrator.ts +3400 -0
  1201. package/.forge/worktrees/pipeline-44a94121/lib/workspace/persistence.ts +309 -0
  1202. package/.forge/worktrees/pipeline-44a94121/lib/workspace/presets.ts +649 -0
  1203. package/.forge/worktrees/pipeline-44a94121/lib/workspace/requests.ts +287 -0
  1204. package/.forge/worktrees/pipeline-44a94121/lib/workspace/session-monitor.ts +240 -0
  1205. package/.forge/worktrees/pipeline-44a94121/lib/workspace/skill-installer.ts +275 -0
  1206. package/.forge/worktrees/pipeline-44a94121/lib/workspace/smith-memory.ts +498 -0
  1207. package/.forge/worktrees/pipeline-44a94121/lib/workspace/types.ts +241 -0
  1208. package/.forge/worktrees/pipeline-44a94121/lib/workspace/watch-manager.ts +560 -0
  1209. package/.forge/worktrees/pipeline-44a94121/lib/workspace-standalone.ts +911 -0
  1210. package/.forge/worktrees/pipeline-44a94121/middleware.ts +51 -0
  1211. package/.forge/worktrees/pipeline-44a94121/next.config.ts +26 -0
  1212. package/.forge/worktrees/pipeline-44a94121/package.json +74 -0
  1213. package/.forge/worktrees/pipeline-44a94121/pnpm-lock.yaml +3719 -0
  1214. package/.forge/worktrees/pipeline-44a94121/pnpm-workspace.yaml +1 -0
  1215. package/.forge/worktrees/pipeline-44a94121/postcss.config.mjs +7 -0
  1216. package/.forge/worktrees/pipeline-44a94121/publish.sh +133 -0
  1217. package/.forge/worktrees/pipeline-44a94121/scripts/bench/README.md +66 -0
  1218. package/.forge/worktrees/pipeline-44a94121/scripts/bench/results/.gitignore +2 -0
  1219. package/.forge/worktrees/pipeline-44a94121/scripts/bench/run.ts +635 -0
  1220. package/.forge/worktrees/pipeline-44a94121/scripts/bench/tasks/01-text-utils/task.md +26 -0
  1221. package/.forge/worktrees/pipeline-44a94121/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
  1222. package/.forge/worktrees/pipeline-44a94121/scripts/bench/tasks/02-pagination/setup.sh +19 -0
  1223. package/.forge/worktrees/pipeline-44a94121/scripts/bench/tasks/02-pagination/task.md +48 -0
  1224. package/.forge/worktrees/pipeline-44a94121/scripts/bench/tasks/02-pagination/validator.sh +69 -0
  1225. package/.forge/worktrees/pipeline-44a94121/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
  1226. package/.forge/worktrees/pipeline-44a94121/scripts/bench/tasks/03-bug-fix/task.md +30 -0
  1227. package/.forge/worktrees/pipeline-44a94121/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
  1228. package/.forge/worktrees/pipeline-44a94121/scripts/verify-usage.ts +178 -0
  1229. package/.forge/worktrees/pipeline-44a94121/src/config/index.ts +129 -0
  1230. package/.forge/worktrees/pipeline-44a94121/src/core/db/database.ts +259 -0
  1231. package/.forge/worktrees/pipeline-44a94121/src/core/memory/strategy.ts +32 -0
  1232. package/.forge/worktrees/pipeline-44a94121/src/core/providers/chat.ts +65 -0
  1233. package/.forge/worktrees/pipeline-44a94121/src/core/providers/registry.ts +60 -0
  1234. package/.forge/worktrees/pipeline-44a94121/src/core/session/manager.ts +190 -0
  1235. package/.forge/worktrees/pipeline-44a94121/src/types/index.ts +129 -0
  1236. package/.forge/worktrees/pipeline-44a94121/start.sh +31 -0
  1237. package/.forge/worktrees/pipeline-44a94121/templates/smith-lead.json +45 -0
  1238. package/.forge/worktrees/pipeline-44a94121/tsconfig.json +42 -0
  1239. package/.forge/worktrees/pipeline-d1757a50/CLAUDE.md +86 -0
  1240. package/.forge/worktrees/pipeline-d1757a50/README.md +136 -0
  1241. package/.forge/worktrees/pipeline-d1757a50/RELEASE_NOTES.md +11 -0
  1242. package/.forge/worktrees/pipeline-d1757a50/app/api/agents/route.ts +17 -0
  1243. package/.forge/worktrees/pipeline-d1757a50/app/api/auth/[...nextauth]/route.ts +3 -0
  1244. package/.forge/worktrees/pipeline-d1757a50/app/api/auth/verify/route.ts +46 -0
  1245. package/.forge/worktrees/pipeline-d1757a50/app/api/claude/[id]/route.ts +31 -0
  1246. package/.forge/worktrees/pipeline-d1757a50/app/api/claude/[id]/stream/route.ts +63 -0
  1247. package/.forge/worktrees/pipeline-d1757a50/app/api/claude/route.ts +28 -0
  1248. package/.forge/worktrees/pipeline-d1757a50/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
  1249. package/.forge/worktrees/pipeline-d1757a50/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
  1250. package/.forge/worktrees/pipeline-d1757a50/app/api/claude-sessions/[projectName]/route.ts +37 -0
  1251. package/.forge/worktrees/pipeline-d1757a50/app/api/claude-sessions/sync/route.ts +17 -0
  1252. package/.forge/worktrees/pipeline-d1757a50/app/api/claude-templates/route.ts +145 -0
  1253. package/.forge/worktrees/pipeline-d1757a50/app/api/code/route.ts +299 -0
  1254. package/.forge/worktrees/pipeline-d1757a50/app/api/delivery/[id]/route.ts +62 -0
  1255. package/.forge/worktrees/pipeline-d1757a50/app/api/delivery/route.ts +40 -0
  1256. package/.forge/worktrees/pipeline-d1757a50/app/api/detect-cli/route.ts +46 -0
  1257. package/.forge/worktrees/pipeline-d1757a50/app/api/docs/route.ts +176 -0
  1258. package/.forge/worktrees/pipeline-d1757a50/app/api/docs/sessions/route.ts +54 -0
  1259. package/.forge/worktrees/pipeline-d1757a50/app/api/favorites/route.ts +26 -0
  1260. package/.forge/worktrees/pipeline-d1757a50/app/api/flows/route.ts +6 -0
  1261. package/.forge/worktrees/pipeline-d1757a50/app/api/flows/run/route.ts +19 -0
  1262. package/.forge/worktrees/pipeline-d1757a50/app/api/git/route.ts +149 -0
  1263. package/.forge/worktrees/pipeline-d1757a50/app/api/help/route.ts +84 -0
  1264. package/.forge/worktrees/pipeline-d1757a50/app/api/issue-scanner/route.ts +116 -0
  1265. package/.forge/worktrees/pipeline-d1757a50/app/api/logs/route.ts +100 -0
  1266. package/.forge/worktrees/pipeline-d1757a50/app/api/mobile-chat/route.ts +115 -0
  1267. package/.forge/worktrees/pipeline-d1757a50/app/api/monitor/route.ts +74 -0
  1268. package/.forge/worktrees/pipeline-d1757a50/app/api/notifications/route.ts +42 -0
  1269. package/.forge/worktrees/pipeline-d1757a50/app/api/notify/test/route.ts +33 -0
  1270. package/.forge/worktrees/pipeline-d1757a50/app/api/online/route.ts +40 -0
  1271. package/.forge/worktrees/pipeline-d1757a50/app/api/pipelines/[id]/route.ts +41 -0
  1272. package/.forge/worktrees/pipeline-d1757a50/app/api/pipelines/route.ts +90 -0
  1273. package/.forge/worktrees/pipeline-d1757a50/app/api/plugins/route.ts +75 -0
  1274. package/.forge/worktrees/pipeline-d1757a50/app/api/preview/[...path]/route.ts +64 -0
  1275. package/.forge/worktrees/pipeline-d1757a50/app/api/preview/route.ts +156 -0
  1276. package/.forge/worktrees/pipeline-d1757a50/app/api/project-pipelines/route.ts +91 -0
  1277. package/.forge/worktrees/pipeline-d1757a50/app/api/project-sessions/route.ts +61 -0
  1278. package/.forge/worktrees/pipeline-d1757a50/app/api/projects/route.ts +26 -0
  1279. package/.forge/worktrees/pipeline-d1757a50/app/api/sessions/[id]/chat/route.ts +64 -0
  1280. package/.forge/worktrees/pipeline-d1757a50/app/api/sessions/[id]/messages/route.ts +9 -0
  1281. package/.forge/worktrees/pipeline-d1757a50/app/api/sessions/[id]/route.ts +17 -0
  1282. package/.forge/worktrees/pipeline-d1757a50/app/api/sessions/route.ts +20 -0
  1283. package/.forge/worktrees/pipeline-d1757a50/app/api/settings/route.ts +64 -0
  1284. package/.forge/worktrees/pipeline-d1757a50/app/api/skills/local/route.ts +228 -0
  1285. package/.forge/worktrees/pipeline-d1757a50/app/api/skills/route.ts +182 -0
  1286. package/.forge/worktrees/pipeline-d1757a50/app/api/smith-templates/route.ts +81 -0
  1287. package/.forge/worktrees/pipeline-d1757a50/app/api/status/route.ts +12 -0
  1288. package/.forge/worktrees/pipeline-d1757a50/app/api/tabs/route.ts +25 -0
  1289. package/.forge/worktrees/pipeline-d1757a50/app/api/tasks/[id]/route.ts +51 -0
  1290. package/.forge/worktrees/pipeline-d1757a50/app/api/tasks/[id]/stream/route.ts +77 -0
  1291. package/.forge/worktrees/pipeline-d1757a50/app/api/tasks/link/route.ts +37 -0
  1292. package/.forge/worktrees/pipeline-d1757a50/app/api/tasks/route.ts +44 -0
  1293. package/.forge/worktrees/pipeline-d1757a50/app/api/tasks/session/route.ts +14 -0
  1294. package/.forge/worktrees/pipeline-d1757a50/app/api/telegram/route.ts +23 -0
  1295. package/.forge/worktrees/pipeline-d1757a50/app/api/templates/route.ts +6 -0
  1296. package/.forge/worktrees/pipeline-d1757a50/app/api/terminal-bell/route.ts +35 -0
  1297. package/.forge/worktrees/pipeline-d1757a50/app/api/terminal-cwd/route.ts +19 -0
  1298. package/.forge/worktrees/pipeline-d1757a50/app/api/terminal-state/route.ts +15 -0
  1299. package/.forge/worktrees/pipeline-d1757a50/app/api/tunnel/route.ts +26 -0
  1300. package/.forge/worktrees/pipeline-d1757a50/app/api/upgrade/route.ts +43 -0
  1301. package/.forge/worktrees/pipeline-d1757a50/app/api/usage/route.ts +20 -0
  1302. package/.forge/worktrees/pipeline-d1757a50/app/api/version/route.ts +78 -0
  1303. package/.forge/worktrees/pipeline-d1757a50/app/api/watchers/route.ts +33 -0
  1304. package/.forge/worktrees/pipeline-d1757a50/app/api/workspace/[id]/agents/route.ts +35 -0
  1305. package/.forge/worktrees/pipeline-d1757a50/app/api/workspace/[id]/memory/route.ts +23 -0
  1306. package/.forge/worktrees/pipeline-d1757a50/app/api/workspace/[id]/smith/route.ts +22 -0
  1307. package/.forge/worktrees/pipeline-d1757a50/app/api/workspace/[id]/stream/route.ts +28 -0
  1308. package/.forge/worktrees/pipeline-d1757a50/app/api/workspace/route.ts +100 -0
  1309. package/.forge/worktrees/pipeline-d1757a50/app/global-error.tsx +21 -0
  1310. package/.forge/worktrees/pipeline-d1757a50/app/globals.css +52 -0
  1311. package/.forge/worktrees/pipeline-d1757a50/app/icon.ico +0 -0
  1312. package/.forge/worktrees/pipeline-d1757a50/app/icon.png +0 -0
  1313. package/.forge/worktrees/pipeline-d1757a50/app/icon.svg +106 -0
  1314. package/.forge/worktrees/pipeline-d1757a50/app/layout.tsx +17 -0
  1315. package/.forge/worktrees/pipeline-d1757a50/app/login/LoginForm.tsx +96 -0
  1316. package/.forge/worktrees/pipeline-d1757a50/app/login/page.tsx +10 -0
  1317. package/.forge/worktrees/pipeline-d1757a50/app/mobile/page.tsx +9 -0
  1318. package/.forge/worktrees/pipeline-d1757a50/app/page.tsx +21 -0
  1319. package/.forge/worktrees/pipeline-d1757a50/bin/forge-server.mjs +484 -0
  1320. package/.forge/worktrees/pipeline-d1757a50/check-forge-status.sh +71 -0
  1321. package/.forge/worktrees/pipeline-d1757a50/cli/mw.ts +579 -0
  1322. package/.forge/worktrees/pipeline-d1757a50/components/BrowserPanel.tsx +175 -0
  1323. package/.forge/worktrees/pipeline-d1757a50/components/ChatPanel.tsx +191 -0
  1324. package/.forge/worktrees/pipeline-d1757a50/components/ClaudeTerminal.tsx +267 -0
  1325. package/.forge/worktrees/pipeline-d1757a50/components/CodeViewer.tsx +787 -0
  1326. package/.forge/worktrees/pipeline-d1757a50/components/ConversationEditor.tsx +411 -0
  1327. package/.forge/worktrees/pipeline-d1757a50/components/ConversationGraphView.tsx +347 -0
  1328. package/.forge/worktrees/pipeline-d1757a50/components/ConversationTerminalView.tsx +303 -0
  1329. package/.forge/worktrees/pipeline-d1757a50/components/Dashboard.tsx +807 -0
  1330. package/.forge/worktrees/pipeline-d1757a50/components/DashboardWrapper.tsx +9 -0
  1331. package/.forge/worktrees/pipeline-d1757a50/components/DeliveryFlowEditor.tsx +491 -0
  1332. package/.forge/worktrees/pipeline-d1757a50/components/DeliveryList.tsx +230 -0
  1333. package/.forge/worktrees/pipeline-d1757a50/components/DeliveryWorkspace.tsx +589 -0
  1334. package/.forge/worktrees/pipeline-d1757a50/components/DocTerminal.tsx +187 -0
  1335. package/.forge/worktrees/pipeline-d1757a50/components/DocsViewer.tsx +574 -0
  1336. package/.forge/worktrees/pipeline-d1757a50/components/HelpDialog.tsx +169 -0
  1337. package/.forge/worktrees/pipeline-d1757a50/components/HelpTerminal.tsx +141 -0
  1338. package/.forge/worktrees/pipeline-d1757a50/components/InlinePipelineView.tsx +111 -0
  1339. package/.forge/worktrees/pipeline-d1757a50/components/LogViewer.tsx +194 -0
  1340. package/.forge/worktrees/pipeline-d1757a50/components/MarkdownContent.tsx +73 -0
  1341. package/.forge/worktrees/pipeline-d1757a50/components/MobileView.tsx +385 -0
  1342. package/.forge/worktrees/pipeline-d1757a50/components/MonitorPanel.tsx +122 -0
  1343. package/.forge/worktrees/pipeline-d1757a50/components/NewSessionModal.tsx +93 -0
  1344. package/.forge/worktrees/pipeline-d1757a50/components/NewTaskModal.tsx +492 -0
  1345. package/.forge/worktrees/pipeline-d1757a50/components/PipelineEditor.tsx +570 -0
  1346. package/.forge/worktrees/pipeline-d1757a50/components/PipelineView.tsx +1018 -0
  1347. package/.forge/worktrees/pipeline-d1757a50/components/PluginsPanel.tsx +472 -0
  1348. package/.forge/worktrees/pipeline-d1757a50/components/ProjectDetail.tsx +1618 -0
  1349. package/.forge/worktrees/pipeline-d1757a50/components/ProjectList.tsx +108 -0
  1350. package/.forge/worktrees/pipeline-d1757a50/components/ProjectManager.tsx +401 -0
  1351. package/.forge/worktrees/pipeline-d1757a50/components/SessionList.tsx +74 -0
  1352. package/.forge/worktrees/pipeline-d1757a50/components/SessionView.tsx +726 -0
  1353. package/.forge/worktrees/pipeline-d1757a50/components/SettingsModal.tsx +1647 -0
  1354. package/.forge/worktrees/pipeline-d1757a50/components/SkillsPanel.tsx +969 -0
  1355. package/.forge/worktrees/pipeline-d1757a50/components/StatusBar.tsx +99 -0
  1356. package/.forge/worktrees/pipeline-d1757a50/components/TabBar.tsx +46 -0
  1357. package/.forge/worktrees/pipeline-d1757a50/components/TaskBoard.tsx +113 -0
  1358. package/.forge/worktrees/pipeline-d1757a50/components/TaskDetail.tsx +372 -0
  1359. package/.forge/worktrees/pipeline-d1757a50/components/TerminalLauncher.tsx +398 -0
  1360. package/.forge/worktrees/pipeline-d1757a50/components/TunnelToggle.tsx +206 -0
  1361. package/.forge/worktrees/pipeline-d1757a50/components/UsagePanel.tsx +207 -0
  1362. package/.forge/worktrees/pipeline-d1757a50/components/WebTerminal.tsx +1683 -0
  1363. package/.forge/worktrees/pipeline-d1757a50/components/WorkspaceTree.tsx +221 -0
  1364. package/.forge/worktrees/pipeline-d1757a50/components/WorkspaceView.tsx +4048 -0
  1365. package/.forge/worktrees/pipeline-d1757a50/dev-test.sh +5 -0
  1366. package/.forge/worktrees/pipeline-d1757a50/docs/Forge_Memory_Layer_Design.docx +0 -0
  1367. package/.forge/worktrees/pipeline-d1757a50/docs/Forge_Strategy_Research_2026.docx +0 -0
  1368. package/.forge/worktrees/pipeline-d1757a50/docs/LOCAL-DEPLOY.md +144 -0
  1369. package/.forge/worktrees/pipeline-d1757a50/docs/roadmap-multi-agent-workflow.md +330 -0
  1370. package/.forge/worktrees/pipeline-d1757a50/forge-logo.png +0 -0
  1371. package/.forge/worktrees/pipeline-d1757a50/forge-logo.svg +106 -0
  1372. package/.forge/worktrees/pipeline-d1757a50/hooks/useSidebarResize.ts +52 -0
  1373. package/.forge/worktrees/pipeline-d1757a50/install.sh +29 -0
  1374. package/.forge/worktrees/pipeline-d1757a50/instrumentation.ts +35 -0
  1375. package/.forge/worktrees/pipeline-d1757a50/lib/agents/claude-adapter.ts +104 -0
  1376. package/.forge/worktrees/pipeline-d1757a50/lib/agents/generic-adapter.ts +64 -0
  1377. package/.forge/worktrees/pipeline-d1757a50/lib/agents/index.ts +245 -0
  1378. package/.forge/worktrees/pipeline-d1757a50/lib/agents/types.ts +70 -0
  1379. package/.forge/worktrees/pipeline-d1757a50/lib/artifacts.ts +106 -0
  1380. package/.forge/worktrees/pipeline-d1757a50/lib/auth.ts +62 -0
  1381. package/.forge/worktrees/pipeline-d1757a50/lib/builtin-plugins/docker.yaml +70 -0
  1382. package/.forge/worktrees/pipeline-d1757a50/lib/builtin-plugins/http.yaml +66 -0
  1383. package/.forge/worktrees/pipeline-d1757a50/lib/builtin-plugins/jenkins.yaml +92 -0
  1384. package/.forge/worktrees/pipeline-d1757a50/lib/builtin-plugins/llm-vision.yaml +85 -0
  1385. package/.forge/worktrees/pipeline-d1757a50/lib/builtin-plugins/playwright.yaml +111 -0
  1386. package/.forge/worktrees/pipeline-d1757a50/lib/builtin-plugins/shell-command.yaml +60 -0
  1387. package/.forge/worktrees/pipeline-d1757a50/lib/builtin-plugins/slack.yaml +48 -0
  1388. package/.forge/worktrees/pipeline-d1757a50/lib/builtin-plugins/webhook.yaml +56 -0
  1389. package/.forge/worktrees/pipeline-d1757a50/lib/claude-process.ts +361 -0
  1390. package/.forge/worktrees/pipeline-d1757a50/lib/claude-sessions.ts +266 -0
  1391. package/.forge/worktrees/pipeline-d1757a50/lib/claude-templates.ts +227 -0
  1392. package/.forge/worktrees/pipeline-d1757a50/lib/cloudflared.ts +424 -0
  1393. package/.forge/worktrees/pipeline-d1757a50/lib/crypto.ts +67 -0
  1394. package/.forge/worktrees/pipeline-d1757a50/lib/delivery.ts +787 -0
  1395. package/.forge/worktrees/pipeline-d1757a50/lib/dirs.ts +99 -0
  1396. package/.forge/worktrees/pipeline-d1757a50/lib/flows.ts +86 -0
  1397. package/.forge/worktrees/pipeline-d1757a50/lib/forge-mcp-server.ts +717 -0
  1398. package/.forge/worktrees/pipeline-d1757a50/lib/forge-skills/forge-inbox.md +38 -0
  1399. package/.forge/worktrees/pipeline-d1757a50/lib/forge-skills/forge-send.md +47 -0
  1400. package/.forge/worktrees/pipeline-d1757a50/lib/forge-skills/forge-status.md +32 -0
  1401. package/.forge/worktrees/pipeline-d1757a50/lib/forge-skills/forge-workspace-sync.md +37 -0
  1402. package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/00-overview.md +40 -0
  1403. package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/01-settings.md +194 -0
  1404. package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/02-telegram.md +41 -0
  1405. package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/03-tunnel.md +31 -0
  1406. package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/04-tasks.md +52 -0
  1407. package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/05-pipelines.md +460 -0
  1408. package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/06-skills.md +43 -0
  1409. package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/07-projects.md +73 -0
  1410. package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/08-rules.md +53 -0
  1411. package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/09-issue-autofix.md +55 -0
  1412. package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/10-troubleshooting.md +89 -0
  1413. package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/11-workspace.md +810 -0
  1414. package/.forge/worktrees/pipeline-d1757a50/lib/help-docs/CLAUDE.md +62 -0
  1415. package/.forge/worktrees/pipeline-d1757a50/lib/init.ts +266 -0
  1416. package/.forge/worktrees/pipeline-d1757a50/lib/issue-scanner.ts +298 -0
  1417. package/.forge/worktrees/pipeline-d1757a50/lib/logger.ts +79 -0
  1418. package/.forge/worktrees/pipeline-d1757a50/lib/notifications.ts +75 -0
  1419. package/.forge/worktrees/pipeline-d1757a50/lib/notify.ts +108 -0
  1420. package/.forge/worktrees/pipeline-d1757a50/lib/password.ts +97 -0
  1421. package/.forge/worktrees/pipeline-d1757a50/lib/pipeline-scheduler.ts +373 -0
  1422. package/.forge/worktrees/pipeline-d1757a50/lib/pipeline.ts +1441 -0
  1423. package/.forge/worktrees/pipeline-d1757a50/lib/plugins/executor.ts +347 -0
  1424. package/.forge/worktrees/pipeline-d1757a50/lib/plugins/registry.ts +228 -0
  1425. package/.forge/worktrees/pipeline-d1757a50/lib/plugins/types.ts +103 -0
  1426. package/.forge/worktrees/pipeline-d1757a50/lib/project-sessions.ts +53 -0
  1427. package/.forge/worktrees/pipeline-d1757a50/lib/projects.ts +86 -0
  1428. package/.forge/worktrees/pipeline-d1757a50/lib/session-manager.ts +156 -0
  1429. package/.forge/worktrees/pipeline-d1757a50/lib/session-utils.ts +53 -0
  1430. package/.forge/worktrees/pipeline-d1757a50/lib/session-watcher.ts +345 -0
  1431. package/.forge/worktrees/pipeline-d1757a50/lib/settings.ts +195 -0
  1432. package/.forge/worktrees/pipeline-d1757a50/lib/skills.ts +458 -0
  1433. package/.forge/worktrees/pipeline-d1757a50/lib/task-manager.ts +949 -0
  1434. package/.forge/worktrees/pipeline-d1757a50/lib/telegram-bot.ts +1477 -0
  1435. package/.forge/worktrees/pipeline-d1757a50/lib/telegram-standalone.ts +83 -0
  1436. package/.forge/worktrees/pipeline-d1757a50/lib/terminal-server.ts +70 -0
  1437. package/.forge/worktrees/pipeline-d1757a50/lib/terminal-standalone.ts +421 -0
  1438. package/.forge/worktrees/pipeline-d1757a50/lib/usage-scanner.ts +249 -0
  1439. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/__tests__/state-machine.test.ts +388 -0
  1440. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/__tests__/workspace.test.ts +311 -0
  1441. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/agent-bus.ts +416 -0
  1442. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/agent-worker.ts +655 -0
  1443. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/backends/api-backend.ts +262 -0
  1444. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/backends/cli-backend.ts +491 -0
  1445. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/index.ts +82 -0
  1446. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/manager.ts +136 -0
  1447. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/orchestrator.ts +3400 -0
  1448. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/persistence.ts +309 -0
  1449. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/presets.ts +649 -0
  1450. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/requests.ts +287 -0
  1451. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/session-monitor.ts +240 -0
  1452. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/skill-installer.ts +275 -0
  1453. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/smith-memory.ts +498 -0
  1454. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/types.ts +241 -0
  1455. package/.forge/worktrees/pipeline-d1757a50/lib/workspace/watch-manager.ts +560 -0
  1456. package/.forge/worktrees/pipeline-d1757a50/lib/workspace-standalone.ts +911 -0
  1457. package/.forge/worktrees/pipeline-d1757a50/middleware.ts +51 -0
  1458. package/.forge/worktrees/pipeline-d1757a50/next.config.ts +26 -0
  1459. package/.forge/worktrees/pipeline-d1757a50/package.json +74 -0
  1460. package/.forge/worktrees/pipeline-d1757a50/pnpm-lock.yaml +3719 -0
  1461. package/.forge/worktrees/pipeline-d1757a50/pnpm-workspace.yaml +1 -0
  1462. package/.forge/worktrees/pipeline-d1757a50/postcss.config.mjs +7 -0
  1463. package/.forge/worktrees/pipeline-d1757a50/publish.sh +133 -0
  1464. package/.forge/worktrees/pipeline-d1757a50/scripts/bench/README.md +66 -0
  1465. package/.forge/worktrees/pipeline-d1757a50/scripts/bench/results/.gitignore +2 -0
  1466. package/.forge/worktrees/pipeline-d1757a50/scripts/bench/run.ts +635 -0
  1467. package/.forge/worktrees/pipeline-d1757a50/scripts/bench/tasks/01-text-utils/task.md +26 -0
  1468. package/.forge/worktrees/pipeline-d1757a50/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
  1469. package/.forge/worktrees/pipeline-d1757a50/scripts/bench/tasks/02-pagination/setup.sh +19 -0
  1470. package/.forge/worktrees/pipeline-d1757a50/scripts/bench/tasks/02-pagination/task.md +48 -0
  1471. package/.forge/worktrees/pipeline-d1757a50/scripts/bench/tasks/02-pagination/validator.sh +69 -0
  1472. package/.forge/worktrees/pipeline-d1757a50/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
  1473. package/.forge/worktrees/pipeline-d1757a50/scripts/bench/tasks/03-bug-fix/task.md +30 -0
  1474. package/.forge/worktrees/pipeline-d1757a50/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
  1475. package/.forge/worktrees/pipeline-d1757a50/scripts/verify-usage.ts +178 -0
  1476. package/.forge/worktrees/pipeline-d1757a50/src/config/index.ts +129 -0
  1477. package/.forge/worktrees/pipeline-d1757a50/src/core/db/database.ts +259 -0
  1478. package/.forge/worktrees/pipeline-d1757a50/src/core/memory/strategy.ts +32 -0
  1479. package/.forge/worktrees/pipeline-d1757a50/src/core/providers/chat.ts +65 -0
  1480. package/.forge/worktrees/pipeline-d1757a50/src/core/providers/registry.ts +60 -0
  1481. package/.forge/worktrees/pipeline-d1757a50/src/core/session/manager.ts +190 -0
  1482. package/.forge/worktrees/pipeline-d1757a50/src/types/index.ts +129 -0
  1483. package/.forge/worktrees/pipeline-d1757a50/start.sh +31 -0
  1484. package/.forge/worktrees/pipeline-d1757a50/templates/smith-lead.json +45 -0
  1485. package/.forge/worktrees/pipeline-d1757a50/tsconfig.json +42 -0
  1486. package/.forge/worktrees/pipeline-d59c2fe2/CLAUDE.md +86 -0
  1487. package/.forge/worktrees/pipeline-d59c2fe2/README.md +136 -0
  1488. package/.forge/worktrees/pipeline-d59c2fe2/RELEASE_NOTES.md +11 -0
  1489. package/.forge/worktrees/pipeline-d59c2fe2/app/api/agents/route.ts +17 -0
  1490. package/.forge/worktrees/pipeline-d59c2fe2/app/api/auth/[...nextauth]/route.ts +3 -0
  1491. package/.forge/worktrees/pipeline-d59c2fe2/app/api/auth/verify/route.ts +46 -0
  1492. package/.forge/worktrees/pipeline-d59c2fe2/app/api/claude/[id]/route.ts +31 -0
  1493. package/.forge/worktrees/pipeline-d59c2fe2/app/api/claude/[id]/stream/route.ts +63 -0
  1494. package/.forge/worktrees/pipeline-d59c2fe2/app/api/claude/route.ts +28 -0
  1495. package/.forge/worktrees/pipeline-d59c2fe2/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
  1496. package/.forge/worktrees/pipeline-d59c2fe2/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
  1497. package/.forge/worktrees/pipeline-d59c2fe2/app/api/claude-sessions/[projectName]/route.ts +37 -0
  1498. package/.forge/worktrees/pipeline-d59c2fe2/app/api/claude-sessions/sync/route.ts +17 -0
  1499. package/.forge/worktrees/pipeline-d59c2fe2/app/api/claude-templates/route.ts +145 -0
  1500. package/.forge/worktrees/pipeline-d59c2fe2/app/api/code/route.ts +299 -0
  1501. package/.forge/worktrees/pipeline-d59c2fe2/app/api/delivery/[id]/route.ts +62 -0
  1502. package/.forge/worktrees/pipeline-d59c2fe2/app/api/delivery/route.ts +40 -0
  1503. package/.forge/worktrees/pipeline-d59c2fe2/app/api/detect-cli/route.ts +46 -0
  1504. package/.forge/worktrees/pipeline-d59c2fe2/app/api/docs/route.ts +176 -0
  1505. package/.forge/worktrees/pipeline-d59c2fe2/app/api/docs/sessions/route.ts +54 -0
  1506. package/.forge/worktrees/pipeline-d59c2fe2/app/api/favorites/route.ts +26 -0
  1507. package/.forge/worktrees/pipeline-d59c2fe2/app/api/flows/route.ts +6 -0
  1508. package/.forge/worktrees/pipeline-d59c2fe2/app/api/flows/run/route.ts +19 -0
  1509. package/.forge/worktrees/pipeline-d59c2fe2/app/api/git/route.ts +149 -0
  1510. package/.forge/worktrees/pipeline-d59c2fe2/app/api/help/route.ts +84 -0
  1511. package/.forge/worktrees/pipeline-d59c2fe2/app/api/issue-scanner/route.ts +116 -0
  1512. package/.forge/worktrees/pipeline-d59c2fe2/app/api/logs/route.ts +100 -0
  1513. package/.forge/worktrees/pipeline-d59c2fe2/app/api/mobile-chat/route.ts +115 -0
  1514. package/.forge/worktrees/pipeline-d59c2fe2/app/api/monitor/route.ts +74 -0
  1515. package/.forge/worktrees/pipeline-d59c2fe2/app/api/notifications/route.ts +42 -0
  1516. package/.forge/worktrees/pipeline-d59c2fe2/app/api/notify/test/route.ts +33 -0
  1517. package/.forge/worktrees/pipeline-d59c2fe2/app/api/online/route.ts +40 -0
  1518. package/.forge/worktrees/pipeline-d59c2fe2/app/api/pipelines/[id]/route.ts +41 -0
  1519. package/.forge/worktrees/pipeline-d59c2fe2/app/api/pipelines/route.ts +90 -0
  1520. package/.forge/worktrees/pipeline-d59c2fe2/app/api/plugins/route.ts +75 -0
  1521. package/.forge/worktrees/pipeline-d59c2fe2/app/api/preview/[...path]/route.ts +64 -0
  1522. package/.forge/worktrees/pipeline-d59c2fe2/app/api/preview/route.ts +156 -0
  1523. package/.forge/worktrees/pipeline-d59c2fe2/app/api/project-pipelines/route.ts +91 -0
  1524. package/.forge/worktrees/pipeline-d59c2fe2/app/api/project-sessions/route.ts +61 -0
  1525. package/.forge/worktrees/pipeline-d59c2fe2/app/api/projects/route.ts +26 -0
  1526. package/.forge/worktrees/pipeline-d59c2fe2/app/api/sessions/[id]/chat/route.ts +64 -0
  1527. package/.forge/worktrees/pipeline-d59c2fe2/app/api/sessions/[id]/messages/route.ts +9 -0
  1528. package/.forge/worktrees/pipeline-d59c2fe2/app/api/sessions/[id]/route.ts +17 -0
  1529. package/.forge/worktrees/pipeline-d59c2fe2/app/api/sessions/route.ts +20 -0
  1530. package/.forge/worktrees/pipeline-d59c2fe2/app/api/settings/route.ts +64 -0
  1531. package/.forge/worktrees/pipeline-d59c2fe2/app/api/skills/local/route.ts +228 -0
  1532. package/.forge/worktrees/pipeline-d59c2fe2/app/api/skills/route.ts +182 -0
  1533. package/.forge/worktrees/pipeline-d59c2fe2/app/api/smith-templates/route.ts +81 -0
  1534. package/.forge/worktrees/pipeline-d59c2fe2/app/api/status/route.ts +12 -0
  1535. package/.forge/worktrees/pipeline-d59c2fe2/app/api/tabs/route.ts +25 -0
  1536. package/.forge/worktrees/pipeline-d59c2fe2/app/api/tasks/[id]/route.ts +51 -0
  1537. package/.forge/worktrees/pipeline-d59c2fe2/app/api/tasks/[id]/stream/route.ts +77 -0
  1538. package/.forge/worktrees/pipeline-d59c2fe2/app/api/tasks/link/route.ts +37 -0
  1539. package/.forge/worktrees/pipeline-d59c2fe2/app/api/tasks/route.ts +44 -0
  1540. package/.forge/worktrees/pipeline-d59c2fe2/app/api/tasks/session/route.ts +14 -0
  1541. package/.forge/worktrees/pipeline-d59c2fe2/app/api/telegram/route.ts +23 -0
  1542. package/.forge/worktrees/pipeline-d59c2fe2/app/api/templates/route.ts +6 -0
  1543. package/.forge/worktrees/pipeline-d59c2fe2/app/api/terminal-bell/route.ts +35 -0
  1544. package/.forge/worktrees/pipeline-d59c2fe2/app/api/terminal-cwd/route.ts +19 -0
  1545. package/.forge/worktrees/pipeline-d59c2fe2/app/api/terminal-state/route.ts +15 -0
  1546. package/.forge/worktrees/pipeline-d59c2fe2/app/api/tunnel/route.ts +26 -0
  1547. package/.forge/worktrees/pipeline-d59c2fe2/app/api/upgrade/route.ts +43 -0
  1548. package/.forge/worktrees/pipeline-d59c2fe2/app/api/usage/route.ts +20 -0
  1549. package/.forge/worktrees/pipeline-d59c2fe2/app/api/version/route.ts +78 -0
  1550. package/.forge/worktrees/pipeline-d59c2fe2/app/api/watchers/route.ts +33 -0
  1551. package/.forge/worktrees/pipeline-d59c2fe2/app/api/workspace/[id]/agents/route.ts +35 -0
  1552. package/.forge/worktrees/pipeline-d59c2fe2/app/api/workspace/[id]/memory/route.ts +23 -0
  1553. package/.forge/worktrees/pipeline-d59c2fe2/app/api/workspace/[id]/smith/route.ts +22 -0
  1554. package/.forge/worktrees/pipeline-d59c2fe2/app/api/workspace/[id]/stream/route.ts +28 -0
  1555. package/.forge/worktrees/pipeline-d59c2fe2/app/api/workspace/route.ts +100 -0
  1556. package/.forge/worktrees/pipeline-d59c2fe2/app/global-error.tsx +21 -0
  1557. package/.forge/worktrees/pipeline-d59c2fe2/app/globals.css +52 -0
  1558. package/.forge/worktrees/pipeline-d59c2fe2/app/icon.ico +0 -0
  1559. package/.forge/worktrees/pipeline-d59c2fe2/app/icon.png +0 -0
  1560. package/.forge/worktrees/pipeline-d59c2fe2/app/icon.svg +106 -0
  1561. package/.forge/worktrees/pipeline-d59c2fe2/app/layout.tsx +17 -0
  1562. package/.forge/worktrees/pipeline-d59c2fe2/app/login/LoginForm.tsx +96 -0
  1563. package/.forge/worktrees/pipeline-d59c2fe2/app/login/page.tsx +10 -0
  1564. package/.forge/worktrees/pipeline-d59c2fe2/app/mobile/page.tsx +9 -0
  1565. package/.forge/worktrees/pipeline-d59c2fe2/app/page.tsx +21 -0
  1566. package/.forge/worktrees/pipeline-d59c2fe2/bin/forge-server.mjs +484 -0
  1567. package/.forge/worktrees/pipeline-d59c2fe2/check-forge-status.sh +71 -0
  1568. package/.forge/worktrees/pipeline-d59c2fe2/cli/mw.ts +579 -0
  1569. package/.forge/worktrees/pipeline-d59c2fe2/components/BrowserPanel.tsx +175 -0
  1570. package/.forge/worktrees/pipeline-d59c2fe2/components/ChatPanel.tsx +191 -0
  1571. package/.forge/worktrees/pipeline-d59c2fe2/components/ClaudeTerminal.tsx +267 -0
  1572. package/.forge/worktrees/pipeline-d59c2fe2/components/CodeViewer.tsx +787 -0
  1573. package/.forge/worktrees/pipeline-d59c2fe2/components/ConversationEditor.tsx +411 -0
  1574. package/.forge/worktrees/pipeline-d59c2fe2/components/ConversationGraphView.tsx +347 -0
  1575. package/.forge/worktrees/pipeline-d59c2fe2/components/ConversationTerminalView.tsx +303 -0
  1576. package/.forge/worktrees/pipeline-d59c2fe2/components/Dashboard.tsx +807 -0
  1577. package/.forge/worktrees/pipeline-d59c2fe2/components/DashboardWrapper.tsx +9 -0
  1578. package/.forge/worktrees/pipeline-d59c2fe2/components/DeliveryFlowEditor.tsx +491 -0
  1579. package/.forge/worktrees/pipeline-d59c2fe2/components/DeliveryList.tsx +230 -0
  1580. package/.forge/worktrees/pipeline-d59c2fe2/components/DeliveryWorkspace.tsx +589 -0
  1581. package/.forge/worktrees/pipeline-d59c2fe2/components/DocTerminal.tsx +187 -0
  1582. package/.forge/worktrees/pipeline-d59c2fe2/components/DocsViewer.tsx +574 -0
  1583. package/.forge/worktrees/pipeline-d59c2fe2/components/HelpDialog.tsx +169 -0
  1584. package/.forge/worktrees/pipeline-d59c2fe2/components/HelpTerminal.tsx +141 -0
  1585. package/.forge/worktrees/pipeline-d59c2fe2/components/InlinePipelineView.tsx +111 -0
  1586. package/.forge/worktrees/pipeline-d59c2fe2/components/LogViewer.tsx +194 -0
  1587. package/.forge/worktrees/pipeline-d59c2fe2/components/MarkdownContent.tsx +73 -0
  1588. package/.forge/worktrees/pipeline-d59c2fe2/components/MobileView.tsx +385 -0
  1589. package/.forge/worktrees/pipeline-d59c2fe2/components/MonitorPanel.tsx +122 -0
  1590. package/.forge/worktrees/pipeline-d59c2fe2/components/NewSessionModal.tsx +93 -0
  1591. package/.forge/worktrees/pipeline-d59c2fe2/components/NewTaskModal.tsx +492 -0
  1592. package/.forge/worktrees/pipeline-d59c2fe2/components/PipelineEditor.tsx +570 -0
  1593. package/.forge/worktrees/pipeline-d59c2fe2/components/PipelineView.tsx +1018 -0
  1594. package/.forge/worktrees/pipeline-d59c2fe2/components/PluginsPanel.tsx +472 -0
  1595. package/.forge/worktrees/pipeline-d59c2fe2/components/ProjectDetail.tsx +1618 -0
  1596. package/.forge/worktrees/pipeline-d59c2fe2/components/ProjectList.tsx +108 -0
  1597. package/.forge/worktrees/pipeline-d59c2fe2/components/ProjectManager.tsx +401 -0
  1598. package/.forge/worktrees/pipeline-d59c2fe2/components/SessionList.tsx +74 -0
  1599. package/.forge/worktrees/pipeline-d59c2fe2/components/SessionView.tsx +726 -0
  1600. package/.forge/worktrees/pipeline-d59c2fe2/components/SettingsModal.tsx +1647 -0
  1601. package/.forge/worktrees/pipeline-d59c2fe2/components/SkillsPanel.tsx +969 -0
  1602. package/.forge/worktrees/pipeline-d59c2fe2/components/StatusBar.tsx +99 -0
  1603. package/.forge/worktrees/pipeline-d59c2fe2/components/TabBar.tsx +46 -0
  1604. package/.forge/worktrees/pipeline-d59c2fe2/components/TaskBoard.tsx +113 -0
  1605. package/.forge/worktrees/pipeline-d59c2fe2/components/TaskDetail.tsx +372 -0
  1606. package/.forge/worktrees/pipeline-d59c2fe2/components/TerminalLauncher.tsx +398 -0
  1607. package/.forge/worktrees/pipeline-d59c2fe2/components/TunnelToggle.tsx +206 -0
  1608. package/.forge/worktrees/pipeline-d59c2fe2/components/UsagePanel.tsx +207 -0
  1609. package/.forge/worktrees/pipeline-d59c2fe2/components/WebTerminal.tsx +1683 -0
  1610. package/.forge/worktrees/pipeline-d59c2fe2/components/WorkspaceTree.tsx +221 -0
  1611. package/.forge/worktrees/pipeline-d59c2fe2/components/WorkspaceView.tsx +4048 -0
  1612. package/.forge/worktrees/pipeline-d59c2fe2/dev-test.sh +5 -0
  1613. package/.forge/worktrees/pipeline-d59c2fe2/docs/Forge_Memory_Layer_Design.docx +0 -0
  1614. package/.forge/worktrees/pipeline-d59c2fe2/docs/Forge_Strategy_Research_2026.docx +0 -0
  1615. package/.forge/worktrees/pipeline-d59c2fe2/docs/LOCAL-DEPLOY.md +144 -0
  1616. package/.forge/worktrees/pipeline-d59c2fe2/docs/roadmap-multi-agent-workflow.md +330 -0
  1617. package/.forge/worktrees/pipeline-d59c2fe2/forge-logo.png +0 -0
  1618. package/.forge/worktrees/pipeline-d59c2fe2/forge-logo.svg +106 -0
  1619. package/.forge/worktrees/pipeline-d59c2fe2/hooks/useSidebarResize.ts +52 -0
  1620. package/.forge/worktrees/pipeline-d59c2fe2/install.sh +29 -0
  1621. package/.forge/worktrees/pipeline-d59c2fe2/instrumentation.ts +35 -0
  1622. package/.forge/worktrees/pipeline-d59c2fe2/lib/agents/claude-adapter.ts +104 -0
  1623. package/.forge/worktrees/pipeline-d59c2fe2/lib/agents/generic-adapter.ts +64 -0
  1624. package/.forge/worktrees/pipeline-d59c2fe2/lib/agents/index.ts +245 -0
  1625. package/.forge/worktrees/pipeline-d59c2fe2/lib/agents/types.ts +70 -0
  1626. package/.forge/worktrees/pipeline-d59c2fe2/lib/artifacts.ts +106 -0
  1627. package/.forge/worktrees/pipeline-d59c2fe2/lib/auth.ts +62 -0
  1628. package/.forge/worktrees/pipeline-d59c2fe2/lib/builtin-plugins/docker.yaml +70 -0
  1629. package/.forge/worktrees/pipeline-d59c2fe2/lib/builtin-plugins/http.yaml +66 -0
  1630. package/.forge/worktrees/pipeline-d59c2fe2/lib/builtin-plugins/jenkins.yaml +92 -0
  1631. package/.forge/worktrees/pipeline-d59c2fe2/lib/builtin-plugins/llm-vision.yaml +85 -0
  1632. package/.forge/worktrees/pipeline-d59c2fe2/lib/builtin-plugins/playwright.yaml +111 -0
  1633. package/.forge/worktrees/pipeline-d59c2fe2/lib/builtin-plugins/shell-command.yaml +60 -0
  1634. package/.forge/worktrees/pipeline-d59c2fe2/lib/builtin-plugins/slack.yaml +48 -0
  1635. package/.forge/worktrees/pipeline-d59c2fe2/lib/builtin-plugins/webhook.yaml +56 -0
  1636. package/.forge/worktrees/pipeline-d59c2fe2/lib/claude-process.ts +361 -0
  1637. package/.forge/worktrees/pipeline-d59c2fe2/lib/claude-sessions.ts +266 -0
  1638. package/.forge/worktrees/pipeline-d59c2fe2/lib/claude-templates.ts +227 -0
  1639. package/.forge/worktrees/pipeline-d59c2fe2/lib/cloudflared.ts +424 -0
  1640. package/.forge/worktrees/pipeline-d59c2fe2/lib/crypto.ts +67 -0
  1641. package/.forge/worktrees/pipeline-d59c2fe2/lib/delivery.ts +787 -0
  1642. package/.forge/worktrees/pipeline-d59c2fe2/lib/dirs.ts +99 -0
  1643. package/.forge/worktrees/pipeline-d59c2fe2/lib/flows.ts +86 -0
  1644. package/.forge/worktrees/pipeline-d59c2fe2/lib/forge-mcp-server.ts +717 -0
  1645. package/.forge/worktrees/pipeline-d59c2fe2/lib/forge-skills/forge-inbox.md +38 -0
  1646. package/.forge/worktrees/pipeline-d59c2fe2/lib/forge-skills/forge-send.md +47 -0
  1647. package/.forge/worktrees/pipeline-d59c2fe2/lib/forge-skills/forge-status.md +32 -0
  1648. package/.forge/worktrees/pipeline-d59c2fe2/lib/forge-skills/forge-workspace-sync.md +37 -0
  1649. package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/00-overview.md +40 -0
  1650. package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/01-settings.md +194 -0
  1651. package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/02-telegram.md +41 -0
  1652. package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/03-tunnel.md +31 -0
  1653. package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/04-tasks.md +52 -0
  1654. package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/05-pipelines.md +460 -0
  1655. package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/06-skills.md +43 -0
  1656. package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/07-projects.md +73 -0
  1657. package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/08-rules.md +53 -0
  1658. package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/09-issue-autofix.md +55 -0
  1659. package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/10-troubleshooting.md +89 -0
  1660. package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/11-workspace.md +810 -0
  1661. package/.forge/worktrees/pipeline-d59c2fe2/lib/help-docs/CLAUDE.md +62 -0
  1662. package/.forge/worktrees/pipeline-d59c2fe2/lib/init.ts +266 -0
  1663. package/.forge/worktrees/pipeline-d59c2fe2/lib/issue-scanner.ts +298 -0
  1664. package/.forge/worktrees/pipeline-d59c2fe2/lib/logger.ts +79 -0
  1665. package/.forge/worktrees/pipeline-d59c2fe2/lib/notifications.ts +75 -0
  1666. package/.forge/worktrees/pipeline-d59c2fe2/lib/notify.ts +108 -0
  1667. package/.forge/worktrees/pipeline-d59c2fe2/lib/password.ts +97 -0
  1668. package/.forge/worktrees/pipeline-d59c2fe2/lib/pipeline-scheduler.ts +373 -0
  1669. package/.forge/worktrees/pipeline-d59c2fe2/lib/pipeline.ts +1441 -0
  1670. package/.forge/worktrees/pipeline-d59c2fe2/lib/plugins/executor.ts +347 -0
  1671. package/.forge/worktrees/pipeline-d59c2fe2/lib/plugins/registry.ts +228 -0
  1672. package/.forge/worktrees/pipeline-d59c2fe2/lib/plugins/types.ts +103 -0
  1673. package/.forge/worktrees/pipeline-d59c2fe2/lib/project-sessions.ts +53 -0
  1674. package/.forge/worktrees/pipeline-d59c2fe2/lib/projects.ts +86 -0
  1675. package/.forge/worktrees/pipeline-d59c2fe2/lib/session-manager.ts +156 -0
  1676. package/.forge/worktrees/pipeline-d59c2fe2/lib/session-utils.ts +53 -0
  1677. package/.forge/worktrees/pipeline-d59c2fe2/lib/session-watcher.ts +345 -0
  1678. package/.forge/worktrees/pipeline-d59c2fe2/lib/settings.ts +195 -0
  1679. package/.forge/worktrees/pipeline-d59c2fe2/lib/skills.ts +458 -0
  1680. package/.forge/worktrees/pipeline-d59c2fe2/lib/task-manager.ts +949 -0
  1681. package/.forge/worktrees/pipeline-d59c2fe2/lib/telegram-bot.ts +1477 -0
  1682. package/.forge/worktrees/pipeline-d59c2fe2/lib/telegram-standalone.ts +83 -0
  1683. package/.forge/worktrees/pipeline-d59c2fe2/lib/terminal-server.ts +70 -0
  1684. package/.forge/worktrees/pipeline-d59c2fe2/lib/terminal-standalone.ts +421 -0
  1685. package/.forge/worktrees/pipeline-d59c2fe2/lib/usage-scanner.ts +249 -0
  1686. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/__tests__/state-machine.test.ts +388 -0
  1687. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/__tests__/workspace.test.ts +311 -0
  1688. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/agent-bus.ts +416 -0
  1689. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/agent-worker.ts +655 -0
  1690. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/backends/api-backend.ts +262 -0
  1691. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/backends/cli-backend.ts +491 -0
  1692. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/index.ts +82 -0
  1693. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/manager.ts +136 -0
  1694. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/orchestrator.ts +3400 -0
  1695. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/persistence.ts +309 -0
  1696. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/presets.ts +649 -0
  1697. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/requests.ts +287 -0
  1698. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/session-monitor.ts +240 -0
  1699. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/skill-installer.ts +275 -0
  1700. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/smith-memory.ts +498 -0
  1701. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/types.ts +241 -0
  1702. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace/watch-manager.ts +560 -0
  1703. package/.forge/worktrees/pipeline-d59c2fe2/lib/workspace-standalone.ts +911 -0
  1704. package/.forge/worktrees/pipeline-d59c2fe2/middleware.ts +51 -0
  1705. package/.forge/worktrees/pipeline-d59c2fe2/next.config.ts +26 -0
  1706. package/.forge/worktrees/pipeline-d59c2fe2/package.json +74 -0
  1707. package/.forge/worktrees/pipeline-d59c2fe2/pnpm-lock.yaml +3719 -0
  1708. package/.forge/worktrees/pipeline-d59c2fe2/pnpm-workspace.yaml +1 -0
  1709. package/.forge/worktrees/pipeline-d59c2fe2/postcss.config.mjs +7 -0
  1710. package/.forge/worktrees/pipeline-d59c2fe2/publish.sh +133 -0
  1711. package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/README.md +66 -0
  1712. package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/results/.gitignore +2 -0
  1713. package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/run.ts +635 -0
  1714. package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/tasks/01-text-utils/task.md +26 -0
  1715. package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
  1716. package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/tasks/02-pagination/setup.sh +19 -0
  1717. package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/tasks/02-pagination/task.md +48 -0
  1718. package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/tasks/02-pagination/validator.sh +69 -0
  1719. package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
  1720. package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/tasks/03-bug-fix/task.md +30 -0
  1721. package/.forge/worktrees/pipeline-d59c2fe2/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
  1722. package/.forge/worktrees/pipeline-d59c2fe2/scripts/verify-usage.ts +178 -0
  1723. package/.forge/worktrees/pipeline-d59c2fe2/src/config/index.ts +129 -0
  1724. package/.forge/worktrees/pipeline-d59c2fe2/src/core/db/database.ts +259 -0
  1725. package/.forge/worktrees/pipeline-d59c2fe2/src/core/memory/strategy.ts +32 -0
  1726. package/.forge/worktrees/pipeline-d59c2fe2/src/core/providers/chat.ts +65 -0
  1727. package/.forge/worktrees/pipeline-d59c2fe2/src/core/providers/registry.ts +60 -0
  1728. package/.forge/worktrees/pipeline-d59c2fe2/src/core/session/manager.ts +190 -0
  1729. package/.forge/worktrees/pipeline-d59c2fe2/src/types/index.ts +129 -0
  1730. package/.forge/worktrees/pipeline-d59c2fe2/start.sh +31 -0
  1731. package/.forge/worktrees/pipeline-d59c2fe2/templates/smith-lead.json +45 -0
  1732. package/.forge/worktrees/pipeline-d59c2fe2/tsconfig.json +42 -0
  1733. package/.forge/worktrees/pipeline-d6a6ef23/CLAUDE.md +86 -0
  1734. package/.forge/worktrees/pipeline-d6a6ef23/README.md +136 -0
  1735. package/.forge/worktrees/pipeline-d6a6ef23/RELEASE_NOTES.md +11 -0
  1736. package/.forge/worktrees/pipeline-d6a6ef23/app/api/agents/route.ts +17 -0
  1737. package/.forge/worktrees/pipeline-d6a6ef23/app/api/auth/[...nextauth]/route.ts +3 -0
  1738. package/.forge/worktrees/pipeline-d6a6ef23/app/api/auth/verify/route.ts +46 -0
  1739. package/.forge/worktrees/pipeline-d6a6ef23/app/api/claude/[id]/route.ts +31 -0
  1740. package/.forge/worktrees/pipeline-d6a6ef23/app/api/claude/[id]/stream/route.ts +63 -0
  1741. package/.forge/worktrees/pipeline-d6a6ef23/app/api/claude/route.ts +28 -0
  1742. package/.forge/worktrees/pipeline-d6a6ef23/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
  1743. package/.forge/worktrees/pipeline-d6a6ef23/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
  1744. package/.forge/worktrees/pipeline-d6a6ef23/app/api/claude-sessions/[projectName]/route.ts +37 -0
  1745. package/.forge/worktrees/pipeline-d6a6ef23/app/api/claude-sessions/sync/route.ts +17 -0
  1746. package/.forge/worktrees/pipeline-d6a6ef23/app/api/claude-templates/route.ts +145 -0
  1747. package/.forge/worktrees/pipeline-d6a6ef23/app/api/code/route.ts +299 -0
  1748. package/.forge/worktrees/pipeline-d6a6ef23/app/api/delivery/[id]/route.ts +62 -0
  1749. package/.forge/worktrees/pipeline-d6a6ef23/app/api/delivery/route.ts +40 -0
  1750. package/.forge/worktrees/pipeline-d6a6ef23/app/api/detect-cli/route.ts +46 -0
  1751. package/.forge/worktrees/pipeline-d6a6ef23/app/api/docs/route.ts +176 -0
  1752. package/.forge/worktrees/pipeline-d6a6ef23/app/api/docs/sessions/route.ts +54 -0
  1753. package/.forge/worktrees/pipeline-d6a6ef23/app/api/favorites/route.ts +26 -0
  1754. package/.forge/worktrees/pipeline-d6a6ef23/app/api/flows/route.ts +6 -0
  1755. package/.forge/worktrees/pipeline-d6a6ef23/app/api/flows/run/route.ts +19 -0
  1756. package/.forge/worktrees/pipeline-d6a6ef23/app/api/git/route.ts +149 -0
  1757. package/.forge/worktrees/pipeline-d6a6ef23/app/api/help/route.ts +84 -0
  1758. package/.forge/worktrees/pipeline-d6a6ef23/app/api/issue-scanner/route.ts +116 -0
  1759. package/.forge/worktrees/pipeline-d6a6ef23/app/api/logs/route.ts +100 -0
  1760. package/.forge/worktrees/pipeline-d6a6ef23/app/api/mobile-chat/route.ts +115 -0
  1761. package/.forge/worktrees/pipeline-d6a6ef23/app/api/monitor/route.ts +74 -0
  1762. package/.forge/worktrees/pipeline-d6a6ef23/app/api/notifications/route.ts +42 -0
  1763. package/.forge/worktrees/pipeline-d6a6ef23/app/api/notify/test/route.ts +33 -0
  1764. package/.forge/worktrees/pipeline-d6a6ef23/app/api/online/route.ts +40 -0
  1765. package/.forge/worktrees/pipeline-d6a6ef23/app/api/pipelines/[id]/route.ts +41 -0
  1766. package/.forge/worktrees/pipeline-d6a6ef23/app/api/pipelines/route.ts +90 -0
  1767. package/.forge/worktrees/pipeline-d6a6ef23/app/api/plugins/route.ts +75 -0
  1768. package/.forge/worktrees/pipeline-d6a6ef23/app/api/preview/[...path]/route.ts +64 -0
  1769. package/.forge/worktrees/pipeline-d6a6ef23/app/api/preview/route.ts +156 -0
  1770. package/.forge/worktrees/pipeline-d6a6ef23/app/api/project-pipelines/route.ts +91 -0
  1771. package/.forge/worktrees/pipeline-d6a6ef23/app/api/project-sessions/route.ts +61 -0
  1772. package/.forge/worktrees/pipeline-d6a6ef23/app/api/projects/route.ts +26 -0
  1773. package/.forge/worktrees/pipeline-d6a6ef23/app/api/sessions/[id]/chat/route.ts +64 -0
  1774. package/.forge/worktrees/pipeline-d6a6ef23/app/api/sessions/[id]/messages/route.ts +9 -0
  1775. package/.forge/worktrees/pipeline-d6a6ef23/app/api/sessions/[id]/route.ts +17 -0
  1776. package/.forge/worktrees/pipeline-d6a6ef23/app/api/sessions/route.ts +20 -0
  1777. package/.forge/worktrees/pipeline-d6a6ef23/app/api/settings/route.ts +64 -0
  1778. package/.forge/worktrees/pipeline-d6a6ef23/app/api/skills/local/route.ts +228 -0
  1779. package/.forge/worktrees/pipeline-d6a6ef23/app/api/skills/route.ts +182 -0
  1780. package/.forge/worktrees/pipeline-d6a6ef23/app/api/smith-templates/route.ts +81 -0
  1781. package/.forge/worktrees/pipeline-d6a6ef23/app/api/status/route.ts +12 -0
  1782. package/.forge/worktrees/pipeline-d6a6ef23/app/api/tabs/route.ts +25 -0
  1783. package/.forge/worktrees/pipeline-d6a6ef23/app/api/tasks/[id]/route.ts +51 -0
  1784. package/.forge/worktrees/pipeline-d6a6ef23/app/api/tasks/[id]/stream/route.ts +77 -0
  1785. package/.forge/worktrees/pipeline-d6a6ef23/app/api/tasks/link/route.ts +37 -0
  1786. package/.forge/worktrees/pipeline-d6a6ef23/app/api/tasks/route.ts +44 -0
  1787. package/.forge/worktrees/pipeline-d6a6ef23/app/api/tasks/session/route.ts +14 -0
  1788. package/.forge/worktrees/pipeline-d6a6ef23/app/api/telegram/route.ts +23 -0
  1789. package/.forge/worktrees/pipeline-d6a6ef23/app/api/templates/route.ts +6 -0
  1790. package/.forge/worktrees/pipeline-d6a6ef23/app/api/terminal-bell/route.ts +35 -0
  1791. package/.forge/worktrees/pipeline-d6a6ef23/app/api/terminal-cwd/route.ts +19 -0
  1792. package/.forge/worktrees/pipeline-d6a6ef23/app/api/terminal-state/route.ts +15 -0
  1793. package/.forge/worktrees/pipeline-d6a6ef23/app/api/tunnel/route.ts +26 -0
  1794. package/.forge/worktrees/pipeline-d6a6ef23/app/api/upgrade/route.ts +43 -0
  1795. package/.forge/worktrees/pipeline-d6a6ef23/app/api/usage/route.ts +20 -0
  1796. package/.forge/worktrees/pipeline-d6a6ef23/app/api/version/route.ts +78 -0
  1797. package/.forge/worktrees/pipeline-d6a6ef23/app/api/watchers/route.ts +33 -0
  1798. package/.forge/worktrees/pipeline-d6a6ef23/app/api/workspace/[id]/agents/route.ts +35 -0
  1799. package/.forge/worktrees/pipeline-d6a6ef23/app/api/workspace/[id]/memory/route.ts +23 -0
  1800. package/.forge/worktrees/pipeline-d6a6ef23/app/api/workspace/[id]/smith/route.ts +22 -0
  1801. package/.forge/worktrees/pipeline-d6a6ef23/app/api/workspace/[id]/stream/route.ts +28 -0
  1802. package/.forge/worktrees/pipeline-d6a6ef23/app/api/workspace/route.ts +100 -0
  1803. package/.forge/worktrees/pipeline-d6a6ef23/app/global-error.tsx +21 -0
  1804. package/.forge/worktrees/pipeline-d6a6ef23/app/globals.css +52 -0
  1805. package/.forge/worktrees/pipeline-d6a6ef23/app/icon.ico +0 -0
  1806. package/.forge/worktrees/pipeline-d6a6ef23/app/icon.png +0 -0
  1807. package/.forge/worktrees/pipeline-d6a6ef23/app/icon.svg +106 -0
  1808. package/.forge/worktrees/pipeline-d6a6ef23/app/layout.tsx +17 -0
  1809. package/.forge/worktrees/pipeline-d6a6ef23/app/login/LoginForm.tsx +96 -0
  1810. package/.forge/worktrees/pipeline-d6a6ef23/app/login/page.tsx +10 -0
  1811. package/.forge/worktrees/pipeline-d6a6ef23/app/mobile/page.tsx +9 -0
  1812. package/.forge/worktrees/pipeline-d6a6ef23/app/page.tsx +21 -0
  1813. package/.forge/worktrees/pipeline-d6a6ef23/bin/forge-server.mjs +484 -0
  1814. package/.forge/worktrees/pipeline-d6a6ef23/check-forge-status.sh +71 -0
  1815. package/.forge/worktrees/pipeline-d6a6ef23/cli/mw.ts +579 -0
  1816. package/.forge/worktrees/pipeline-d6a6ef23/components/BrowserPanel.tsx +175 -0
  1817. package/.forge/worktrees/pipeline-d6a6ef23/components/ChatPanel.tsx +191 -0
  1818. package/.forge/worktrees/pipeline-d6a6ef23/components/ClaudeTerminal.tsx +267 -0
  1819. package/.forge/worktrees/pipeline-d6a6ef23/components/CodeViewer.tsx +787 -0
  1820. package/.forge/worktrees/pipeline-d6a6ef23/components/ConversationEditor.tsx +411 -0
  1821. package/.forge/worktrees/pipeline-d6a6ef23/components/ConversationGraphView.tsx +347 -0
  1822. package/.forge/worktrees/pipeline-d6a6ef23/components/ConversationTerminalView.tsx +303 -0
  1823. package/.forge/worktrees/pipeline-d6a6ef23/components/Dashboard.tsx +807 -0
  1824. package/.forge/worktrees/pipeline-d6a6ef23/components/DashboardWrapper.tsx +9 -0
  1825. package/.forge/worktrees/pipeline-d6a6ef23/components/DeliveryFlowEditor.tsx +491 -0
  1826. package/.forge/worktrees/pipeline-d6a6ef23/components/DeliveryList.tsx +230 -0
  1827. package/.forge/worktrees/pipeline-d6a6ef23/components/DeliveryWorkspace.tsx +589 -0
  1828. package/.forge/worktrees/pipeline-d6a6ef23/components/DocTerminal.tsx +187 -0
  1829. package/.forge/worktrees/pipeline-d6a6ef23/components/DocsViewer.tsx +574 -0
  1830. package/.forge/worktrees/pipeline-d6a6ef23/components/HelpDialog.tsx +169 -0
  1831. package/.forge/worktrees/pipeline-d6a6ef23/components/HelpTerminal.tsx +141 -0
  1832. package/.forge/worktrees/pipeline-d6a6ef23/components/InlinePipelineView.tsx +111 -0
  1833. package/.forge/worktrees/pipeline-d6a6ef23/components/LogViewer.tsx +194 -0
  1834. package/.forge/worktrees/pipeline-d6a6ef23/components/MarkdownContent.tsx +73 -0
  1835. package/.forge/worktrees/pipeline-d6a6ef23/components/MobileView.tsx +385 -0
  1836. package/.forge/worktrees/pipeline-d6a6ef23/components/MonitorPanel.tsx +122 -0
  1837. package/.forge/worktrees/pipeline-d6a6ef23/components/NewSessionModal.tsx +93 -0
  1838. package/.forge/worktrees/pipeline-d6a6ef23/components/NewTaskModal.tsx +492 -0
  1839. package/.forge/worktrees/pipeline-d6a6ef23/components/PipelineEditor.tsx +570 -0
  1840. package/.forge/worktrees/pipeline-d6a6ef23/components/PipelineView.tsx +1018 -0
  1841. package/.forge/worktrees/pipeline-d6a6ef23/components/PluginsPanel.tsx +472 -0
  1842. package/.forge/worktrees/pipeline-d6a6ef23/components/ProjectDetail.tsx +1618 -0
  1843. package/.forge/worktrees/pipeline-d6a6ef23/components/ProjectList.tsx +108 -0
  1844. package/.forge/worktrees/pipeline-d6a6ef23/components/ProjectManager.tsx +401 -0
  1845. package/.forge/worktrees/pipeline-d6a6ef23/components/SessionList.tsx +74 -0
  1846. package/.forge/worktrees/pipeline-d6a6ef23/components/SessionView.tsx +726 -0
  1847. package/.forge/worktrees/pipeline-d6a6ef23/components/SettingsModal.tsx +1647 -0
  1848. package/.forge/worktrees/pipeline-d6a6ef23/components/SkillsPanel.tsx +969 -0
  1849. package/.forge/worktrees/pipeline-d6a6ef23/components/StatusBar.tsx +99 -0
  1850. package/.forge/worktrees/pipeline-d6a6ef23/components/TabBar.tsx +46 -0
  1851. package/.forge/worktrees/pipeline-d6a6ef23/components/TaskBoard.tsx +113 -0
  1852. package/.forge/worktrees/pipeline-d6a6ef23/components/TaskDetail.tsx +372 -0
  1853. package/.forge/worktrees/pipeline-d6a6ef23/components/TerminalLauncher.tsx +398 -0
  1854. package/.forge/worktrees/pipeline-d6a6ef23/components/TunnelToggle.tsx +206 -0
  1855. package/.forge/worktrees/pipeline-d6a6ef23/components/UsagePanel.tsx +207 -0
  1856. package/.forge/worktrees/pipeline-d6a6ef23/components/WebTerminal.tsx +1683 -0
  1857. package/.forge/worktrees/pipeline-d6a6ef23/components/WorkspaceTree.tsx +221 -0
  1858. package/.forge/worktrees/pipeline-d6a6ef23/components/WorkspaceView.tsx +4048 -0
  1859. package/.forge/worktrees/pipeline-d6a6ef23/dev-test.sh +5 -0
  1860. package/.forge/worktrees/pipeline-d6a6ef23/docs/Forge_Memory_Layer_Design.docx +0 -0
  1861. package/.forge/worktrees/pipeline-d6a6ef23/docs/Forge_Strategy_Research_2026.docx +0 -0
  1862. package/.forge/worktrees/pipeline-d6a6ef23/docs/LOCAL-DEPLOY.md +144 -0
  1863. package/.forge/worktrees/pipeline-d6a6ef23/docs/roadmap-multi-agent-workflow.md +330 -0
  1864. package/.forge/worktrees/pipeline-d6a6ef23/forge-logo.png +0 -0
  1865. package/.forge/worktrees/pipeline-d6a6ef23/forge-logo.svg +106 -0
  1866. package/.forge/worktrees/pipeline-d6a6ef23/hooks/useSidebarResize.ts +52 -0
  1867. package/.forge/worktrees/pipeline-d6a6ef23/install.sh +29 -0
  1868. package/.forge/worktrees/pipeline-d6a6ef23/instrumentation.ts +35 -0
  1869. package/.forge/worktrees/pipeline-d6a6ef23/lib/agents/claude-adapter.ts +104 -0
  1870. package/.forge/worktrees/pipeline-d6a6ef23/lib/agents/generic-adapter.ts +64 -0
  1871. package/.forge/worktrees/pipeline-d6a6ef23/lib/agents/index.ts +245 -0
  1872. package/.forge/worktrees/pipeline-d6a6ef23/lib/agents/types.ts +70 -0
  1873. package/.forge/worktrees/pipeline-d6a6ef23/lib/artifacts.ts +106 -0
  1874. package/.forge/worktrees/pipeline-d6a6ef23/lib/auth.ts +62 -0
  1875. package/.forge/worktrees/pipeline-d6a6ef23/lib/builtin-plugins/docker.yaml +70 -0
  1876. package/.forge/worktrees/pipeline-d6a6ef23/lib/builtin-plugins/http.yaml +66 -0
  1877. package/.forge/worktrees/pipeline-d6a6ef23/lib/builtin-plugins/jenkins.yaml +92 -0
  1878. package/.forge/worktrees/pipeline-d6a6ef23/lib/builtin-plugins/llm-vision.yaml +85 -0
  1879. package/.forge/worktrees/pipeline-d6a6ef23/lib/builtin-plugins/playwright.yaml +111 -0
  1880. package/.forge/worktrees/pipeline-d6a6ef23/lib/builtin-plugins/shell-command.yaml +60 -0
  1881. package/.forge/worktrees/pipeline-d6a6ef23/lib/builtin-plugins/slack.yaml +48 -0
  1882. package/.forge/worktrees/pipeline-d6a6ef23/lib/builtin-plugins/webhook.yaml +56 -0
  1883. package/.forge/worktrees/pipeline-d6a6ef23/lib/claude-process.ts +352 -0
  1884. package/.forge/worktrees/pipeline-d6a6ef23/lib/claude-sessions.ts +266 -0
  1885. package/.forge/worktrees/pipeline-d6a6ef23/lib/claude-templates.ts +227 -0
  1886. package/.forge/worktrees/pipeline-d6a6ef23/lib/cloudflared.ts +424 -0
  1887. package/.forge/worktrees/pipeline-d6a6ef23/lib/crypto.ts +67 -0
  1888. package/.forge/worktrees/pipeline-d6a6ef23/lib/delivery.ts +787 -0
  1889. package/.forge/worktrees/pipeline-d6a6ef23/lib/dirs.ts +99 -0
  1890. package/.forge/worktrees/pipeline-d6a6ef23/lib/flows.ts +86 -0
  1891. package/.forge/worktrees/pipeline-d6a6ef23/lib/forge-mcp-server.ts +717 -0
  1892. package/.forge/worktrees/pipeline-d6a6ef23/lib/forge-skills/forge-inbox.md +38 -0
  1893. package/.forge/worktrees/pipeline-d6a6ef23/lib/forge-skills/forge-send.md +47 -0
  1894. package/.forge/worktrees/pipeline-d6a6ef23/lib/forge-skills/forge-status.md +32 -0
  1895. package/.forge/worktrees/pipeline-d6a6ef23/lib/forge-skills/forge-workspace-sync.md +37 -0
  1896. package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/00-overview.md +40 -0
  1897. package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/01-settings.md +194 -0
  1898. package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/02-telegram.md +41 -0
  1899. package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/03-tunnel.md +31 -0
  1900. package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/04-tasks.md +52 -0
  1901. package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/05-pipelines.md +460 -0
  1902. package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/06-skills.md +43 -0
  1903. package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/07-projects.md +73 -0
  1904. package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/08-rules.md +53 -0
  1905. package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/09-issue-autofix.md +55 -0
  1906. package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/10-troubleshooting.md +89 -0
  1907. package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/11-workspace.md +810 -0
  1908. package/.forge/worktrees/pipeline-d6a6ef23/lib/help-docs/CLAUDE.md +62 -0
  1909. package/.forge/worktrees/pipeline-d6a6ef23/lib/init.ts +266 -0
  1910. package/.forge/worktrees/pipeline-d6a6ef23/lib/issue-scanner.ts +298 -0
  1911. package/.forge/worktrees/pipeline-d6a6ef23/lib/logger.ts +79 -0
  1912. package/.forge/worktrees/pipeline-d6a6ef23/lib/notifications.ts +75 -0
  1913. package/.forge/worktrees/pipeline-d6a6ef23/lib/notify.ts +108 -0
  1914. package/.forge/worktrees/pipeline-d6a6ef23/lib/password.ts +97 -0
  1915. package/.forge/worktrees/pipeline-d6a6ef23/lib/pipeline-scheduler.ts +373 -0
  1916. package/.forge/worktrees/pipeline-d6a6ef23/lib/pipeline.ts +1438 -0
  1917. package/.forge/worktrees/pipeline-d6a6ef23/lib/plugins/executor.ts +347 -0
  1918. package/.forge/worktrees/pipeline-d6a6ef23/lib/plugins/registry.ts +228 -0
  1919. package/.forge/worktrees/pipeline-d6a6ef23/lib/plugins/types.ts +103 -0
  1920. package/.forge/worktrees/pipeline-d6a6ef23/lib/project-sessions.ts +53 -0
  1921. package/.forge/worktrees/pipeline-d6a6ef23/lib/projects.ts +86 -0
  1922. package/.forge/worktrees/pipeline-d6a6ef23/lib/session-manager.ts +156 -0
  1923. package/.forge/worktrees/pipeline-d6a6ef23/lib/session-utils.ts +53 -0
  1924. package/.forge/worktrees/pipeline-d6a6ef23/lib/session-watcher.ts +345 -0
  1925. package/.forge/worktrees/pipeline-d6a6ef23/lib/settings.ts +195 -0
  1926. package/.forge/worktrees/pipeline-d6a6ef23/lib/skills.ts +458 -0
  1927. package/.forge/worktrees/pipeline-d6a6ef23/lib/task-manager.ts +949 -0
  1928. package/.forge/worktrees/pipeline-d6a6ef23/lib/telegram-bot.ts +1477 -0
  1929. package/.forge/worktrees/pipeline-d6a6ef23/lib/telegram-standalone.ts +83 -0
  1930. package/.forge/worktrees/pipeline-d6a6ef23/lib/terminal-server.ts +70 -0
  1931. package/.forge/worktrees/pipeline-d6a6ef23/lib/terminal-standalone.ts +421 -0
  1932. package/.forge/worktrees/pipeline-d6a6ef23/lib/usage-scanner.ts +249 -0
  1933. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/__tests__/state-machine.test.ts +388 -0
  1934. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/__tests__/workspace.test.ts +311 -0
  1935. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/agent-bus.ts +416 -0
  1936. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/agent-worker.ts +655 -0
  1937. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/backends/api-backend.ts +262 -0
  1938. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/backends/cli-backend.ts +491 -0
  1939. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/index.ts +82 -0
  1940. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/manager.ts +136 -0
  1941. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/orchestrator.ts +3400 -0
  1942. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/persistence.ts +309 -0
  1943. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/presets.ts +649 -0
  1944. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/requests.ts +287 -0
  1945. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/session-monitor.ts +240 -0
  1946. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/skill-installer.ts +275 -0
  1947. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/smith-memory.ts +498 -0
  1948. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/types.ts +241 -0
  1949. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace/watch-manager.ts +560 -0
  1950. package/.forge/worktrees/pipeline-d6a6ef23/lib/workspace-standalone.ts +911 -0
  1951. package/.forge/worktrees/pipeline-d6a6ef23/middleware.ts +51 -0
  1952. package/.forge/worktrees/pipeline-d6a6ef23/next.config.ts +26 -0
  1953. package/.forge/worktrees/pipeline-d6a6ef23/package.json +74 -0
  1954. package/.forge/worktrees/pipeline-d6a6ef23/pnpm-lock.yaml +3719 -0
  1955. package/.forge/worktrees/pipeline-d6a6ef23/pnpm-workspace.yaml +1 -0
  1956. package/.forge/worktrees/pipeline-d6a6ef23/postcss.config.mjs +7 -0
  1957. package/.forge/worktrees/pipeline-d6a6ef23/publish.sh +133 -0
  1958. package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/README.md +66 -0
  1959. package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/results/.gitignore +2 -0
  1960. package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/run.ts +635 -0
  1961. package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/tasks/01-text-utils/task.md +26 -0
  1962. package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
  1963. package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/tasks/02-pagination/setup.sh +19 -0
  1964. package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/tasks/02-pagination/task.md +48 -0
  1965. package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/tasks/02-pagination/validator.sh +69 -0
  1966. package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
  1967. package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/tasks/03-bug-fix/task.md +30 -0
  1968. package/.forge/worktrees/pipeline-d6a6ef23/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
  1969. package/.forge/worktrees/pipeline-d6a6ef23/scripts/verify-usage.ts +178 -0
  1970. package/.forge/worktrees/pipeline-d6a6ef23/src/config/index.ts +129 -0
  1971. package/.forge/worktrees/pipeline-d6a6ef23/src/core/db/database.ts +259 -0
  1972. package/.forge/worktrees/pipeline-d6a6ef23/src/core/memory/strategy.ts +32 -0
  1973. package/.forge/worktrees/pipeline-d6a6ef23/src/core/providers/chat.ts +65 -0
  1974. package/.forge/worktrees/pipeline-d6a6ef23/src/core/providers/registry.ts +60 -0
  1975. package/.forge/worktrees/pipeline-d6a6ef23/src/core/session/manager.ts +190 -0
  1976. package/.forge/worktrees/pipeline-d6a6ef23/src/types/index.ts +129 -0
  1977. package/.forge/worktrees/pipeline-d6a6ef23/start.sh +31 -0
  1978. package/.forge/worktrees/pipeline-d6a6ef23/templates/smith-lead.json +45 -0
  1979. package/.forge/worktrees/pipeline-d6a6ef23/tsconfig.json +42 -0
  1980. package/.forge/worktrees/pipeline-e7f78b7a/CLAUDE.md +86 -0
  1981. package/.forge/worktrees/pipeline-e7f78b7a/README.md +136 -0
  1982. package/.forge/worktrees/pipeline-e7f78b7a/RELEASE_NOTES.md +11 -0
  1983. package/.forge/worktrees/pipeline-e7f78b7a/app/api/agents/route.ts +17 -0
  1984. package/.forge/worktrees/pipeline-e7f78b7a/app/api/auth/[...nextauth]/route.ts +3 -0
  1985. package/.forge/worktrees/pipeline-e7f78b7a/app/api/auth/verify/route.ts +46 -0
  1986. package/.forge/worktrees/pipeline-e7f78b7a/app/api/claude/[id]/route.ts +31 -0
  1987. package/.forge/worktrees/pipeline-e7f78b7a/app/api/claude/[id]/stream/route.ts +63 -0
  1988. package/.forge/worktrees/pipeline-e7f78b7a/app/api/claude/route.ts +28 -0
  1989. package/.forge/worktrees/pipeline-e7f78b7a/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
  1990. package/.forge/worktrees/pipeline-e7f78b7a/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
  1991. package/.forge/worktrees/pipeline-e7f78b7a/app/api/claude-sessions/[projectName]/route.ts +37 -0
  1992. package/.forge/worktrees/pipeline-e7f78b7a/app/api/claude-sessions/sync/route.ts +17 -0
  1993. package/.forge/worktrees/pipeline-e7f78b7a/app/api/claude-templates/route.ts +145 -0
  1994. package/.forge/worktrees/pipeline-e7f78b7a/app/api/code/route.ts +299 -0
  1995. package/.forge/worktrees/pipeline-e7f78b7a/app/api/delivery/[id]/route.ts +62 -0
  1996. package/.forge/worktrees/pipeline-e7f78b7a/app/api/delivery/route.ts +40 -0
  1997. package/.forge/worktrees/pipeline-e7f78b7a/app/api/detect-cli/route.ts +46 -0
  1998. package/.forge/worktrees/pipeline-e7f78b7a/app/api/docs/route.ts +176 -0
  1999. package/.forge/worktrees/pipeline-e7f78b7a/app/api/docs/sessions/route.ts +54 -0
  2000. package/.forge/worktrees/pipeline-e7f78b7a/app/api/favorites/route.ts +26 -0
  2001. package/.forge/worktrees/pipeline-e7f78b7a/app/api/flows/route.ts +6 -0
  2002. package/.forge/worktrees/pipeline-e7f78b7a/app/api/flows/run/route.ts +19 -0
  2003. package/.forge/worktrees/pipeline-e7f78b7a/app/api/git/route.ts +149 -0
  2004. package/.forge/worktrees/pipeline-e7f78b7a/app/api/help/route.ts +84 -0
  2005. package/.forge/worktrees/pipeline-e7f78b7a/app/api/issue-scanner/route.ts +116 -0
  2006. package/.forge/worktrees/pipeline-e7f78b7a/app/api/logs/route.ts +100 -0
  2007. package/.forge/worktrees/pipeline-e7f78b7a/app/api/mobile-chat/route.ts +115 -0
  2008. package/.forge/worktrees/pipeline-e7f78b7a/app/api/monitor/route.ts +74 -0
  2009. package/.forge/worktrees/pipeline-e7f78b7a/app/api/notifications/route.ts +42 -0
  2010. package/.forge/worktrees/pipeline-e7f78b7a/app/api/notify/test/route.ts +33 -0
  2011. package/.forge/worktrees/pipeline-e7f78b7a/app/api/online/route.ts +40 -0
  2012. package/.forge/worktrees/pipeline-e7f78b7a/app/api/pipelines/[id]/route.ts +41 -0
  2013. package/.forge/worktrees/pipeline-e7f78b7a/app/api/pipelines/route.ts +90 -0
  2014. package/.forge/worktrees/pipeline-e7f78b7a/app/api/plugins/route.ts +75 -0
  2015. package/.forge/worktrees/pipeline-e7f78b7a/app/api/preview/[...path]/route.ts +64 -0
  2016. package/.forge/worktrees/pipeline-e7f78b7a/app/api/preview/route.ts +156 -0
  2017. package/.forge/worktrees/pipeline-e7f78b7a/app/api/project-pipelines/route.ts +91 -0
  2018. package/.forge/worktrees/pipeline-e7f78b7a/app/api/project-sessions/route.ts +61 -0
  2019. package/.forge/worktrees/pipeline-e7f78b7a/app/api/projects/route.ts +26 -0
  2020. package/.forge/worktrees/pipeline-e7f78b7a/app/api/sessions/[id]/chat/route.ts +64 -0
  2021. package/.forge/worktrees/pipeline-e7f78b7a/app/api/sessions/[id]/messages/route.ts +9 -0
  2022. package/.forge/worktrees/pipeline-e7f78b7a/app/api/sessions/[id]/route.ts +17 -0
  2023. package/.forge/worktrees/pipeline-e7f78b7a/app/api/sessions/route.ts +20 -0
  2024. package/.forge/worktrees/pipeline-e7f78b7a/app/api/settings/route.ts +64 -0
  2025. package/.forge/worktrees/pipeline-e7f78b7a/app/api/skills/local/route.ts +228 -0
  2026. package/.forge/worktrees/pipeline-e7f78b7a/app/api/skills/route.ts +182 -0
  2027. package/.forge/worktrees/pipeline-e7f78b7a/app/api/smith-templates/route.ts +81 -0
  2028. package/.forge/worktrees/pipeline-e7f78b7a/app/api/status/route.ts +12 -0
  2029. package/.forge/worktrees/pipeline-e7f78b7a/app/api/tabs/route.ts +25 -0
  2030. package/.forge/worktrees/pipeline-e7f78b7a/app/api/tasks/[id]/route.ts +51 -0
  2031. package/.forge/worktrees/pipeline-e7f78b7a/app/api/tasks/[id]/stream/route.ts +77 -0
  2032. package/.forge/worktrees/pipeline-e7f78b7a/app/api/tasks/link/route.ts +37 -0
  2033. package/.forge/worktrees/pipeline-e7f78b7a/app/api/tasks/route.ts +44 -0
  2034. package/.forge/worktrees/pipeline-e7f78b7a/app/api/tasks/session/route.ts +14 -0
  2035. package/.forge/worktrees/pipeline-e7f78b7a/app/api/telegram/route.ts +23 -0
  2036. package/.forge/worktrees/pipeline-e7f78b7a/app/api/templates/route.ts +6 -0
  2037. package/.forge/worktrees/pipeline-e7f78b7a/app/api/terminal-bell/route.ts +35 -0
  2038. package/.forge/worktrees/pipeline-e7f78b7a/app/api/terminal-cwd/route.ts +19 -0
  2039. package/.forge/worktrees/pipeline-e7f78b7a/app/api/terminal-state/route.ts +15 -0
  2040. package/.forge/worktrees/pipeline-e7f78b7a/app/api/tunnel/route.ts +26 -0
  2041. package/.forge/worktrees/pipeline-e7f78b7a/app/api/upgrade/route.ts +43 -0
  2042. package/.forge/worktrees/pipeline-e7f78b7a/app/api/usage/route.ts +20 -0
  2043. package/.forge/worktrees/pipeline-e7f78b7a/app/api/version/route.ts +78 -0
  2044. package/.forge/worktrees/pipeline-e7f78b7a/app/api/watchers/route.ts +33 -0
  2045. package/.forge/worktrees/pipeline-e7f78b7a/app/api/workspace/[id]/agents/route.ts +35 -0
  2046. package/.forge/worktrees/pipeline-e7f78b7a/app/api/workspace/[id]/memory/route.ts +23 -0
  2047. package/.forge/worktrees/pipeline-e7f78b7a/app/api/workspace/[id]/smith/route.ts +22 -0
  2048. package/.forge/worktrees/pipeline-e7f78b7a/app/api/workspace/[id]/stream/route.ts +28 -0
  2049. package/.forge/worktrees/pipeline-e7f78b7a/app/api/workspace/route.ts +100 -0
  2050. package/.forge/worktrees/pipeline-e7f78b7a/app/global-error.tsx +21 -0
  2051. package/.forge/worktrees/pipeline-e7f78b7a/app/globals.css +52 -0
  2052. package/.forge/worktrees/pipeline-e7f78b7a/app/icon.ico +0 -0
  2053. package/.forge/worktrees/pipeline-e7f78b7a/app/icon.png +0 -0
  2054. package/.forge/worktrees/pipeline-e7f78b7a/app/icon.svg +106 -0
  2055. package/.forge/worktrees/pipeline-e7f78b7a/app/layout.tsx +17 -0
  2056. package/.forge/worktrees/pipeline-e7f78b7a/app/login/LoginForm.tsx +96 -0
  2057. package/.forge/worktrees/pipeline-e7f78b7a/app/login/page.tsx +10 -0
  2058. package/.forge/worktrees/pipeline-e7f78b7a/app/mobile/page.tsx +9 -0
  2059. package/.forge/worktrees/pipeline-e7f78b7a/app/page.tsx +21 -0
  2060. package/.forge/worktrees/pipeline-e7f78b7a/bin/forge-server.mjs +484 -0
  2061. package/.forge/worktrees/pipeline-e7f78b7a/check-forge-status.sh +71 -0
  2062. package/.forge/worktrees/pipeline-e7f78b7a/cli/mw.ts +579 -0
  2063. package/.forge/worktrees/pipeline-e7f78b7a/components/BrowserPanel.tsx +175 -0
  2064. package/.forge/worktrees/pipeline-e7f78b7a/components/ChatPanel.tsx +191 -0
  2065. package/.forge/worktrees/pipeline-e7f78b7a/components/ClaudeTerminal.tsx +267 -0
  2066. package/.forge/worktrees/pipeline-e7f78b7a/components/CodeViewer.tsx +787 -0
  2067. package/.forge/worktrees/pipeline-e7f78b7a/components/ConversationEditor.tsx +411 -0
  2068. package/.forge/worktrees/pipeline-e7f78b7a/components/ConversationGraphView.tsx +347 -0
  2069. package/.forge/worktrees/pipeline-e7f78b7a/components/ConversationTerminalView.tsx +303 -0
  2070. package/.forge/worktrees/pipeline-e7f78b7a/components/Dashboard.tsx +807 -0
  2071. package/.forge/worktrees/pipeline-e7f78b7a/components/DashboardWrapper.tsx +9 -0
  2072. package/.forge/worktrees/pipeline-e7f78b7a/components/DeliveryFlowEditor.tsx +491 -0
  2073. package/.forge/worktrees/pipeline-e7f78b7a/components/DeliveryList.tsx +230 -0
  2074. package/.forge/worktrees/pipeline-e7f78b7a/components/DeliveryWorkspace.tsx +589 -0
  2075. package/.forge/worktrees/pipeline-e7f78b7a/components/DocTerminal.tsx +187 -0
  2076. package/.forge/worktrees/pipeline-e7f78b7a/components/DocsViewer.tsx +574 -0
  2077. package/.forge/worktrees/pipeline-e7f78b7a/components/HelpDialog.tsx +169 -0
  2078. package/.forge/worktrees/pipeline-e7f78b7a/components/HelpTerminal.tsx +141 -0
  2079. package/.forge/worktrees/pipeline-e7f78b7a/components/InlinePipelineView.tsx +111 -0
  2080. package/.forge/worktrees/pipeline-e7f78b7a/components/LogViewer.tsx +194 -0
  2081. package/.forge/worktrees/pipeline-e7f78b7a/components/MarkdownContent.tsx +73 -0
  2082. package/.forge/worktrees/pipeline-e7f78b7a/components/MobileView.tsx +385 -0
  2083. package/.forge/worktrees/pipeline-e7f78b7a/components/MonitorPanel.tsx +122 -0
  2084. package/.forge/worktrees/pipeline-e7f78b7a/components/NewSessionModal.tsx +93 -0
  2085. package/.forge/worktrees/pipeline-e7f78b7a/components/NewTaskModal.tsx +492 -0
  2086. package/.forge/worktrees/pipeline-e7f78b7a/components/PipelineEditor.tsx +570 -0
  2087. package/.forge/worktrees/pipeline-e7f78b7a/components/PipelineView.tsx +1018 -0
  2088. package/.forge/worktrees/pipeline-e7f78b7a/components/PluginsPanel.tsx +472 -0
  2089. package/.forge/worktrees/pipeline-e7f78b7a/components/ProjectDetail.tsx +1618 -0
  2090. package/.forge/worktrees/pipeline-e7f78b7a/components/ProjectList.tsx +108 -0
  2091. package/.forge/worktrees/pipeline-e7f78b7a/components/ProjectManager.tsx +401 -0
  2092. package/.forge/worktrees/pipeline-e7f78b7a/components/SessionList.tsx +74 -0
  2093. package/.forge/worktrees/pipeline-e7f78b7a/components/SessionView.tsx +726 -0
  2094. package/.forge/worktrees/pipeline-e7f78b7a/components/SettingsModal.tsx +1647 -0
  2095. package/.forge/worktrees/pipeline-e7f78b7a/components/SkillsPanel.tsx +969 -0
  2096. package/.forge/worktrees/pipeline-e7f78b7a/components/StatusBar.tsx +99 -0
  2097. package/.forge/worktrees/pipeline-e7f78b7a/components/TabBar.tsx +46 -0
  2098. package/.forge/worktrees/pipeline-e7f78b7a/components/TaskBoard.tsx +113 -0
  2099. package/.forge/worktrees/pipeline-e7f78b7a/components/TaskDetail.tsx +372 -0
  2100. package/.forge/worktrees/pipeline-e7f78b7a/components/TerminalLauncher.tsx +398 -0
  2101. package/.forge/worktrees/pipeline-e7f78b7a/components/TunnelToggle.tsx +206 -0
  2102. package/.forge/worktrees/pipeline-e7f78b7a/components/UsagePanel.tsx +207 -0
  2103. package/.forge/worktrees/pipeline-e7f78b7a/components/WebTerminal.tsx +1683 -0
  2104. package/.forge/worktrees/pipeline-e7f78b7a/components/WorkspaceTree.tsx +221 -0
  2105. package/.forge/worktrees/pipeline-e7f78b7a/components/WorkspaceView.tsx +4048 -0
  2106. package/.forge/worktrees/pipeline-e7f78b7a/dev-test.sh +5 -0
  2107. package/.forge/worktrees/pipeline-e7f78b7a/docs/Forge_Memory_Layer_Design.docx +0 -0
  2108. package/.forge/worktrees/pipeline-e7f78b7a/docs/Forge_Strategy_Research_2026.docx +0 -0
  2109. package/.forge/worktrees/pipeline-e7f78b7a/docs/LOCAL-DEPLOY.md +144 -0
  2110. package/.forge/worktrees/pipeline-e7f78b7a/docs/roadmap-multi-agent-workflow.md +330 -0
  2111. package/.forge/worktrees/pipeline-e7f78b7a/forge-logo.png +0 -0
  2112. package/.forge/worktrees/pipeline-e7f78b7a/forge-logo.svg +106 -0
  2113. package/.forge/worktrees/pipeline-e7f78b7a/hooks/useSidebarResize.ts +52 -0
  2114. package/.forge/worktrees/pipeline-e7f78b7a/install.sh +29 -0
  2115. package/.forge/worktrees/pipeline-e7f78b7a/instrumentation.ts +35 -0
  2116. package/.forge/worktrees/pipeline-e7f78b7a/lib/agents/claude-adapter.ts +104 -0
  2117. package/.forge/worktrees/pipeline-e7f78b7a/lib/agents/generic-adapter.ts +64 -0
  2118. package/.forge/worktrees/pipeline-e7f78b7a/lib/agents/index.ts +245 -0
  2119. package/.forge/worktrees/pipeline-e7f78b7a/lib/agents/types.ts +70 -0
  2120. package/.forge/worktrees/pipeline-e7f78b7a/lib/artifacts.ts +106 -0
  2121. package/.forge/worktrees/pipeline-e7f78b7a/lib/auth.ts +62 -0
  2122. package/.forge/worktrees/pipeline-e7f78b7a/lib/builtin-plugins/docker.yaml +70 -0
  2123. package/.forge/worktrees/pipeline-e7f78b7a/lib/builtin-plugins/http.yaml +66 -0
  2124. package/.forge/worktrees/pipeline-e7f78b7a/lib/builtin-plugins/jenkins.yaml +92 -0
  2125. package/.forge/worktrees/pipeline-e7f78b7a/lib/builtin-plugins/llm-vision.yaml +85 -0
  2126. package/.forge/worktrees/pipeline-e7f78b7a/lib/builtin-plugins/playwright.yaml +111 -0
  2127. package/.forge/worktrees/pipeline-e7f78b7a/lib/builtin-plugins/shell-command.yaml +60 -0
  2128. package/.forge/worktrees/pipeline-e7f78b7a/lib/builtin-plugins/slack.yaml +48 -0
  2129. package/.forge/worktrees/pipeline-e7f78b7a/lib/builtin-plugins/webhook.yaml +56 -0
  2130. package/.forge/worktrees/pipeline-e7f78b7a/lib/claude-process.ts +352 -0
  2131. package/.forge/worktrees/pipeline-e7f78b7a/lib/claude-sessions.ts +266 -0
  2132. package/.forge/worktrees/pipeline-e7f78b7a/lib/claude-templates.ts +227 -0
  2133. package/.forge/worktrees/pipeline-e7f78b7a/lib/cloudflared.ts +424 -0
  2134. package/.forge/worktrees/pipeline-e7f78b7a/lib/crypto.ts +67 -0
  2135. package/.forge/worktrees/pipeline-e7f78b7a/lib/delivery.ts +787 -0
  2136. package/.forge/worktrees/pipeline-e7f78b7a/lib/dirs.ts +99 -0
  2137. package/.forge/worktrees/pipeline-e7f78b7a/lib/flows.ts +86 -0
  2138. package/.forge/worktrees/pipeline-e7f78b7a/lib/forge-mcp-server.ts +717 -0
  2139. package/.forge/worktrees/pipeline-e7f78b7a/lib/forge-skills/forge-inbox.md +38 -0
  2140. package/.forge/worktrees/pipeline-e7f78b7a/lib/forge-skills/forge-send.md +47 -0
  2141. package/.forge/worktrees/pipeline-e7f78b7a/lib/forge-skills/forge-status.md +32 -0
  2142. package/.forge/worktrees/pipeline-e7f78b7a/lib/forge-skills/forge-workspace-sync.md +37 -0
  2143. package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/00-overview.md +40 -0
  2144. package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/01-settings.md +194 -0
  2145. package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/02-telegram.md +41 -0
  2146. package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/03-tunnel.md +31 -0
  2147. package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/04-tasks.md +52 -0
  2148. package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/05-pipelines.md +460 -0
  2149. package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/06-skills.md +43 -0
  2150. package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/07-projects.md +73 -0
  2151. package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/08-rules.md +53 -0
  2152. package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/09-issue-autofix.md +55 -0
  2153. package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/10-troubleshooting.md +89 -0
  2154. package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/11-workspace.md +810 -0
  2155. package/.forge/worktrees/pipeline-e7f78b7a/lib/help-docs/CLAUDE.md +62 -0
  2156. package/.forge/worktrees/pipeline-e7f78b7a/lib/init.ts +266 -0
  2157. package/.forge/worktrees/pipeline-e7f78b7a/lib/issue-scanner.ts +298 -0
  2158. package/.forge/worktrees/pipeline-e7f78b7a/lib/logger.ts +79 -0
  2159. package/.forge/worktrees/pipeline-e7f78b7a/lib/notifications.ts +75 -0
  2160. package/.forge/worktrees/pipeline-e7f78b7a/lib/notify.ts +108 -0
  2161. package/.forge/worktrees/pipeline-e7f78b7a/lib/password.ts +97 -0
  2162. package/.forge/worktrees/pipeline-e7f78b7a/lib/pipeline-scheduler.ts +373 -0
  2163. package/.forge/worktrees/pipeline-e7f78b7a/lib/pipeline.ts +1441 -0
  2164. package/.forge/worktrees/pipeline-e7f78b7a/lib/plugins/executor.ts +347 -0
  2165. package/.forge/worktrees/pipeline-e7f78b7a/lib/plugins/registry.ts +228 -0
  2166. package/.forge/worktrees/pipeline-e7f78b7a/lib/plugins/types.ts +103 -0
  2167. package/.forge/worktrees/pipeline-e7f78b7a/lib/project-sessions.ts +53 -0
  2168. package/.forge/worktrees/pipeline-e7f78b7a/lib/projects.ts +86 -0
  2169. package/.forge/worktrees/pipeline-e7f78b7a/lib/session-manager.ts +156 -0
  2170. package/.forge/worktrees/pipeline-e7f78b7a/lib/session-utils.ts +53 -0
  2171. package/.forge/worktrees/pipeline-e7f78b7a/lib/session-watcher.ts +345 -0
  2172. package/.forge/worktrees/pipeline-e7f78b7a/lib/settings.ts +195 -0
  2173. package/.forge/worktrees/pipeline-e7f78b7a/lib/skills.ts +458 -0
  2174. package/.forge/worktrees/pipeline-e7f78b7a/lib/task-manager.ts +949 -0
  2175. package/.forge/worktrees/pipeline-e7f78b7a/lib/telegram-bot.ts +1477 -0
  2176. package/.forge/worktrees/pipeline-e7f78b7a/lib/telegram-standalone.ts +83 -0
  2177. package/.forge/worktrees/pipeline-e7f78b7a/lib/terminal-server.ts +70 -0
  2178. package/.forge/worktrees/pipeline-e7f78b7a/lib/terminal-standalone.ts +421 -0
  2179. package/.forge/worktrees/pipeline-e7f78b7a/lib/usage-scanner.ts +249 -0
  2180. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/__tests__/state-machine.test.ts +388 -0
  2181. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/__tests__/workspace.test.ts +311 -0
  2182. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/agent-bus.ts +416 -0
  2183. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/agent-worker.ts +655 -0
  2184. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/backends/api-backend.ts +262 -0
  2185. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/backends/cli-backend.ts +491 -0
  2186. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/index.ts +82 -0
  2187. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/manager.ts +136 -0
  2188. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/orchestrator.ts +3400 -0
  2189. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/persistence.ts +309 -0
  2190. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/presets.ts +649 -0
  2191. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/requests.ts +287 -0
  2192. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/session-monitor.ts +240 -0
  2193. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/skill-installer.ts +275 -0
  2194. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/smith-memory.ts +498 -0
  2195. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/types.ts +241 -0
  2196. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace/watch-manager.ts +560 -0
  2197. package/.forge/worktrees/pipeline-e7f78b7a/lib/workspace-standalone.ts +911 -0
  2198. package/.forge/worktrees/pipeline-e7f78b7a/middleware.ts +51 -0
  2199. package/.forge/worktrees/pipeline-e7f78b7a/next.config.ts +26 -0
  2200. package/.forge/worktrees/pipeline-e7f78b7a/package.json +74 -0
  2201. package/.forge/worktrees/pipeline-e7f78b7a/pnpm-lock.yaml +3719 -0
  2202. package/.forge/worktrees/pipeline-e7f78b7a/pnpm-workspace.yaml +1 -0
  2203. package/.forge/worktrees/pipeline-e7f78b7a/postcss.config.mjs +7 -0
  2204. package/.forge/worktrees/pipeline-e7f78b7a/publish.sh +133 -0
  2205. package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/README.md +66 -0
  2206. package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/results/.gitignore +2 -0
  2207. package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/run.ts +635 -0
  2208. package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/tasks/01-text-utils/task.md +26 -0
  2209. package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
  2210. package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/tasks/02-pagination/setup.sh +19 -0
  2211. package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/tasks/02-pagination/task.md +48 -0
  2212. package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/tasks/02-pagination/validator.sh +69 -0
  2213. package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
  2214. package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/tasks/03-bug-fix/task.md +30 -0
  2215. package/.forge/worktrees/pipeline-e7f78b7a/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
  2216. package/.forge/worktrees/pipeline-e7f78b7a/scripts/verify-usage.ts +178 -0
  2217. package/.forge/worktrees/pipeline-e7f78b7a/src/config/index.ts +129 -0
  2218. package/.forge/worktrees/pipeline-e7f78b7a/src/core/db/database.ts +259 -0
  2219. package/.forge/worktrees/pipeline-e7f78b7a/src/core/memory/strategy.ts +32 -0
  2220. package/.forge/worktrees/pipeline-e7f78b7a/src/core/providers/chat.ts +65 -0
  2221. package/.forge/worktrees/pipeline-e7f78b7a/src/core/providers/registry.ts +60 -0
  2222. package/.forge/worktrees/pipeline-e7f78b7a/src/core/session/manager.ts +190 -0
  2223. package/.forge/worktrees/pipeline-e7f78b7a/src/types/index.ts +129 -0
  2224. package/.forge/worktrees/pipeline-e7f78b7a/start.sh +31 -0
  2225. package/.forge/worktrees/pipeline-e7f78b7a/templates/smith-lead.json +45 -0
  2226. package/.forge/worktrees/pipeline-e7f78b7a/tsconfig.json +42 -0
  2227. package/.forge/worktrees/pipeline-e97c13c7/CLAUDE.md +86 -0
  2228. package/.forge/worktrees/pipeline-e97c13c7/README.md +136 -0
  2229. package/.forge/worktrees/pipeline-e97c13c7/RELEASE_NOTES.md +11 -0
  2230. package/.forge/worktrees/pipeline-e97c13c7/app/api/agents/route.ts +17 -0
  2231. package/.forge/worktrees/pipeline-e97c13c7/app/api/auth/[...nextauth]/route.ts +3 -0
  2232. package/.forge/worktrees/pipeline-e97c13c7/app/api/auth/verify/route.ts +46 -0
  2233. package/.forge/worktrees/pipeline-e97c13c7/app/api/claude/[id]/route.ts +31 -0
  2234. package/.forge/worktrees/pipeline-e97c13c7/app/api/claude/[id]/stream/route.ts +63 -0
  2235. package/.forge/worktrees/pipeline-e97c13c7/app/api/claude/route.ts +28 -0
  2236. package/.forge/worktrees/pipeline-e97c13c7/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
  2237. package/.forge/worktrees/pipeline-e97c13c7/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
  2238. package/.forge/worktrees/pipeline-e97c13c7/app/api/claude-sessions/[projectName]/route.ts +37 -0
  2239. package/.forge/worktrees/pipeline-e97c13c7/app/api/claude-sessions/sync/route.ts +17 -0
  2240. package/.forge/worktrees/pipeline-e97c13c7/app/api/claude-templates/route.ts +145 -0
  2241. package/.forge/worktrees/pipeline-e97c13c7/app/api/code/route.ts +299 -0
  2242. package/.forge/worktrees/pipeline-e97c13c7/app/api/delivery/[id]/route.ts +62 -0
  2243. package/.forge/worktrees/pipeline-e97c13c7/app/api/delivery/route.ts +40 -0
  2244. package/.forge/worktrees/pipeline-e97c13c7/app/api/detect-cli/route.ts +46 -0
  2245. package/.forge/worktrees/pipeline-e97c13c7/app/api/docs/route.ts +176 -0
  2246. package/.forge/worktrees/pipeline-e97c13c7/app/api/docs/sessions/route.ts +54 -0
  2247. package/.forge/worktrees/pipeline-e97c13c7/app/api/favorites/route.ts +26 -0
  2248. package/.forge/worktrees/pipeline-e97c13c7/app/api/flows/route.ts +6 -0
  2249. package/.forge/worktrees/pipeline-e97c13c7/app/api/flows/run/route.ts +19 -0
  2250. package/.forge/worktrees/pipeline-e97c13c7/app/api/git/route.ts +149 -0
  2251. package/.forge/worktrees/pipeline-e97c13c7/app/api/help/route.ts +84 -0
  2252. package/.forge/worktrees/pipeline-e97c13c7/app/api/issue-scanner/route.ts +116 -0
  2253. package/.forge/worktrees/pipeline-e97c13c7/app/api/logs/route.ts +100 -0
  2254. package/.forge/worktrees/pipeline-e97c13c7/app/api/mobile-chat/route.ts +115 -0
  2255. package/.forge/worktrees/pipeline-e97c13c7/app/api/monitor/route.ts +74 -0
  2256. package/.forge/worktrees/pipeline-e97c13c7/app/api/notifications/route.ts +42 -0
  2257. package/.forge/worktrees/pipeline-e97c13c7/app/api/notify/test/route.ts +33 -0
  2258. package/.forge/worktrees/pipeline-e97c13c7/app/api/online/route.ts +40 -0
  2259. package/.forge/worktrees/pipeline-e97c13c7/app/api/pipelines/[id]/route.ts +41 -0
  2260. package/.forge/worktrees/pipeline-e97c13c7/app/api/pipelines/route.ts +90 -0
  2261. package/.forge/worktrees/pipeline-e97c13c7/app/api/plugins/route.ts +75 -0
  2262. package/.forge/worktrees/pipeline-e97c13c7/app/api/preview/[...path]/route.ts +64 -0
  2263. package/.forge/worktrees/pipeline-e97c13c7/app/api/preview/route.ts +156 -0
  2264. package/.forge/worktrees/pipeline-e97c13c7/app/api/project-pipelines/route.ts +91 -0
  2265. package/.forge/worktrees/pipeline-e97c13c7/app/api/project-sessions/route.ts +61 -0
  2266. package/.forge/worktrees/pipeline-e97c13c7/app/api/projects/route.ts +26 -0
  2267. package/.forge/worktrees/pipeline-e97c13c7/app/api/sessions/[id]/chat/route.ts +64 -0
  2268. package/.forge/worktrees/pipeline-e97c13c7/app/api/sessions/[id]/messages/route.ts +9 -0
  2269. package/.forge/worktrees/pipeline-e97c13c7/app/api/sessions/[id]/route.ts +17 -0
  2270. package/.forge/worktrees/pipeline-e97c13c7/app/api/sessions/route.ts +20 -0
  2271. package/.forge/worktrees/pipeline-e97c13c7/app/api/settings/route.ts +64 -0
  2272. package/.forge/worktrees/pipeline-e97c13c7/app/api/skills/local/route.ts +228 -0
  2273. package/.forge/worktrees/pipeline-e97c13c7/app/api/skills/route.ts +182 -0
  2274. package/.forge/worktrees/pipeline-e97c13c7/app/api/smith-templates/route.ts +81 -0
  2275. package/.forge/worktrees/pipeline-e97c13c7/app/api/status/route.ts +12 -0
  2276. package/.forge/worktrees/pipeline-e97c13c7/app/api/tabs/route.ts +25 -0
  2277. package/.forge/worktrees/pipeline-e97c13c7/app/api/tasks/[id]/route.ts +51 -0
  2278. package/.forge/worktrees/pipeline-e97c13c7/app/api/tasks/[id]/stream/route.ts +77 -0
  2279. package/.forge/worktrees/pipeline-e97c13c7/app/api/tasks/link/route.ts +37 -0
  2280. package/.forge/worktrees/pipeline-e97c13c7/app/api/tasks/route.ts +44 -0
  2281. package/.forge/worktrees/pipeline-e97c13c7/app/api/tasks/session/route.ts +14 -0
  2282. package/.forge/worktrees/pipeline-e97c13c7/app/api/telegram/route.ts +23 -0
  2283. package/.forge/worktrees/pipeline-e97c13c7/app/api/templates/route.ts +6 -0
  2284. package/.forge/worktrees/pipeline-e97c13c7/app/api/terminal-bell/route.ts +35 -0
  2285. package/.forge/worktrees/pipeline-e97c13c7/app/api/terminal-cwd/route.ts +19 -0
  2286. package/.forge/worktrees/pipeline-e97c13c7/app/api/terminal-state/route.ts +15 -0
  2287. package/.forge/worktrees/pipeline-e97c13c7/app/api/tunnel/route.ts +26 -0
  2288. package/.forge/worktrees/pipeline-e97c13c7/app/api/upgrade/route.ts +43 -0
  2289. package/.forge/worktrees/pipeline-e97c13c7/app/api/usage/route.ts +20 -0
  2290. package/.forge/worktrees/pipeline-e97c13c7/app/api/version/route.ts +78 -0
  2291. package/.forge/worktrees/pipeline-e97c13c7/app/api/watchers/route.ts +33 -0
  2292. package/.forge/worktrees/pipeline-e97c13c7/app/api/workspace/[id]/agents/route.ts +35 -0
  2293. package/.forge/worktrees/pipeline-e97c13c7/app/api/workspace/[id]/memory/route.ts +23 -0
  2294. package/.forge/worktrees/pipeline-e97c13c7/app/api/workspace/[id]/smith/route.ts +22 -0
  2295. package/.forge/worktrees/pipeline-e97c13c7/app/api/workspace/[id]/stream/route.ts +28 -0
  2296. package/.forge/worktrees/pipeline-e97c13c7/app/api/workspace/route.ts +100 -0
  2297. package/.forge/worktrees/pipeline-e97c13c7/app/global-error.tsx +21 -0
  2298. package/.forge/worktrees/pipeline-e97c13c7/app/globals.css +52 -0
  2299. package/.forge/worktrees/pipeline-e97c13c7/app/icon.ico +0 -0
  2300. package/.forge/worktrees/pipeline-e97c13c7/app/icon.png +0 -0
  2301. package/.forge/worktrees/pipeline-e97c13c7/app/icon.svg +106 -0
  2302. package/.forge/worktrees/pipeline-e97c13c7/app/layout.tsx +17 -0
  2303. package/.forge/worktrees/pipeline-e97c13c7/app/login/LoginForm.tsx +96 -0
  2304. package/.forge/worktrees/pipeline-e97c13c7/app/login/page.tsx +10 -0
  2305. package/.forge/worktrees/pipeline-e97c13c7/app/mobile/page.tsx +9 -0
  2306. package/.forge/worktrees/pipeline-e97c13c7/app/page.tsx +21 -0
  2307. package/.forge/worktrees/pipeline-e97c13c7/bin/forge-server.mjs +484 -0
  2308. package/.forge/worktrees/pipeline-e97c13c7/check-forge-status.sh +71 -0
  2309. package/.forge/worktrees/pipeline-e97c13c7/cli/mw.ts +579 -0
  2310. package/.forge/worktrees/pipeline-e97c13c7/components/BrowserPanel.tsx +175 -0
  2311. package/.forge/worktrees/pipeline-e97c13c7/components/ChatPanel.tsx +191 -0
  2312. package/.forge/worktrees/pipeline-e97c13c7/components/ClaudeTerminal.tsx +267 -0
  2313. package/.forge/worktrees/pipeline-e97c13c7/components/CodeViewer.tsx +787 -0
  2314. package/.forge/worktrees/pipeline-e97c13c7/components/ConversationEditor.tsx +411 -0
  2315. package/.forge/worktrees/pipeline-e97c13c7/components/ConversationGraphView.tsx +347 -0
  2316. package/.forge/worktrees/pipeline-e97c13c7/components/ConversationTerminalView.tsx +303 -0
  2317. package/.forge/worktrees/pipeline-e97c13c7/components/Dashboard.tsx +807 -0
  2318. package/.forge/worktrees/pipeline-e97c13c7/components/DashboardWrapper.tsx +9 -0
  2319. package/.forge/worktrees/pipeline-e97c13c7/components/DeliveryFlowEditor.tsx +491 -0
  2320. package/.forge/worktrees/pipeline-e97c13c7/components/DeliveryList.tsx +230 -0
  2321. package/.forge/worktrees/pipeline-e97c13c7/components/DeliveryWorkspace.tsx +589 -0
  2322. package/.forge/worktrees/pipeline-e97c13c7/components/DocTerminal.tsx +187 -0
  2323. package/.forge/worktrees/pipeline-e97c13c7/components/DocsViewer.tsx +574 -0
  2324. package/.forge/worktrees/pipeline-e97c13c7/components/HelpDialog.tsx +169 -0
  2325. package/.forge/worktrees/pipeline-e97c13c7/components/HelpTerminal.tsx +141 -0
  2326. package/.forge/worktrees/pipeline-e97c13c7/components/InlinePipelineView.tsx +111 -0
  2327. package/.forge/worktrees/pipeline-e97c13c7/components/LogViewer.tsx +194 -0
  2328. package/.forge/worktrees/pipeline-e97c13c7/components/MarkdownContent.tsx +73 -0
  2329. package/.forge/worktrees/pipeline-e97c13c7/components/MobileView.tsx +385 -0
  2330. package/.forge/worktrees/pipeline-e97c13c7/components/MonitorPanel.tsx +122 -0
  2331. package/.forge/worktrees/pipeline-e97c13c7/components/NewSessionModal.tsx +93 -0
  2332. package/.forge/worktrees/pipeline-e97c13c7/components/NewTaskModal.tsx +492 -0
  2333. package/.forge/worktrees/pipeline-e97c13c7/components/PipelineEditor.tsx +570 -0
  2334. package/.forge/worktrees/pipeline-e97c13c7/components/PipelineView.tsx +1018 -0
  2335. package/.forge/worktrees/pipeline-e97c13c7/components/PluginsPanel.tsx +472 -0
  2336. package/.forge/worktrees/pipeline-e97c13c7/components/ProjectDetail.tsx +1618 -0
  2337. package/.forge/worktrees/pipeline-e97c13c7/components/ProjectList.tsx +108 -0
  2338. package/.forge/worktrees/pipeline-e97c13c7/components/ProjectManager.tsx +401 -0
  2339. package/.forge/worktrees/pipeline-e97c13c7/components/SessionList.tsx +74 -0
  2340. package/.forge/worktrees/pipeline-e97c13c7/components/SessionView.tsx +726 -0
  2341. package/.forge/worktrees/pipeline-e97c13c7/components/SettingsModal.tsx +1647 -0
  2342. package/.forge/worktrees/pipeline-e97c13c7/components/SkillsPanel.tsx +969 -0
  2343. package/.forge/worktrees/pipeline-e97c13c7/components/StatusBar.tsx +99 -0
  2344. package/.forge/worktrees/pipeline-e97c13c7/components/TabBar.tsx +46 -0
  2345. package/.forge/worktrees/pipeline-e97c13c7/components/TaskBoard.tsx +113 -0
  2346. package/.forge/worktrees/pipeline-e97c13c7/components/TaskDetail.tsx +372 -0
  2347. package/.forge/worktrees/pipeline-e97c13c7/components/TerminalLauncher.tsx +398 -0
  2348. package/.forge/worktrees/pipeline-e97c13c7/components/TunnelToggle.tsx +206 -0
  2349. package/.forge/worktrees/pipeline-e97c13c7/components/UsagePanel.tsx +207 -0
  2350. package/.forge/worktrees/pipeline-e97c13c7/components/WebTerminal.tsx +1683 -0
  2351. package/.forge/worktrees/pipeline-e97c13c7/components/WorkspaceTree.tsx +221 -0
  2352. package/.forge/worktrees/pipeline-e97c13c7/components/WorkspaceView.tsx +4048 -0
  2353. package/.forge/worktrees/pipeline-e97c13c7/dev-test.sh +5 -0
  2354. package/.forge/worktrees/pipeline-e97c13c7/docs/Forge_Memory_Layer_Design.docx +0 -0
  2355. package/.forge/worktrees/pipeline-e97c13c7/docs/Forge_Strategy_Research_2026.docx +0 -0
  2356. package/.forge/worktrees/pipeline-e97c13c7/docs/LOCAL-DEPLOY.md +144 -0
  2357. package/.forge/worktrees/pipeline-e97c13c7/docs/roadmap-multi-agent-workflow.md +330 -0
  2358. package/.forge/worktrees/pipeline-e97c13c7/forge-logo.png +0 -0
  2359. package/.forge/worktrees/pipeline-e97c13c7/forge-logo.svg +106 -0
  2360. package/.forge/worktrees/pipeline-e97c13c7/hooks/useSidebarResize.ts +52 -0
  2361. package/.forge/worktrees/pipeline-e97c13c7/install.sh +29 -0
  2362. package/.forge/worktrees/pipeline-e97c13c7/instrumentation.ts +35 -0
  2363. package/.forge/worktrees/pipeline-e97c13c7/lib/agents/claude-adapter.ts +104 -0
  2364. package/.forge/worktrees/pipeline-e97c13c7/lib/agents/generic-adapter.ts +64 -0
  2365. package/.forge/worktrees/pipeline-e97c13c7/lib/agents/index.ts +245 -0
  2366. package/.forge/worktrees/pipeline-e97c13c7/lib/agents/types.ts +70 -0
  2367. package/.forge/worktrees/pipeline-e97c13c7/lib/artifacts.ts +106 -0
  2368. package/.forge/worktrees/pipeline-e97c13c7/lib/auth.ts +62 -0
  2369. package/.forge/worktrees/pipeline-e97c13c7/lib/builtin-plugins/docker.yaml +70 -0
  2370. package/.forge/worktrees/pipeline-e97c13c7/lib/builtin-plugins/http.yaml +66 -0
  2371. package/.forge/worktrees/pipeline-e97c13c7/lib/builtin-plugins/jenkins.yaml +92 -0
  2372. package/.forge/worktrees/pipeline-e97c13c7/lib/builtin-plugins/llm-vision.yaml +85 -0
  2373. package/.forge/worktrees/pipeline-e97c13c7/lib/builtin-plugins/playwright.yaml +111 -0
  2374. package/.forge/worktrees/pipeline-e97c13c7/lib/builtin-plugins/shell-command.yaml +60 -0
  2375. package/.forge/worktrees/pipeline-e97c13c7/lib/builtin-plugins/slack.yaml +48 -0
  2376. package/.forge/worktrees/pipeline-e97c13c7/lib/builtin-plugins/webhook.yaml +56 -0
  2377. package/.forge/worktrees/pipeline-e97c13c7/lib/claude-process.ts +352 -0
  2378. package/.forge/worktrees/pipeline-e97c13c7/lib/claude-sessions.ts +266 -0
  2379. package/.forge/worktrees/pipeline-e97c13c7/lib/claude-templates.ts +227 -0
  2380. package/.forge/worktrees/pipeline-e97c13c7/lib/cloudflared.ts +424 -0
  2381. package/.forge/worktrees/pipeline-e97c13c7/lib/crypto.ts +67 -0
  2382. package/.forge/worktrees/pipeline-e97c13c7/lib/delivery.ts +787 -0
  2383. package/.forge/worktrees/pipeline-e97c13c7/lib/dirs.ts +99 -0
  2384. package/.forge/worktrees/pipeline-e97c13c7/lib/flows.ts +86 -0
  2385. package/.forge/worktrees/pipeline-e97c13c7/lib/forge-mcp-server.ts +717 -0
  2386. package/.forge/worktrees/pipeline-e97c13c7/lib/forge-skills/forge-inbox.md +38 -0
  2387. package/.forge/worktrees/pipeline-e97c13c7/lib/forge-skills/forge-send.md +47 -0
  2388. package/.forge/worktrees/pipeline-e97c13c7/lib/forge-skills/forge-status.md +32 -0
  2389. package/.forge/worktrees/pipeline-e97c13c7/lib/forge-skills/forge-workspace-sync.md +37 -0
  2390. package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/00-overview.md +40 -0
  2391. package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/01-settings.md +194 -0
  2392. package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/02-telegram.md +41 -0
  2393. package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/03-tunnel.md +31 -0
  2394. package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/04-tasks.md +52 -0
  2395. package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/05-pipelines.md +460 -0
  2396. package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/06-skills.md +43 -0
  2397. package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/07-projects.md +73 -0
  2398. package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/08-rules.md +53 -0
  2399. package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/09-issue-autofix.md +55 -0
  2400. package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/10-troubleshooting.md +89 -0
  2401. package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/11-workspace.md +810 -0
  2402. package/.forge/worktrees/pipeline-e97c13c7/lib/help-docs/CLAUDE.md +62 -0
  2403. package/.forge/worktrees/pipeline-e97c13c7/lib/init.ts +266 -0
  2404. package/.forge/worktrees/pipeline-e97c13c7/lib/issue-scanner.ts +298 -0
  2405. package/.forge/worktrees/pipeline-e97c13c7/lib/logger.ts +79 -0
  2406. package/.forge/worktrees/pipeline-e97c13c7/lib/notifications.ts +75 -0
  2407. package/.forge/worktrees/pipeline-e97c13c7/lib/notify.ts +108 -0
  2408. package/.forge/worktrees/pipeline-e97c13c7/lib/password.ts +97 -0
  2409. package/.forge/worktrees/pipeline-e97c13c7/lib/pipeline-scheduler.ts +373 -0
  2410. package/.forge/worktrees/pipeline-e97c13c7/lib/pipeline.ts +1438 -0
  2411. package/.forge/worktrees/pipeline-e97c13c7/lib/plugins/executor.ts +347 -0
  2412. package/.forge/worktrees/pipeline-e97c13c7/lib/plugins/registry.ts +228 -0
  2413. package/.forge/worktrees/pipeline-e97c13c7/lib/plugins/types.ts +103 -0
  2414. package/.forge/worktrees/pipeline-e97c13c7/lib/project-sessions.ts +53 -0
  2415. package/.forge/worktrees/pipeline-e97c13c7/lib/projects.ts +86 -0
  2416. package/.forge/worktrees/pipeline-e97c13c7/lib/session-manager.ts +156 -0
  2417. package/.forge/worktrees/pipeline-e97c13c7/lib/session-utils.ts +53 -0
  2418. package/.forge/worktrees/pipeline-e97c13c7/lib/session-watcher.ts +345 -0
  2419. package/.forge/worktrees/pipeline-e97c13c7/lib/settings.ts +195 -0
  2420. package/.forge/worktrees/pipeline-e97c13c7/lib/skills.ts +458 -0
  2421. package/.forge/worktrees/pipeline-e97c13c7/lib/task-manager.ts +949 -0
  2422. package/.forge/worktrees/pipeline-e97c13c7/lib/telegram-bot.ts +1477 -0
  2423. package/.forge/worktrees/pipeline-e97c13c7/lib/telegram-standalone.ts +83 -0
  2424. package/.forge/worktrees/pipeline-e97c13c7/lib/terminal-server.ts +70 -0
  2425. package/.forge/worktrees/pipeline-e97c13c7/lib/terminal-standalone.ts +421 -0
  2426. package/.forge/worktrees/pipeline-e97c13c7/lib/usage-scanner.ts +249 -0
  2427. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/__tests__/state-machine.test.ts +388 -0
  2428. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/__tests__/workspace.test.ts +311 -0
  2429. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/agent-bus.ts +416 -0
  2430. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/agent-worker.ts +655 -0
  2431. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/backends/api-backend.ts +262 -0
  2432. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/backends/cli-backend.ts +491 -0
  2433. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/index.ts +82 -0
  2434. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/manager.ts +136 -0
  2435. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/orchestrator.ts +3400 -0
  2436. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/persistence.ts +309 -0
  2437. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/presets.ts +649 -0
  2438. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/requests.ts +287 -0
  2439. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/session-monitor.ts +240 -0
  2440. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/skill-installer.ts +275 -0
  2441. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/smith-memory.ts +498 -0
  2442. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/types.ts +241 -0
  2443. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace/watch-manager.ts +560 -0
  2444. package/.forge/worktrees/pipeline-e97c13c7/lib/workspace-standalone.ts +911 -0
  2445. package/.forge/worktrees/pipeline-e97c13c7/middleware.ts +51 -0
  2446. package/.forge/worktrees/pipeline-e97c13c7/next.config.ts +26 -0
  2447. package/.forge/worktrees/pipeline-e97c13c7/package.json +74 -0
  2448. package/.forge/worktrees/pipeline-e97c13c7/pnpm-lock.yaml +3719 -0
  2449. package/.forge/worktrees/pipeline-e97c13c7/pnpm-workspace.yaml +1 -0
  2450. package/.forge/worktrees/pipeline-e97c13c7/postcss.config.mjs +7 -0
  2451. package/.forge/worktrees/pipeline-e97c13c7/publish.sh +133 -0
  2452. package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/README.md +66 -0
  2453. package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/results/.gitignore +2 -0
  2454. package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/run.ts +635 -0
  2455. package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/tasks/01-text-utils/task.md +26 -0
  2456. package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
  2457. package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/tasks/02-pagination/setup.sh +19 -0
  2458. package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/tasks/02-pagination/task.md +48 -0
  2459. package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/tasks/02-pagination/validator.sh +69 -0
  2460. package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
  2461. package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/tasks/03-bug-fix/task.md +30 -0
  2462. package/.forge/worktrees/pipeline-e97c13c7/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
  2463. package/.forge/worktrees/pipeline-e97c13c7/scripts/verify-usage.ts +178 -0
  2464. package/.forge/worktrees/pipeline-e97c13c7/src/config/index.ts +129 -0
  2465. package/.forge/worktrees/pipeline-e97c13c7/src/core/db/database.ts +259 -0
  2466. package/.forge/worktrees/pipeline-e97c13c7/src/core/memory/strategy.ts +32 -0
  2467. package/.forge/worktrees/pipeline-e97c13c7/src/core/providers/chat.ts +65 -0
  2468. package/.forge/worktrees/pipeline-e97c13c7/src/core/providers/registry.ts +60 -0
  2469. package/.forge/worktrees/pipeline-e97c13c7/src/core/session/manager.ts +190 -0
  2470. package/.forge/worktrees/pipeline-e97c13c7/src/types/index.ts +129 -0
  2471. package/.forge/worktrees/pipeline-e97c13c7/start.sh +31 -0
  2472. package/.forge/worktrees/pipeline-e97c13c7/templates/smith-lead.json +45 -0
  2473. package/.forge/worktrees/pipeline-e97c13c7/tsconfig.json +42 -0
  2474. package/.forge/worktrees/pipeline-ecd7cb0f/CLAUDE.md +86 -0
  2475. package/.forge/worktrees/pipeline-ecd7cb0f/README.md +136 -0
  2476. package/.forge/worktrees/pipeline-ecd7cb0f/RELEASE_NOTES.md +11 -0
  2477. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/agents/route.ts +17 -0
  2478. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/auth/[...nextauth]/route.ts +3 -0
  2479. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/auth/verify/route.ts +46 -0
  2480. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/claude/[id]/route.ts +31 -0
  2481. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/claude/[id]/stream/route.ts +63 -0
  2482. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/claude/route.ts +28 -0
  2483. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/claude-sessions/[projectName]/entries/route.ts +23 -0
  2484. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/claude-sessions/[projectName]/live/route.ts +72 -0
  2485. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/claude-sessions/[projectName]/route.ts +37 -0
  2486. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/claude-sessions/sync/route.ts +17 -0
  2487. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/claude-templates/route.ts +145 -0
  2488. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/code/route.ts +299 -0
  2489. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/delivery/[id]/route.ts +62 -0
  2490. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/delivery/route.ts +40 -0
  2491. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/detect-cli/route.ts +46 -0
  2492. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/docs/route.ts +176 -0
  2493. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/docs/sessions/route.ts +54 -0
  2494. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/favorites/route.ts +26 -0
  2495. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/flows/route.ts +6 -0
  2496. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/flows/run/route.ts +19 -0
  2497. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/git/route.ts +149 -0
  2498. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/help/route.ts +84 -0
  2499. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/issue-scanner/route.ts +116 -0
  2500. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/logs/route.ts +100 -0
  2501. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/mobile-chat/route.ts +115 -0
  2502. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/monitor/route.ts +74 -0
  2503. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/notifications/route.ts +42 -0
  2504. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/notify/test/route.ts +33 -0
  2505. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/online/route.ts +40 -0
  2506. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/pipelines/[id]/route.ts +41 -0
  2507. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/pipelines/route.ts +90 -0
  2508. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/plugins/route.ts +75 -0
  2509. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/preview/[...path]/route.ts +64 -0
  2510. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/preview/route.ts +156 -0
  2511. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/project-pipelines/route.ts +91 -0
  2512. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/project-sessions/route.ts +61 -0
  2513. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/projects/route.ts +26 -0
  2514. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/sessions/[id]/chat/route.ts +64 -0
  2515. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/sessions/[id]/messages/route.ts +9 -0
  2516. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/sessions/[id]/route.ts +17 -0
  2517. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/sessions/route.ts +20 -0
  2518. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/settings/route.ts +64 -0
  2519. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/skills/local/route.ts +228 -0
  2520. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/skills/route.ts +182 -0
  2521. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/smith-templates/route.ts +81 -0
  2522. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/status/route.ts +12 -0
  2523. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/tabs/route.ts +25 -0
  2524. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/tasks/[id]/route.ts +51 -0
  2525. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/tasks/[id]/stream/route.ts +77 -0
  2526. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/tasks/link/route.ts +37 -0
  2527. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/tasks/route.ts +44 -0
  2528. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/tasks/session/route.ts +14 -0
  2529. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/telegram/route.ts +23 -0
  2530. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/templates/route.ts +6 -0
  2531. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/terminal-bell/route.ts +35 -0
  2532. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/terminal-cwd/route.ts +19 -0
  2533. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/terminal-state/route.ts +15 -0
  2534. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/tunnel/route.ts +26 -0
  2535. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/upgrade/route.ts +43 -0
  2536. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/usage/route.ts +20 -0
  2537. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/version/route.ts +78 -0
  2538. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/watchers/route.ts +33 -0
  2539. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/workspace/[id]/agents/route.ts +35 -0
  2540. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/workspace/[id]/memory/route.ts +23 -0
  2541. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/workspace/[id]/smith/route.ts +22 -0
  2542. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/workspace/[id]/stream/route.ts +28 -0
  2543. package/.forge/worktrees/pipeline-ecd7cb0f/app/api/workspace/route.ts +100 -0
  2544. package/.forge/worktrees/pipeline-ecd7cb0f/app/global-error.tsx +21 -0
  2545. package/.forge/worktrees/pipeline-ecd7cb0f/app/globals.css +52 -0
  2546. package/.forge/worktrees/pipeline-ecd7cb0f/app/icon.ico +0 -0
  2547. package/.forge/worktrees/pipeline-ecd7cb0f/app/icon.png +0 -0
  2548. package/.forge/worktrees/pipeline-ecd7cb0f/app/icon.svg +106 -0
  2549. package/.forge/worktrees/pipeline-ecd7cb0f/app/layout.tsx +17 -0
  2550. package/.forge/worktrees/pipeline-ecd7cb0f/app/login/LoginForm.tsx +96 -0
  2551. package/.forge/worktrees/pipeline-ecd7cb0f/app/login/page.tsx +10 -0
  2552. package/.forge/worktrees/pipeline-ecd7cb0f/app/mobile/page.tsx +9 -0
  2553. package/.forge/worktrees/pipeline-ecd7cb0f/app/page.tsx +21 -0
  2554. package/.forge/worktrees/pipeline-ecd7cb0f/bin/forge-server.mjs +484 -0
  2555. package/.forge/worktrees/pipeline-ecd7cb0f/check-forge-status.sh +71 -0
  2556. package/.forge/worktrees/pipeline-ecd7cb0f/cli/mw.ts +579 -0
  2557. package/.forge/worktrees/pipeline-ecd7cb0f/components/BrowserPanel.tsx +175 -0
  2558. package/.forge/worktrees/pipeline-ecd7cb0f/components/ChatPanel.tsx +191 -0
  2559. package/.forge/worktrees/pipeline-ecd7cb0f/components/ClaudeTerminal.tsx +267 -0
  2560. package/.forge/worktrees/pipeline-ecd7cb0f/components/CodeViewer.tsx +787 -0
  2561. package/.forge/worktrees/pipeline-ecd7cb0f/components/ConversationEditor.tsx +411 -0
  2562. package/.forge/worktrees/pipeline-ecd7cb0f/components/ConversationGraphView.tsx +347 -0
  2563. package/.forge/worktrees/pipeline-ecd7cb0f/components/ConversationTerminalView.tsx +303 -0
  2564. package/.forge/worktrees/pipeline-ecd7cb0f/components/Dashboard.tsx +807 -0
  2565. package/.forge/worktrees/pipeline-ecd7cb0f/components/DashboardWrapper.tsx +9 -0
  2566. package/.forge/worktrees/pipeline-ecd7cb0f/components/DeliveryFlowEditor.tsx +491 -0
  2567. package/.forge/worktrees/pipeline-ecd7cb0f/components/DeliveryList.tsx +230 -0
  2568. package/.forge/worktrees/pipeline-ecd7cb0f/components/DeliveryWorkspace.tsx +589 -0
  2569. package/.forge/worktrees/pipeline-ecd7cb0f/components/DocTerminal.tsx +187 -0
  2570. package/.forge/worktrees/pipeline-ecd7cb0f/components/DocsViewer.tsx +574 -0
  2571. package/.forge/worktrees/pipeline-ecd7cb0f/components/HelpDialog.tsx +169 -0
  2572. package/.forge/worktrees/pipeline-ecd7cb0f/components/HelpTerminal.tsx +141 -0
  2573. package/.forge/worktrees/pipeline-ecd7cb0f/components/InlinePipelineView.tsx +111 -0
  2574. package/.forge/worktrees/pipeline-ecd7cb0f/components/LogViewer.tsx +194 -0
  2575. package/.forge/worktrees/pipeline-ecd7cb0f/components/MarkdownContent.tsx +73 -0
  2576. package/.forge/worktrees/pipeline-ecd7cb0f/components/MobileView.tsx +385 -0
  2577. package/.forge/worktrees/pipeline-ecd7cb0f/components/MonitorPanel.tsx +122 -0
  2578. package/.forge/worktrees/pipeline-ecd7cb0f/components/NewSessionModal.tsx +93 -0
  2579. package/.forge/worktrees/pipeline-ecd7cb0f/components/NewTaskModal.tsx +492 -0
  2580. package/.forge/worktrees/pipeline-ecd7cb0f/components/PipelineEditor.tsx +570 -0
  2581. package/.forge/worktrees/pipeline-ecd7cb0f/components/PipelineView.tsx +1018 -0
  2582. package/.forge/worktrees/pipeline-ecd7cb0f/components/PluginsPanel.tsx +472 -0
  2583. package/.forge/worktrees/pipeline-ecd7cb0f/components/ProjectDetail.tsx +1618 -0
  2584. package/.forge/worktrees/pipeline-ecd7cb0f/components/ProjectList.tsx +108 -0
  2585. package/.forge/worktrees/pipeline-ecd7cb0f/components/ProjectManager.tsx +401 -0
  2586. package/.forge/worktrees/pipeline-ecd7cb0f/components/SessionList.tsx +74 -0
  2587. package/.forge/worktrees/pipeline-ecd7cb0f/components/SessionView.tsx +726 -0
  2588. package/.forge/worktrees/pipeline-ecd7cb0f/components/SettingsModal.tsx +1647 -0
  2589. package/.forge/worktrees/pipeline-ecd7cb0f/components/SkillsPanel.tsx +969 -0
  2590. package/.forge/worktrees/pipeline-ecd7cb0f/components/StatusBar.tsx +99 -0
  2591. package/.forge/worktrees/pipeline-ecd7cb0f/components/TabBar.tsx +46 -0
  2592. package/.forge/worktrees/pipeline-ecd7cb0f/components/TaskBoard.tsx +113 -0
  2593. package/.forge/worktrees/pipeline-ecd7cb0f/components/TaskDetail.tsx +372 -0
  2594. package/.forge/worktrees/pipeline-ecd7cb0f/components/TerminalLauncher.tsx +398 -0
  2595. package/.forge/worktrees/pipeline-ecd7cb0f/components/TunnelToggle.tsx +206 -0
  2596. package/.forge/worktrees/pipeline-ecd7cb0f/components/UsagePanel.tsx +207 -0
  2597. package/.forge/worktrees/pipeline-ecd7cb0f/components/WebTerminal.tsx +1683 -0
  2598. package/.forge/worktrees/pipeline-ecd7cb0f/components/WorkspaceTree.tsx +221 -0
  2599. package/.forge/worktrees/pipeline-ecd7cb0f/components/WorkspaceView.tsx +4048 -0
  2600. package/.forge/worktrees/pipeline-ecd7cb0f/dev-test.sh +5 -0
  2601. package/.forge/worktrees/pipeline-ecd7cb0f/docs/Forge_Memory_Layer_Design.docx +0 -0
  2602. package/.forge/worktrees/pipeline-ecd7cb0f/docs/Forge_Strategy_Research_2026.docx +0 -0
  2603. package/.forge/worktrees/pipeline-ecd7cb0f/docs/LOCAL-DEPLOY.md +144 -0
  2604. package/.forge/worktrees/pipeline-ecd7cb0f/docs/roadmap-multi-agent-workflow.md +330 -0
  2605. package/.forge/worktrees/pipeline-ecd7cb0f/forge-logo.png +0 -0
  2606. package/.forge/worktrees/pipeline-ecd7cb0f/forge-logo.svg +106 -0
  2607. package/.forge/worktrees/pipeline-ecd7cb0f/hooks/useSidebarResize.ts +52 -0
  2608. package/.forge/worktrees/pipeline-ecd7cb0f/install.sh +29 -0
  2609. package/.forge/worktrees/pipeline-ecd7cb0f/instrumentation.ts +35 -0
  2610. package/.forge/worktrees/pipeline-ecd7cb0f/lib/agents/claude-adapter.ts +104 -0
  2611. package/.forge/worktrees/pipeline-ecd7cb0f/lib/agents/generic-adapter.ts +64 -0
  2612. package/.forge/worktrees/pipeline-ecd7cb0f/lib/agents/index.ts +245 -0
  2613. package/.forge/worktrees/pipeline-ecd7cb0f/lib/agents/types.ts +70 -0
  2614. package/.forge/worktrees/pipeline-ecd7cb0f/lib/artifacts.ts +106 -0
  2615. package/.forge/worktrees/pipeline-ecd7cb0f/lib/auth.ts +62 -0
  2616. package/.forge/worktrees/pipeline-ecd7cb0f/lib/builtin-plugins/docker.yaml +70 -0
  2617. package/.forge/worktrees/pipeline-ecd7cb0f/lib/builtin-plugins/http.yaml +66 -0
  2618. package/.forge/worktrees/pipeline-ecd7cb0f/lib/builtin-plugins/jenkins.yaml +92 -0
  2619. package/.forge/worktrees/pipeline-ecd7cb0f/lib/builtin-plugins/llm-vision.yaml +85 -0
  2620. package/.forge/worktrees/pipeline-ecd7cb0f/lib/builtin-plugins/playwright.yaml +111 -0
  2621. package/.forge/worktrees/pipeline-ecd7cb0f/lib/builtin-plugins/shell-command.yaml +60 -0
  2622. package/.forge/worktrees/pipeline-ecd7cb0f/lib/builtin-plugins/slack.yaml +48 -0
  2623. package/.forge/worktrees/pipeline-ecd7cb0f/lib/builtin-plugins/webhook.yaml +56 -0
  2624. package/.forge/worktrees/pipeline-ecd7cb0f/lib/claude-process.ts +352 -0
  2625. package/.forge/worktrees/pipeline-ecd7cb0f/lib/claude-sessions.ts +266 -0
  2626. package/.forge/worktrees/pipeline-ecd7cb0f/lib/claude-templates.ts +227 -0
  2627. package/.forge/worktrees/pipeline-ecd7cb0f/lib/cloudflared.ts +424 -0
  2628. package/.forge/worktrees/pipeline-ecd7cb0f/lib/crypto.ts +67 -0
  2629. package/.forge/worktrees/pipeline-ecd7cb0f/lib/delivery.ts +787 -0
  2630. package/.forge/worktrees/pipeline-ecd7cb0f/lib/dirs.ts +99 -0
  2631. package/.forge/worktrees/pipeline-ecd7cb0f/lib/flows.ts +86 -0
  2632. package/.forge/worktrees/pipeline-ecd7cb0f/lib/forge-mcp-server.ts +717 -0
  2633. package/.forge/worktrees/pipeline-ecd7cb0f/lib/forge-skills/forge-inbox.md +38 -0
  2634. package/.forge/worktrees/pipeline-ecd7cb0f/lib/forge-skills/forge-send.md +47 -0
  2635. package/.forge/worktrees/pipeline-ecd7cb0f/lib/forge-skills/forge-status.md +32 -0
  2636. package/.forge/worktrees/pipeline-ecd7cb0f/lib/forge-skills/forge-workspace-sync.md +37 -0
  2637. package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/00-overview.md +40 -0
  2638. package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/01-settings.md +194 -0
  2639. package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/02-telegram.md +41 -0
  2640. package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/03-tunnel.md +31 -0
  2641. package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/04-tasks.md +52 -0
  2642. package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/05-pipelines.md +460 -0
  2643. package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/06-skills.md +43 -0
  2644. package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/07-projects.md +73 -0
  2645. package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/08-rules.md +53 -0
  2646. package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/09-issue-autofix.md +55 -0
  2647. package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/10-troubleshooting.md +89 -0
  2648. package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/11-workspace.md +810 -0
  2649. package/.forge/worktrees/pipeline-ecd7cb0f/lib/help-docs/CLAUDE.md +62 -0
  2650. package/.forge/worktrees/pipeline-ecd7cb0f/lib/init.ts +266 -0
  2651. package/.forge/worktrees/pipeline-ecd7cb0f/lib/issue-scanner.ts +298 -0
  2652. package/.forge/worktrees/pipeline-ecd7cb0f/lib/logger.ts +79 -0
  2653. package/.forge/worktrees/pipeline-ecd7cb0f/lib/notifications.ts +75 -0
  2654. package/.forge/worktrees/pipeline-ecd7cb0f/lib/notify.ts +108 -0
  2655. package/.forge/worktrees/pipeline-ecd7cb0f/lib/password.ts +97 -0
  2656. package/.forge/worktrees/pipeline-ecd7cb0f/lib/pipeline-scheduler.ts +373 -0
  2657. package/.forge/worktrees/pipeline-ecd7cb0f/lib/pipeline.ts +1441 -0
  2658. package/.forge/worktrees/pipeline-ecd7cb0f/lib/plugins/executor.ts +347 -0
  2659. package/.forge/worktrees/pipeline-ecd7cb0f/lib/plugins/registry.ts +228 -0
  2660. package/.forge/worktrees/pipeline-ecd7cb0f/lib/plugins/types.ts +103 -0
  2661. package/.forge/worktrees/pipeline-ecd7cb0f/lib/project-sessions.ts +53 -0
  2662. package/.forge/worktrees/pipeline-ecd7cb0f/lib/projects.ts +86 -0
  2663. package/.forge/worktrees/pipeline-ecd7cb0f/lib/session-manager.ts +156 -0
  2664. package/.forge/worktrees/pipeline-ecd7cb0f/lib/session-utils.ts +53 -0
  2665. package/.forge/worktrees/pipeline-ecd7cb0f/lib/session-watcher.ts +345 -0
  2666. package/.forge/worktrees/pipeline-ecd7cb0f/lib/settings.ts +195 -0
  2667. package/.forge/worktrees/pipeline-ecd7cb0f/lib/skills.ts +458 -0
  2668. package/.forge/worktrees/pipeline-ecd7cb0f/lib/task-manager.ts +949 -0
  2669. package/.forge/worktrees/pipeline-ecd7cb0f/lib/telegram-bot.ts +1477 -0
  2670. package/.forge/worktrees/pipeline-ecd7cb0f/lib/telegram-standalone.ts +83 -0
  2671. package/.forge/worktrees/pipeline-ecd7cb0f/lib/terminal-server.ts +70 -0
  2672. package/.forge/worktrees/pipeline-ecd7cb0f/lib/terminal-standalone.ts +421 -0
  2673. package/.forge/worktrees/pipeline-ecd7cb0f/lib/usage-scanner.ts +249 -0
  2674. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/__tests__/state-machine.test.ts +388 -0
  2675. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/__tests__/workspace.test.ts +311 -0
  2676. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/agent-bus.ts +416 -0
  2677. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/agent-worker.ts +655 -0
  2678. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/backends/api-backend.ts +262 -0
  2679. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/backends/cli-backend.ts +491 -0
  2680. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/index.ts +82 -0
  2681. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/manager.ts +136 -0
  2682. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/orchestrator.ts +3400 -0
  2683. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/persistence.ts +309 -0
  2684. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/presets.ts +649 -0
  2685. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/requests.ts +287 -0
  2686. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/session-monitor.ts +240 -0
  2687. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/skill-installer.ts +275 -0
  2688. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/smith-memory.ts +498 -0
  2689. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/types.ts +241 -0
  2690. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace/watch-manager.ts +560 -0
  2691. package/.forge/worktrees/pipeline-ecd7cb0f/lib/workspace-standalone.ts +911 -0
  2692. package/.forge/worktrees/pipeline-ecd7cb0f/middleware.ts +51 -0
  2693. package/.forge/worktrees/pipeline-ecd7cb0f/next.config.ts +26 -0
  2694. package/.forge/worktrees/pipeline-ecd7cb0f/package.json +74 -0
  2695. package/.forge/worktrees/pipeline-ecd7cb0f/pnpm-lock.yaml +3719 -0
  2696. package/.forge/worktrees/pipeline-ecd7cb0f/pnpm-workspace.yaml +1 -0
  2697. package/.forge/worktrees/pipeline-ecd7cb0f/postcss.config.mjs +7 -0
  2698. package/.forge/worktrees/pipeline-ecd7cb0f/publish.sh +133 -0
  2699. package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/README.md +66 -0
  2700. package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/results/.gitignore +2 -0
  2701. package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/run.ts +635 -0
  2702. package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/tasks/01-text-utils/task.md +26 -0
  2703. package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/tasks/01-text-utils/validator.sh +46 -0
  2704. package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/tasks/02-pagination/setup.sh +19 -0
  2705. package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/tasks/02-pagination/task.md +48 -0
  2706. package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/tasks/02-pagination/validator.sh +69 -0
  2707. package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/tasks/03-bug-fix/setup.sh +82 -0
  2708. package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/tasks/03-bug-fix/task.md +30 -0
  2709. package/.forge/worktrees/pipeline-ecd7cb0f/scripts/bench/tasks/03-bug-fix/validator.sh +29 -0
  2710. package/.forge/worktrees/pipeline-ecd7cb0f/scripts/verify-usage.ts +178 -0
  2711. package/.forge/worktrees/pipeline-ecd7cb0f/src/config/index.ts +129 -0
  2712. package/.forge/worktrees/pipeline-ecd7cb0f/src/core/db/database.ts +259 -0
  2713. package/.forge/worktrees/pipeline-ecd7cb0f/src/core/memory/strategy.ts +32 -0
  2714. package/.forge/worktrees/pipeline-ecd7cb0f/src/core/providers/chat.ts +65 -0
  2715. package/.forge/worktrees/pipeline-ecd7cb0f/src/core/providers/registry.ts +60 -0
  2716. package/.forge/worktrees/pipeline-ecd7cb0f/src/core/session/manager.ts +190 -0
  2717. package/.forge/worktrees/pipeline-ecd7cb0f/src/types/index.ts +129 -0
  2718. package/.forge/worktrees/pipeline-ecd7cb0f/start.sh +31 -0
  2719. package/.forge/worktrees/pipeline-ecd7cb0f/templates/smith-lead.json +45 -0
  2720. package/.forge/worktrees/pipeline-ecd7cb0f/tsconfig.json +42 -0
  2721. package/RELEASE_NOTES.md +26 -15
  2722. package/app/api/workspace/[id]/stream/route.ts +3 -0
  2723. package/app/api/workspace/route.ts +20 -41
  2724. package/app/mobile/page.tsx +2 -1
  2725. package/app/page.tsx +2 -1
  2726. package/components/WebTerminal.tsx +27 -1
  2727. package/docs/Forge_Memory_Layer_Design.docx +0 -0
  2728. package/docs/Forge_Strategy_Research_2026.docx +0 -0
  2729. package/lib/claude-process.ts +14 -5
  2730. package/lib/forge-mcp-server.ts +20 -5
  2731. package/lib/help-docs/05-pipelines.md +44 -2
  2732. package/lib/pipeline.ts +181 -24
  2733. package/lib/project-sessions.ts +1 -1
  2734. package/lib/task-manager.ts +5 -3
  2735. package/lib/terminal-standalone.ts +2 -2
  2736. package/lib/workspace/index.ts +3 -1
  2737. package/lib/workspace/manager.ts +1 -1
  2738. package/lib/workspace/orchestrator.ts +23 -8
  2739. package/lib/workspace-standalone.ts +67 -0
  2740. package/middleware.ts +2 -2
  2741. package/package.json +1 -1
  2742. package/pnpm-workspace.yaml +1 -0
  2743. package/start.sh +1 -0
@@ -0,0 +1,1618 @@
1
+ 'use client';
2
+
3
+ import React, { useState, useEffect, useCallback, useRef, memo, lazy, Suspense } from 'react';
4
+ import { useSidebarResize } from '@/hooks/useSidebarResize';
5
+
6
+ import { TerminalSessionPickerLazy, fetchProjectSessions } from './TerminalLauncher';
7
+ const InlinePipelineView = lazy(() => import('./InlinePipelineView'));
8
+ const WorkspaceViewLazy = lazy(() => import('./WorkspaceView'));
9
+ const SessionViewLazy = lazy(() => import('./SessionView'));
10
+
11
+ // ─── Syntax highlighting ─────────────────────────────────
12
+ const KEYWORDS = new Set([
13
+ 'import', 'export', 'from', 'const', 'let', 'var', 'function', 'return',
14
+ 'if', 'else', 'for', 'while', 'switch', 'case', 'break', 'continue',
15
+ 'class', 'extends', 'new', 'this', 'super', 'typeof', 'instanceof',
16
+ 'try', 'catch', 'finally', 'throw', 'async', 'await', 'yield',
17
+ 'default', 'interface', 'type', 'enum', 'implements', 'readonly',
18
+ 'public', 'private', 'protected', 'static', 'abstract',
19
+ 'true', 'false', 'null', 'undefined', 'void',
20
+ 'def', 'self', 'None', 'True', 'False', 'lambda', 'with', 'as', 'in', 'not', 'and', 'or',
21
+ 'package', 'final', 'synchronized', 'volatile', 'transient', 'native',
22
+ 'throws', 'int', 'long', 'double', 'float', 'char', 'byte', 'short', 'boolean',
23
+ 'override', 'struct', 'func', 'go', 'defer', 'select', 'chan', 'range',
24
+ 'val', 'var', 'def', 'object', 'trait', 'sealed', 'implicit', 'lazy', 'match',
25
+ ]);
26
+
27
+ function highlightLine(line: string): React.ReactNode {
28
+ if (!line) return ' ';
29
+ const commentIdx = line.indexOf('//');
30
+ if (commentIdx === 0 || (commentIdx > 0 && /^\s*$/.test(line.slice(0, commentIdx)))) {
31
+ return <span className="text-gray-500 italic">{line}</span>;
32
+ }
33
+ const parts: React.ReactNode[] = [];
34
+ let lastIdx = 0;
35
+ const regex = /("(?:[^"\\]|\\.)*"|'(?:[^'\\]|\\.)*'|`(?:[^`\\]|\\.)*`)|(\b\d+\.?\d*\b)|(\/\/.*$|#.*$)|(\b[A-Z_][A-Z_0-9]+\b)|(\b\w+\b)/g;
36
+ let match;
37
+ while ((match = regex.exec(line)) !== null) {
38
+ if (match.index > lastIdx) parts.push(line.slice(lastIdx, match.index));
39
+ if (match[1]) parts.push(<span key={match.index} className="text-green-400">{match[0]}</span>);
40
+ else if (match[2]) parts.push(<span key={match.index} className="text-orange-300">{match[0]}</span>);
41
+ else if (match[3]) parts.push(<span key={match.index} className="text-gray-500 italic">{match[0]}</span>);
42
+ else if (match[4]) parts.push(<span key={match.index} className="text-cyan-300">{match[0]}</span>);
43
+ else if (match[5] && KEYWORDS.has(match[5])) parts.push(<span key={match.index} className="text-purple-400">{match[0]}</span>);
44
+ else parts.push(match[0]);
45
+ lastIdx = match.index + match[0].length;
46
+ }
47
+ if (lastIdx < line.length) parts.push(line.slice(lastIdx));
48
+ return parts.length > 0 ? <>{parts}</> : line;
49
+ }
50
+
51
+ interface GitInfo {
52
+ branch: string;
53
+ branches: { name: string; upstream: string; hash: string; current: boolean }[];
54
+ changes: { status: string; path: string }[];
55
+ remote: string;
56
+ ahead: number;
57
+ behind: number;
58
+ lastCommit: string;
59
+ log: { hash: string; message: string; author: string; date: string }[];
60
+ }
61
+
62
+ export default memo(function ProjectDetail({ projectPath, projectName, hasGit }: { projectPath: string; projectName: string; hasGit: boolean }) {
63
+ const { sidebarWidth, onSidebarDragStart } = useSidebarResize({ defaultWidth: 208, minWidth: 120, maxWidth: 400 });
64
+ const [gitInfo, setGitInfo] = useState<GitInfo | null>(null);
65
+ const [loading, setLoading] = useState(false);
66
+ const [commitMsg, setCommitMsg] = useState('');
67
+ const [gitLoading, setGitLoading] = useState(false);
68
+ const [gitResult, setGitResult] = useState<{ ok?: boolean; error?: string } | null>(null);
69
+ const [fileTree, setFileTree] = useState<any[]>([]);
70
+ const [selectedFile, setSelectedFile] = useState<string | null>(null);
71
+ const [fileContent, setFileContent] = useState<string | null>(null);
72
+ const [fileImageUrl, setFileImageUrl] = useState<string | null>(null);
73
+ const [fileBinaryInfo, setFileBinaryInfo] = useState<{ fileType: string; sizeLabel: string; message?: string } | null>(null);
74
+ const [fileLanguage, setFileLanguage] = useState('');
75
+ const [fileLoading, setFileLoading] = useState(false);
76
+ const [showLog, setShowLog] = useState(false);
77
+ const [changesExpanded, setChangesExpanded] = useState(false);
78
+ const [codeSearch, setCodeSearch] = useState('');
79
+ const [codeSearchResults, setCodeSearchResults] = useState<{ file: string; line: number; content: string }[]>([]);
80
+ const [codeSearching, setCodeSearching] = useState(false);
81
+ const [changesHeight, setChangesHeight] = useState(120);
82
+ const changesResizeRef = useRef<{ startY: number; origH: number } | null>(null);
83
+ const [diffContent, setDiffContent] = useState<string | null>(null);
84
+ const [diffFile, setDiffFile] = useState<string | null>(null);
85
+ const [projectSkills, setProjectSkills] = useState<{ name: string; displayName: string; type: string; scope: string; version: string; installedVersion: string; hasUpdate: boolean; source: 'registry' | 'local' }[]>([]);
86
+ const [showSkillsDetail, setShowSkillsDetail] = useState(false);
87
+ const [projectTab, setProjectTab] = useState<'workspace' | 'sessions' | 'code' | 'skills' | 'claudemd' | 'pipelines'>('code');
88
+ const wsViewRef = useRef<import('./WorkspaceView').WorkspaceViewHandle>(null);
89
+ // Pipeline bindings state
90
+ const [pipelineBindings, setPipelineBindings] = useState<{ id: number; workflowName: string; enabled: boolean; config: any; lastRunAt: string | null; nextRunAt: string | null }[]>([]);
91
+ const [pipelineRuns, setPipelineRuns] = useState<{ id: string; workflowName: string; pipelineId: string; status: string; summary: string; dedupKey: string | null; createdAt: string }[]>([]);
92
+ const [availableWorkflows, setAvailableWorkflows] = useState<{ name: string; description?: string; builtin?: boolean; type?: string }[]>([]);
93
+ const [boundSession, setBoundSession] = useState<{ sessionId: string } | null>(null);
94
+ const [showSessionPicker, setShowSessionPicker] = useState(false);
95
+ const [availableSessions, setAvailableSessions] = useState<{ id: string; modified: string; size: number }[]>([]);
96
+ const [expandedRunId, setExpandedRunId] = useState<string | null>(null);
97
+ const [expandedPipeline, setExpandedPipeline] = useState<any>(null);
98
+ const [showAddPipeline, setShowAddPipeline] = useState(false);
99
+ const [triggerInput, setTriggerInput] = useState<Record<string, string>>({});
100
+ const [runMenu, setRunMenu] = useState<string | null>(null); // workflowName of open run menu
101
+ const [issueInput, setIssueInput] = useState('');
102
+ const [claudeMdContent, setClaudeMdContent] = useState('');
103
+ const [claudeMdExists, setClaudeMdExists] = useState(false);
104
+ const [claudeTemplates, setClaudeTemplates] = useState<{ id: string; name: string; description: string; tags: string[]; builtin: boolean; content: string }[]>([]);
105
+ const [claudeInjectedIds, setClaudeInjectedIds] = useState<Set<string>>(new Set());
106
+ const [claudeEditing, setClaudeEditing] = useState(false);
107
+ const [claudeEditContent, setClaudeEditContent] = useState('');
108
+ const [claudeSelectedTemplate, setClaudeSelectedTemplate] = useState<string | null>(null);
109
+ const [expandedSkillItem, setExpandedSkillItem] = useState<string | null>(null);
110
+ const [skillItemFiles, setSkillItemFiles] = useState<{ path: string; size: number }[]>([]);
111
+ const [skillFileContent, setSkillFileContent] = useState('');
112
+ const [skillFileHash, setSkillFileHash] = useState('');
113
+ const [skillActivePath, setSkillActivePath] = useState('');
114
+ const [skillEditing, setSkillEditing] = useState(false);
115
+ const [skillEditContent, setSkillEditContent] = useState('');
116
+ const [skillSaving, setSkillSaving] = useState(false);
117
+
118
+ // Fetch git info
119
+ const fetchGitInfo = useCallback(async () => {
120
+ if (!hasGit) { setGitInfo(null); return; }
121
+ setLoading(true);
122
+ try {
123
+ const res = await fetch(`/api/git?dir=${encodeURIComponent(projectPath)}`);
124
+ const data = await res.json();
125
+ if (!data.error) setGitInfo(data);
126
+ else setGitInfo(null);
127
+ } catch { setGitInfo(null); }
128
+ setLoading(false);
129
+ }, [projectPath, hasGit]);
130
+
131
+ // Fetch file tree
132
+ const fetchTree = useCallback(async () => {
133
+ try {
134
+ const res = await fetch(`/api/code?dir=${encodeURIComponent(projectPath)}`);
135
+ const data = await res.json();
136
+ setFileTree(data.tree || []);
137
+ } catch { setFileTree([]); }
138
+ }, [projectPath]);
139
+
140
+ const openFile = useCallback(async (path: string) => {
141
+ setSelectedFile(path);
142
+ setDiffContent(null);
143
+ setDiffFile(null);
144
+ setFileContent(null);
145
+ setFileImageUrl(null);
146
+ setFileBinaryInfo(null);
147
+ setFileLoading(true);
148
+ try {
149
+ const res = await fetch(`/api/code?dir=${encodeURIComponent(projectPath)}&file=${encodeURIComponent(path)}`);
150
+ const data = await res.json();
151
+ if (data.image) {
152
+ setFileImageUrl(data.dataUrl);
153
+ } else if (data.binary) {
154
+ setFileBinaryInfo({ fileType: data.fileType, sizeLabel: data.sizeLabel, message: data.message });
155
+ } else if (data.tooLarge) {
156
+ setFileBinaryInfo({ fileType: '', sizeLabel: data.sizeLabel, message: data.message });
157
+ } else {
158
+ setFileContent(data.content || null);
159
+ setFileLanguage(data.language || '');
160
+ }
161
+ } catch { setFileContent(null); }
162
+ setFileLoading(false);
163
+ }, [projectPath]);
164
+
165
+ const openDiff = useCallback(async (filePath: string) => {
166
+ setDiffFile(filePath);
167
+ setDiffContent(null);
168
+ setSelectedFile(null);
169
+ setFileContent(null);
170
+ try {
171
+ const res = await fetch(`/api/code?dir=${encodeURIComponent(projectPath)}&diff=${encodeURIComponent(filePath)}`);
172
+ const data = await res.json();
173
+ setDiffContent(data.diff || 'No changes');
174
+ } catch { setDiffContent('(Failed to load diff)'); }
175
+ }, [projectPath]);
176
+
177
+ const toggleSkillItem = useCallback(async (name: string, type: string, scope: string) => {
178
+ if (expandedSkillItem === name) {
179
+ setExpandedSkillItem(null);
180
+ setSkillEditing(false);
181
+ return;
182
+ }
183
+ setExpandedSkillItem(name);
184
+ setSkillItemFiles([]);
185
+ setSkillFileContent('');
186
+ setSkillActivePath('');
187
+ setSkillEditing(false);
188
+ const isGlobal = scope === 'global';
189
+ const project = isGlobal ? '' : projectPath;
190
+ try {
191
+ const res = await fetch(`/api/skills/local?action=files&name=${encodeURIComponent(name)}&type=${type}&project=${encodeURIComponent(project)}`);
192
+ const data = await res.json();
193
+ setSkillItemFiles(data.files || []);
194
+ const firstMd = (data.files || []).find((f: any) => f.path.endsWith('.md'));
195
+ if (firstMd) loadSkillFile(name, type, firstMd.path, project);
196
+ } catch {}
197
+ }, [expandedSkillItem, projectPath]);
198
+
199
+ const loadSkillFile = async (name: string, type: string, path: string, project: string) => {
200
+ setSkillActivePath(path);
201
+ setSkillEditing(false);
202
+ setSkillFileContent('Loading...');
203
+ try {
204
+ const res = await fetch(`/api/skills/local?action=read&name=${encodeURIComponent(name)}&type=${type}&path=${encodeURIComponent(path)}&project=${encodeURIComponent(project)}`);
205
+ const data = await res.json();
206
+ setSkillFileContent(data.content || '');
207
+ setSkillFileHash(data.hash || '');
208
+ } catch { setSkillFileContent('(Failed to load)'); }
209
+ };
210
+
211
+ const saveSkillFile = async (name: string, type: string, path: string) => {
212
+ setSkillSaving(true);
213
+ const res = await fetch('/api/skills/local', {
214
+ method: 'POST',
215
+ headers: { 'Content-Type': 'application/json' },
216
+ body: JSON.stringify({ name, type, project: projectPath, path, content: skillEditContent, expectedHash: skillFileHash }),
217
+ });
218
+ const data = await res.json();
219
+ if (data.ok) {
220
+ setSkillFileContent(skillEditContent);
221
+ setSkillFileHash(data.hash);
222
+ setSkillEditing(false);
223
+ } else {
224
+ alert(data.error || 'Save failed');
225
+ }
226
+ setSkillSaving(false);
227
+ };
228
+
229
+ const handleUpdate = async (name: string) => {
230
+ const checkRes = await fetch('/api/skills', {
231
+ method: 'POST',
232
+ headers: { 'Content-Type': 'application/json' },
233
+ body: JSON.stringify({ action: 'check-modified', name }),
234
+ });
235
+ const checkData = await checkRes.json();
236
+ if (checkData.modified) {
237
+ if (!confirm('Local files have been modified. Overwrite with remote version?')) return;
238
+ }
239
+ const target = projectPath || 'global';
240
+ await fetch('/api/skills', {
241
+ method: 'POST',
242
+ headers: { 'Content-Type': 'application/json' },
243
+ body: JSON.stringify({ action: 'install', name, target, force: true }),
244
+ });
245
+ fetchProjectSkills();
246
+ };
247
+
248
+ const uninstallSkill = async (name: string, scope: string) => {
249
+ const target = scope === 'global' ? 'global' : projectPath;
250
+ const label = scope === 'global' ? 'global' : projectName;
251
+ if (!confirm(`Uninstall "${name}" from ${label}?`)) return;
252
+ await fetch('/api/skills', {
253
+ method: 'POST',
254
+ headers: { 'Content-Type': 'application/json' },
255
+ body: JSON.stringify({ action: 'uninstall', name, target }),
256
+ });
257
+ fetchProjectSkills();
258
+ };
259
+
260
+ const fetchPipelineBindings = useCallback(async () => {
261
+ try {
262
+ const res = await fetch(`/api/project-pipelines?project=${encodeURIComponent(projectPath)}`);
263
+ if (!res.ok) return;
264
+ const data = await res.json();
265
+ setPipelineBindings(data.bindings || []);
266
+ setPipelineRuns(data.runs || []);
267
+ setAvailableWorkflows(data.workflows || []);
268
+ } catch {}
269
+ }, [projectPath]);
270
+
271
+ const triggerProjectPipeline = async (workflowName: string, input?: Record<string, string>) => {
272
+ try {
273
+ const res = await fetch('/api/project-pipelines', {
274
+ method: 'POST',
275
+ headers: { 'Content-Type': 'application/json' },
276
+ body: JSON.stringify({ action: 'trigger', projectPath, projectName, workflowName, input }),
277
+ });
278
+ const data = await res.json();
279
+ if (data.ok) { fetchPipelineBindings(); }
280
+ else { alert(data.error || 'Failed'); }
281
+ } catch { alert('Failed to trigger pipeline'); }
282
+ };
283
+
284
+ const fetchClaudeMd = useCallback(async () => {
285
+ try {
286
+ const [contentRes, statusRes, listRes] = await Promise.all([
287
+ fetch(`/api/claude-templates?action=read-claude-md&project=${encodeURIComponent(projectPath)}`),
288
+ fetch(`/api/claude-templates?action=status&project=${encodeURIComponent(projectPath)}`),
289
+ fetch('/api/claude-templates?action=list'),
290
+ ]);
291
+ const contentData = await contentRes.json();
292
+ setClaudeMdContent(contentData.content || '');
293
+ setClaudeMdExists(contentData.exists || false);
294
+ const statusData = await statusRes.json();
295
+ setClaudeInjectedIds(new Set((statusData.status || []).filter((s: any) => s.injected).map((s: any) => s.id)));
296
+ const listData = await listRes.json();
297
+ setClaudeTemplates(listData.templates || []);
298
+ } catch {}
299
+ }, [projectPath]);
300
+
301
+ const injectToProject = async (templateId: string) => {
302
+ await fetch('/api/claude-templates', {
303
+ method: 'POST',
304
+ headers: { 'Content-Type': 'application/json' },
305
+ body: JSON.stringify({ action: 'inject', templateId, projects: [projectPath] }),
306
+ });
307
+ fetchClaudeMd();
308
+ };
309
+
310
+ const removeFromProject = async (templateId: string) => {
311
+ if (!confirm(`Remove template from this project's CLAUDE.md?`)) return;
312
+ await fetch('/api/claude-templates', {
313
+ method: 'POST',
314
+ headers: { 'Content-Type': 'application/json' },
315
+ body: JSON.stringify({ action: 'remove', templateId, project: projectPath }),
316
+ });
317
+ fetchClaudeMd();
318
+ };
319
+
320
+ const saveClaudeMd = async (content: string) => {
321
+ await fetch('/api/claude-templates', {
322
+ method: 'POST',
323
+ headers: { 'Content-Type': 'application/json' },
324
+ body: JSON.stringify({ action: 'save-claude-md', project: projectPath, content }),
325
+ });
326
+ setClaudeMdContent(content);
327
+ setClaudeEditing(false);
328
+ fetchClaudeMd();
329
+ };
330
+
331
+ const fetchProjectSkills = useCallback(async () => {
332
+ try {
333
+ const [registryRes, localRes] = await Promise.all([
334
+ fetch('/api/skills'),
335
+ fetch(`/api/skills/local?action=scan&project=${encodeURIComponent(projectPath)}`),
336
+ ]);
337
+ const registryData = await registryRes.json();
338
+ const localData = await localRes.json();
339
+
340
+ const registryItems = (registryData.skills || []).filter((s: any) =>
341
+ s.installedGlobal || (s.installedProjects || []).includes(projectPath)
342
+ ).map((s: any) => ({
343
+ name: s.name,
344
+ displayName: s.displayName,
345
+ type: s.type || 'command',
346
+ version: s.version || '',
347
+ installedVersion: s.installedVersion || '',
348
+ hasUpdate: s.hasUpdate || false,
349
+ source: 'registry' as const,
350
+ scope: s.installedGlobal && (s.installedProjects || []).includes(projectPath) ? 'global + project'
351
+ : s.installedGlobal ? 'global'
352
+ : 'project',
353
+ }));
354
+
355
+ const registryNames = new Set(registryItems.map((s: any) => s.name));
356
+ const localItems = (localData.items || [])
357
+ .filter((item: any) => !registryNames.has(item.name))
358
+ .map((item: any) => ({
359
+ name: item.name,
360
+ displayName: item.name,
361
+ type: item.type,
362
+ version: '',
363
+ installedVersion: '',
364
+ hasUpdate: false,
365
+ source: 'local' as const,
366
+ scope: item.scope,
367
+ }));
368
+
369
+ const merged = new Map<string, any>();
370
+ for (const item of [...registryItems, ...localItems]) {
371
+ const existing = merged.get(item.name);
372
+ if (existing) {
373
+ if (existing.scope !== item.scope) {
374
+ existing.scope = existing.scope.includes(item.scope) ? existing.scope : `${existing.scope} + ${item.scope}`;
375
+ }
376
+ if (item.source === 'registry') {
377
+ Object.assign(existing, { ...item, scope: existing.scope });
378
+ }
379
+ } else {
380
+ merged.set(item.name, { ...item });
381
+ }
382
+ }
383
+ setProjectSkills([...merged.values()]);
384
+ } catch { setProjectSkills([]); }
385
+ }, [projectPath]);
386
+
387
+ // Git operations
388
+ const gitAction = async (action: string, extra?: any) => {
389
+ setGitLoading(true);
390
+ setGitResult(null);
391
+ try {
392
+ const res = await fetch('/api/git', {
393
+ method: 'POST',
394
+ headers: { 'Content-Type': 'application/json' },
395
+ body: JSON.stringify({ action, dir: projectPath, ...extra }),
396
+ });
397
+ const data = await res.json();
398
+ setGitResult(data);
399
+ if (data.ok) fetchGitInfo();
400
+ } catch (e: any) {
401
+ setGitResult({ error: e.message });
402
+ }
403
+ setGitLoading(false);
404
+ };
405
+
406
+ // Load essential data on mount (git + file tree only)
407
+ useEffect(() => {
408
+ setSelectedFile(null);
409
+ setFileContent(null);
410
+ setGitResult(null);
411
+ setCommitMsg('');
412
+ // Fetch git info and file tree in parallel
413
+ fetchGitInfo();
414
+ fetchTree();
415
+ // Fetch project-level fixed session
416
+ fetchBoundSession();
417
+ }, [projectPath, fetchGitInfo, fetchTree]); // eslint-disable-line react-hooks/exhaustive-deps
418
+
419
+ const fetchBoundSession = useCallback(() => {
420
+ fetch(`/api/project-sessions?projectPath=${encodeURIComponent(projectPath)}`)
421
+ .then(r => r.json())
422
+ .then(data => {
423
+ if (data?.fixedSessionId) setBoundSession({ sessionId: data.fixedSessionId });
424
+ else setBoundSession(null);
425
+ })
426
+ .catch(() => {});
427
+ }, [projectPath]);
428
+
429
+ // Listen for session binding changes (from SessionView or other components)
430
+ useEffect(() => {
431
+ const handler = () => fetchBoundSession();
432
+ window.addEventListener('forge:session-bound', handler);
433
+ return () => window.removeEventListener('forge:session-bound', handler);
434
+ }, [fetchBoundSession]);
435
+
436
+ // Lazy load tab-specific data only when switching to that tab
437
+ useEffect(() => {
438
+ if (projectTab === 'skills') fetchProjectSkills();
439
+ if (projectTab === 'pipelines') fetchPipelineBindings();
440
+ if (projectTab === 'claudemd') fetchClaudeMd();
441
+ }, [projectTab, fetchProjectSkills, fetchPipelineBindings, fetchClaudeMd]);
442
+
443
+ // Auto-refresh pipeline runs while any is running
444
+ useEffect(() => {
445
+ if (projectTab !== 'pipelines') return;
446
+ const hasRunning = pipelineRuns.some(r => r.status === 'running');
447
+ if (!hasRunning) return;
448
+ const timer = setInterval(fetchPipelineBindings, 4000);
449
+ return () => clearInterval(timer);
450
+ }, [projectTab, pipelineRuns, fetchPipelineBindings]);
451
+
452
+ return (
453
+ <>
454
+ {/* Project header */}
455
+ <div className="px-4 py-2 border-b border-[var(--border)] shrink-0">
456
+ <div className="flex items-center gap-2">
457
+ <span className="text-sm font-semibold text-[var(--text-primary)]">{projectName}</span>
458
+ {gitInfo?.branch && (
459
+ <div className="relative">
460
+ <select
461
+ value={gitInfo.branch}
462
+ onChange={async (e) => {
463
+ const branch = e.target.value;
464
+ if (branch === gitInfo.branch) return;
465
+ try {
466
+ await fetch('/api/git', { method: 'POST', headers: { 'Content-Type': 'application/json' }, body: JSON.stringify({ action: 'checkout', dir: projectPath, branch }) });
467
+ fetchGitInfo(); fetchTree();
468
+ } catch {}
469
+ }}
470
+ className="text-[9px] text-[var(--accent)] bg-[var(--accent)]/10 px-1.5 py-0.5 rounded border-none cursor-pointer appearance-none pr-4 focus:outline-none"
471
+ style={{ backgroundImage: 'url("data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' width=\'8\' height=\'8\' viewBox=\'0 0 8 8\'%3E%3Cpath d=\'M0 2l4 4 4-4z\' fill=\'%2358a6ff\'/%3E%3C/svg%3E")', backgroundRepeat: 'no-repeat', backgroundPosition: 'right 4px center' }}
472
+ >
473
+ {(gitInfo.branches || []).map(b => (
474
+ <option key={b.name} value={b.name}>{b.name}{b.current ? ' ●' : ''}</option>
475
+ ))}
476
+ </select>
477
+ </div>
478
+ )}
479
+ {gitInfo?.ahead ? <span className="text-[9px] text-green-400">↑{gitInfo.ahead}</span> : null}
480
+ {gitInfo?.behind ? <span className="text-[9px] text-yellow-400">↓{gitInfo.behind}</span> : null}
481
+ {/* Action buttons */}
482
+ <div className="flex items-center gap-1.5 ml-auto">
483
+ {/* Open Terminal with agent selection */}
484
+ <AgentTerminalButton projectPath={projectPath} projectName={projectName} />
485
+ <button
486
+ onClick={() => { fetchGitInfo(); fetchTree(); if (selectedFile) openFile(selectedFile); }}
487
+ className="text-[10px] text-[var(--text-secondary)] hover:text-[var(--text-primary)]"
488
+ title="Refresh"
489
+ >
490
+
491
+ </button>
492
+ </div>
493
+ </div>
494
+ <div className="text-[9px] text-[var(--text-secondary)] mt-0.5 flex items-center gap-2 flex-wrap">
495
+ <span>{projectPath}</span>
496
+ {gitInfo?.remote && (
497
+ <span>{gitInfo.remote.replace(/^https?:\/\//, '').replace(/^git@github\.com:/, 'github.com/').replace(/\.git$/, '')}</span>
498
+ )}
499
+ {/* Fixed session: show current or "set session" */}
500
+ <span className="inline-flex items-center gap-1 px-1.5 py-0 rounded bg-[#f0883e]/10 text-[#f0883e] relative">
501
+ {boundSession?.sessionId ? (
502
+ <>
503
+ <span className="text-[8px]">session:</span>
504
+ <button onClick={() => {
505
+ fetch(`/api/claude-sessions/${encodeURIComponent(projectName)}`)
506
+ .then(r => r.json())
507
+ .then(data => { if (Array.isArray(data)) setAvailableSessions(data.map((s: any) => ({ id: s.sessionId || s.id, modified: s.modified || '', size: s.size || 0 }))); })
508
+ .catch(() => {});
509
+ setShowSessionPicker(!showSessionPicker);
510
+ }}
511
+ className="font-mono text-[8px] hover:text-white underline decoration-dotted" title="Click to change">
512
+ {boundSession.sessionId.slice(0, 8)}
513
+ </button>
514
+ <button onClick={() => navigator.clipboard.writeText(boundSession.sessionId)}
515
+ className="text-[7px] hover:text-white" title={boundSession.sessionId}>copy</button>
516
+ </>
517
+ ) : (
518
+ <button onClick={() => {
519
+ fetch(`/api/claude-sessions/${encodeURIComponent(projectName)}`)
520
+ .then(r => r.json())
521
+ .then(data => { if (Array.isArray(data)) setAvailableSessions(data.map((s: any) => ({ id: s.sessionId || s.id, modified: s.modified || '', size: s.size || 0 }))); })
522
+ .catch(() => {});
523
+ setShowSessionPicker(!showSessionPicker);
524
+ }}
525
+ className="text-[8px] hover:text-white underline decoration-dotted">
526
+ set session
527
+ </button>
528
+ )}
529
+ {/* Session picker dropdown */}
530
+ {showSessionPicker && (
531
+ <div className="absolute top-full left-0 mt-1 z-50 bg-[var(--bg-primary)] border border-[var(--border)] rounded-lg shadow-xl p-2 min-w-[280px]"
532
+ onClick={e => e.stopPropagation()}>
533
+ <div className="text-[9px] text-[var(--text-secondary)] mb-1.5 font-medium">{boundSession?.sessionId ? 'Change session' : 'Select session'}</div>
534
+ <div className="max-h-48 overflow-y-auto space-y-1">
535
+ {availableSessions.map(s => (
536
+ <button key={s.id} onClick={async () => {
537
+ try {
538
+ await fetch('/api/project-sessions', {
539
+ method: 'POST',
540
+ headers: { 'Content-Type': 'application/json' },
541
+ body: JSON.stringify({ projectPath, fixedSessionId: s.id }),
542
+ });
543
+ setBoundSession({ sessionId: s.id });
544
+ window.dispatchEvent(new Event('forge:session-bound'));
545
+ } catch {}
546
+ setShowSessionPicker(false);
547
+ }}
548
+ className={`w-full text-left px-2 py-1.5 rounded text-[9px] flex items-center gap-2 ${
549
+ s.id === boundSession?.sessionId
550
+ ? 'bg-[#f0883e]/20 text-[#f0883e]'
551
+ : 'hover:bg-[var(--bg-secondary)] text-[var(--text-secondary)]'
552
+ }`}>
553
+ <span className="font-mono">{s.id.slice(0, 8)}</span>
554
+ {s.id === boundSession?.sessionId && <span className="text-[7px]">current</span>}
555
+ {s.modified && <span className="text-[8px] opacity-60">{(() => { const d = Date.now() - new Date(s.modified).getTime(); return d < 3600000 ? `${Math.floor(d/60000)}m ago` : d < 86400000 ? `${Math.floor(d/3600000)}h ago` : new Date(s.modified).toLocaleDateString(); })()}</span>}
556
+ {s.size > 0 && <span className="text-[8px] opacity-60">{s.size < 1048576 ? `${(s.size/1024).toFixed(0)}KB` : `${(s.size/1048576).toFixed(1)}MB`}</span>}
557
+ </button>
558
+ ))}
559
+ {availableSessions.length === 0 && <div className="text-[9px] text-[var(--text-secondary)] px-2 py-1">No sessions found</div>}
560
+ </div>
561
+ <button onClick={() => setShowSessionPicker(false)}
562
+ className="w-full mt-1.5 text-[8px] text-[var(--text-secondary)] hover:text-[var(--text-primary)] pt-1 border-t border-[var(--border)]">Close</button>
563
+ </div>
564
+ )}
565
+ </span>
566
+ </div>
567
+ {/* Tab switcher */}
568
+ <div className="flex items-center gap-2 mt-1.5">
569
+ <div className="flex bg-[var(--bg-tertiary)] rounded p-0.5">
570
+ <button
571
+ onClick={() => setProjectTab('code')}
572
+ className={`text-[9px] px-2 py-0.5 rounded transition-colors ${
573
+ projectTab === 'code' ? 'bg-[var(--bg-secondary)] text-[var(--text-primary)] shadow-sm' : 'text-[var(--text-secondary)] hover:text-[var(--text-primary)]'
574
+ }`}
575
+ >Code</button>
576
+ <button
577
+ onClick={() => setProjectTab('workspace')}
578
+ className={`text-[9px] px-2 py-0.5 rounded transition-colors ${
579
+ projectTab === 'workspace' ? 'bg-[var(--accent)]/20 text-[var(--accent)] shadow-sm' : 'text-[var(--text-secondary)] hover:text-[var(--text-primary)]'
580
+ }`}
581
+ >🔨 Workspace</button>
582
+ <button
583
+ onClick={() => setProjectTab('sessions')}
584
+ className={`text-[9px] px-2 py-0.5 rounded transition-colors ${
585
+ projectTab === 'sessions' ? 'bg-[var(--bg-secondary)] text-[var(--text-primary)] shadow-sm' : 'text-[var(--text-secondary)] hover:text-[var(--text-primary)]'
586
+ }`}
587
+ >Sessions</button>
588
+ <button
589
+ onClick={() => setProjectTab('skills')}
590
+ className={`text-[9px] px-2 py-0.5 rounded transition-colors ${
591
+ projectTab === 'skills' ? 'bg-[var(--bg-secondary)] text-[var(--text-primary)] shadow-sm' : 'text-[var(--text-secondary)] hover:text-[var(--text-primary)]'
592
+ }`}
593
+ >
594
+ Skills & Cmds
595
+ {projectSkills.length > 0 && <span className="ml-1 text-[8px] text-[var(--text-secondary)]">({projectSkills.length})</span>}
596
+ {projectSkills.some(s => s.hasUpdate) && <span className="ml-1 text-[8px] text-[var(--yellow)]">!</span>}
597
+ </button>
598
+ <button
599
+ onClick={() => setProjectTab('claudemd')}
600
+ className={`text-[9px] px-2 py-0.5 rounded transition-colors ${
601
+ projectTab === 'claudemd' ? 'bg-[var(--bg-secondary)] text-[var(--text-primary)] shadow-sm' : 'text-[var(--text-secondary)] hover:text-[var(--text-primary)]'
602
+ }`}
603
+ >
604
+ CLAUDE.md
605
+ {claudeMdExists && <span className="ml-1 text-[8px] text-[var(--green)]">•</span>}
606
+ </button>
607
+ <button
608
+ onClick={() => setProjectTab('pipelines')}
609
+ className={`text-[9px] px-2 py-0.5 rounded transition-colors ${
610
+ projectTab === 'pipelines' ? 'bg-[var(--bg-secondary)] text-[var(--text-primary)] shadow-sm' : 'text-[var(--text-secondary)] hover:text-[var(--text-primary)]'
611
+ }`}
612
+ >
613
+ Pipelines
614
+ {pipelineBindings.length > 0 && <span className="ml-1 text-[8px] text-[var(--text-secondary)]">({pipelineBindings.length})</span>}
615
+ </button>
616
+ </div>
617
+ </div>
618
+ {projectTab === 'code' && gitInfo?.lastCommit && (
619
+ <div className="flex items-center gap-2 mt-0.5">
620
+ <span className="text-[9px] text-[var(--text-secondary)] font-mono truncate">{gitInfo.lastCommit}</span>
621
+ <button
622
+ onClick={() => setShowLog(v => !v)}
623
+ className={`text-[9px] px-1.5 py-0.5 rounded shrink-0 ${showLog ? 'text-white bg-[var(--accent)]/30' : 'text-[var(--accent)] hover:bg-[var(--accent)]/10'}`}
624
+ >
625
+ History
626
+ </button>
627
+ </div>
628
+ )}
629
+ </div>
630
+
631
+ {/* Git log */}
632
+ {projectTab === 'code' && showLog && gitInfo?.log && gitInfo.log.length > 0 && (
633
+ <div className="max-h-48 overflow-y-auto border-b border-[var(--border)] bg-[var(--bg-tertiary)]">
634
+ {gitInfo.log.map(c => (
635
+ <div key={c.hash} className="px-4 py-1.5 border-b border-[var(--border)]/30 text-xs flex items-start gap-2">
636
+ <span className="font-mono text-[var(--accent)] shrink-0 text-[10px]">{c.hash}</span>
637
+ <span className="text-[var(--text-primary)] truncate flex-1">{c.message}</span>
638
+ <span className="text-[var(--text-secondary)] text-[9px] shrink-0">{c.author}</span>
639
+ <span className="text-[var(--text-secondary)] text-[9px] shrink-0 w-16 text-right">{c.date}</span>
640
+ </div>
641
+ ))}
642
+ </div>
643
+ )}
644
+
645
+ {/* Workspace tab */}
646
+ {projectTab === 'workspace' && (
647
+ <div className="flex-1 flex min-h-0 overflow-hidden">
648
+ <Suspense fallback={<div className="flex-1 flex items-center justify-center text-[var(--text-secondary)]">Loading...</div>}>
649
+ <WorkspaceViewLazy
650
+ ref={wsViewRef}
651
+ projectPath={projectPath}
652
+ projectName={projectName}
653
+ onClose={() => setProjectTab('code')}
654
+ />
655
+ </Suspense>
656
+ </div>
657
+ )}
658
+
659
+ {/* Sessions tab */}
660
+ {projectTab === 'sessions' && (
661
+ <div className="flex-1 flex min-h-0 overflow-hidden">
662
+ <Suspense fallback={<div className="flex-1 flex items-center justify-center text-[var(--text-secondary)]">Loading...</div>}>
663
+ <SessionViewLazy
664
+ projectName={projectName}
665
+ projects={[{ name: projectName, path: projectPath, language: null }]}
666
+ singleProject
667
+ />
668
+ </Suspense>
669
+ </div>
670
+ )}
671
+
672
+ {/* Code content area */}
673
+ {projectTab === 'code' && <div className="flex-1 flex min-h-0 overflow-hidden">
674
+ {/* File tree + search */}
675
+ <div style={{ width: sidebarWidth }} className="flex flex-col shrink-0">
676
+ {/* Search input */}
677
+ <div className="p-1 border-b border-[var(--border)]">
678
+ <input
679
+ value={codeSearch}
680
+ onChange={e => setCodeSearch(e.target.value)}
681
+ onKeyDown={async e => {
682
+ if (e.key === 'Enter' && codeSearch.trim()) {
683
+ setCodeSearching(true);
684
+ try {
685
+ const res = await fetch(`/api/code?dir=${encodeURIComponent(projectPath)}&search=${encodeURIComponent(codeSearch.trim())}`);
686
+ const data = await res.json();
687
+ setCodeSearchResults(data.matches || []);
688
+ } catch { setCodeSearchResults([]); }
689
+ setCodeSearching(false);
690
+ }
691
+ if (e.key === 'Escape') { setCodeSearch(''); setCodeSearchResults([]); }
692
+ }}
693
+ placeholder="Search code... (Enter)"
694
+ className="w-full text-[10px] bg-[var(--bg-tertiary)] border border-[var(--border)] rounded px-2 py-1 text-[var(--text-primary)] focus:outline-none focus:border-[var(--accent)] placeholder-[var(--text-secondary)]"
695
+ />
696
+ </div>
697
+ {/* Search results */}
698
+ {codeSearchResults.length > 0 && (
699
+ <div className="overflow-y-auto border-b border-[var(--border)] max-h-60">
700
+ <div className="px-2 py-0.5 text-[8px] text-[var(--text-secondary)] bg-[var(--bg-tertiary)] sticky top-0 flex items-center justify-between">
701
+ <span>{codeSearchResults.length} results for "{codeSearch}"</span>
702
+ <button onClick={() => { setCodeSearch(''); setCodeSearchResults([]); }} className="text-[var(--text-secondary)] hover:text-[var(--text-primary)]">✕</button>
703
+ </div>
704
+ {codeSearchResults.map((r, i) => (
705
+ <div key={i} onClick={() => openFile(r.file)} className="px-2 py-0.5 cursor-pointer hover:bg-[var(--bg-tertiary)] border-b border-[var(--border)]/30">
706
+ <div className="text-[9px] text-[var(--accent)] truncate">{r.file}:{r.line}</div>
707
+ <div className="text-[8px] text-[var(--text-secondary)] font-mono truncate">{r.content}</div>
708
+ </div>
709
+ ))}
710
+ </div>
711
+ )}
712
+ {codeSearching && <div className="px-2 py-1 text-[9px] text-[var(--text-secondary)]">Searching...</div>}
713
+ {/* File tree */}
714
+ <div className="overflow-y-auto flex-1 p-1">
715
+ {fileTree.map((node: any) => (
716
+ <FileTreeNode key={node.path} node={node} depth={0} selected={selectedFile} onSelect={openFile} />
717
+ ))}
718
+ </div>
719
+ </div>
720
+
721
+ {/* Sidebar resize handle */}
722
+ <div
723
+ onMouseDown={onSidebarDragStart}
724
+ className="w-1 bg-[var(--border)] cursor-col-resize shrink-0 hover:bg-[var(--accent)]/50 transition-colors"
725
+ />
726
+
727
+ {/* File content */}
728
+ <div className="flex-1 min-w-0 overflow-auto bg-[var(--bg-primary)]" style={{ width: 0 }}>
729
+ {/* Diff view */}
730
+ {diffContent !== null && diffFile ? (
731
+ <>
732
+ <div className="px-3 py-1 border-b border-[var(--border)] text-[10px] sticky top-0 bg-[var(--bg-primary)] z-10 flex items-center gap-2">
733
+ <span className="text-[var(--yellow)]">DIFF</span>
734
+ <span className="text-[var(--text-secondary)]">{diffFile}</span>
735
+ <button onClick={() => { if (diffFile) openFile(diffFile); }} className="ml-auto text-[9px] text-[var(--accent)] hover:underline">Open Source</button>
736
+ </div>
737
+ <pre className="p-4 text-[12px] leading-[1.5] font-mono whitespace-pre" style={{ fontFamily: 'Menlo, Monaco, "Courier New", monospace', tabSize: 2 }}>
738
+ {diffContent.split('\n').map((line, i) => {
739
+ const color = line.startsWith('+') ? 'text-green-400 bg-green-900/20'
740
+ : line.startsWith('-') ? 'text-red-400 bg-red-900/20'
741
+ : line.startsWith('@@') ? 'text-cyan-400'
742
+ : line.startsWith('diff') || line.startsWith('index') ? 'text-[var(--text-secondary)]'
743
+ : 'text-[var(--text-primary)]';
744
+ return <div key={i} className={`${color} px-2`}>{line || ' '}</div>;
745
+ })}
746
+ </pre>
747
+ </>
748
+ ) : fileLoading ? (
749
+ <div className="h-full flex items-center justify-center text-xs text-[var(--text-secondary)]">Loading...</div>
750
+ ) : selectedFile && fileImageUrl ? (
751
+ <>
752
+ <div className="px-3 py-1 border-b border-[var(--border)] text-[10px] text-[var(--text-secondary)] sticky top-0 bg-[var(--bg-primary)] z-10">{selectedFile}</div>
753
+ <div className="flex-1 flex items-center justify-center p-4 overflow-auto">
754
+ <img src={fileImageUrl} alt={selectedFile} className="max-w-full max-h-full object-contain rounded" />
755
+ </div>
756
+ </>
757
+ ) : selectedFile && fileBinaryInfo ? (
758
+ <>
759
+ <div className="px-3 py-1 border-b border-[var(--border)] text-[10px] text-[var(--text-secondary)] sticky top-0 bg-[var(--bg-primary)] z-10">{selectedFile}</div>
760
+ <div className="flex-1 flex flex-col items-center justify-center gap-2 text-[var(--text-secondary)]">
761
+ <span className="text-2xl">📄</span>
762
+ <span className="text-xs">{fileBinaryInfo.fileType ? fileBinaryInfo.fileType.toUpperCase() + ' file' : 'File'} — {fileBinaryInfo.sizeLabel}</span>
763
+ {fileBinaryInfo.message && <span className="text-[10px]">{fileBinaryInfo.message}</span>}
764
+ <span className="text-[10px]">Binary file cannot be displayed</span>
765
+ </div>
766
+ </>
767
+ ) : selectedFile && fileContent !== null ? (
768
+ <>
769
+ <div className="px-3 py-1 border-b border-[var(--border)] text-[10px] text-[var(--text-secondary)] sticky top-0 bg-[var(--bg-primary)] z-10">{selectedFile}</div>
770
+ <pre className="p-4 text-[12px] leading-[1.5] font-mono text-[var(--text-primary)] whitespace-pre" style={{ fontFamily: 'Menlo, Monaco, "Courier New", monospace', tabSize: 2 }}>
771
+ {fileContent.split('\n').map((line, i) => (
772
+ <div key={i} className="flex hover:bg-[var(--bg-tertiary)]/50">
773
+ <span className="select-none text-[var(--text-secondary)]/40 text-right pr-4 w-10 shrink-0">{i + 1}</span>
774
+ <span className="flex-1">{highlightLine(line)}</span>
775
+ </div>
776
+ ))}
777
+ </pre>
778
+ </>
779
+ ) : (
780
+ <div className="flex-1 flex items-center justify-center text-xs text-[var(--text-secondary)]">
781
+ Select a file to view
782
+ </div>
783
+ )}
784
+ </div>
785
+ </div>}
786
+
787
+ {/* Skills & Commands tab */}
788
+ {projectTab === 'skills' && (
789
+ <div className="flex-1 flex min-h-0 overflow-hidden">
790
+ {/* Left: skill/command tree */}
791
+ <div style={{ width: sidebarWidth }} className="overflow-y-auto p-1 shrink-0">
792
+ {projectSkills.length === 0 ? (
793
+ <p className="text-[9px] text-[var(--text-secondary)] p-2">No skills or commands installed</p>
794
+ ) : (
795
+ projectSkills.map(s => (
796
+ <div key={`${s.name}-${s.scope}-${s.source}`}>
797
+ <button
798
+ onClick={() => toggleSkillItem(s.name, s.type, s.scope)}
799
+ className={`w-full text-left px-2 py-1 text-[10px] rounded flex items-center gap-1.5 group ${
800
+ expandedSkillItem === s.name ? 'bg-[var(--accent)]/10 text-[var(--accent)]' : 'text-[var(--text-primary)] hover:bg-[var(--bg-tertiary)]'
801
+ }`}
802
+ >
803
+ <span className="text-[8px] text-[var(--text-secondary)]">{expandedSkillItem === s.name ? '▾' : '▸'}</span>
804
+ <span className={`text-[7px] px-1 rounded font-medium shrink-0 ${
805
+ s.type === 'skill' ? 'bg-purple-500/20 text-purple-400' : 'bg-blue-500/20 text-blue-400'
806
+ }`}>{s.type === 'skill' ? 'S' : 'C'}</span>
807
+ <span className="truncate flex-1">{s.name}</span>
808
+ <span className={`text-[7px] shrink-0 ${s.scope === 'global' ? 'text-green-400' : 'text-[var(--accent)]'}`}>{s.scope === 'global' ? 'G' : s.scope === 'project' ? 'P' : 'G+P'}</span>
809
+ {s.hasUpdate && <span className="text-[7px] text-[var(--yellow)] shrink-0">!</span>}
810
+ {s.source === 'local' && <span className="text-[7px] text-[var(--text-secondary)] shrink-0">local</span>}
811
+ {s.source === 'registry' && <span className="text-[7px] text-[var(--accent)] shrink-0">mkt</span>}
812
+ <span
813
+ onClick={(e) => { e.stopPropagation(); uninstallSkill(s.name, s.scope); }}
814
+ className="text-[8px] text-[var(--text-secondary)] hover:text-[var(--red)] shrink-0 opacity-0 group-hover:opacity-100 cursor-pointer"
815
+ >x</span>
816
+ </button>
817
+ {/* Expanded file list */}
818
+ {expandedSkillItem === s.name && skillItemFiles.length > 0 && (
819
+ <div className="ml-4">
820
+ {skillItemFiles.map(f => (
821
+ <button
822
+ key={f.path}
823
+ onClick={() => loadSkillFile(s.name, s.type, f.path, s.scope === 'global' ? '' : projectPath)}
824
+ className={`w-full text-left px-2 py-0.5 text-[9px] rounded truncate ${
825
+ skillActivePath === f.path ? 'text-[var(--accent)] bg-[var(--accent)]/10' : 'text-[var(--text-secondary)] hover:text-[var(--text-primary)]'
826
+ }`}
827
+ title={f.path}
828
+ >
829
+ {f.path.split('/').pop()}
830
+ </button>
831
+ ))}
832
+ </div>
833
+ )}
834
+ </div>
835
+ ))
836
+ )}
837
+ </div>
838
+
839
+ {/* Sidebar resize handle */}
840
+ <div
841
+ onMouseDown={onSidebarDragStart}
842
+ className="w-1 bg-[var(--border)] cursor-col-resize shrink-0 hover:bg-[var(--accent)]/50 transition-colors"
843
+ />
844
+
845
+ {/* Right: file content / editor */}
846
+ <div className="flex-1 min-w-0 flex flex-col overflow-hidden bg-[var(--bg-primary)]">
847
+ {skillActivePath ? (
848
+ <>
849
+ <div className="flex items-center gap-2 px-3 py-1 border-b border-[var(--border)] shrink-0">
850
+ <span className="text-[10px] text-[var(--text-secondary)] font-mono truncate flex-1">{skillActivePath}</span>
851
+ {expandedSkillItem && (() => {
852
+ const s = projectSkills.find(x => x.name === expandedSkillItem);
853
+ return s && (
854
+ <div className="flex items-center gap-2 shrink-0">
855
+ {s.version && <span className="text-[8px] text-[var(--text-secondary)] font-mono">v{s.installedVersion || s.version}</span>}
856
+ {s.hasUpdate && (
857
+ <button
858
+ onClick={() => handleUpdate(s.name)}
859
+ className="text-[8px] px-1.5 py-0.5 rounded bg-[var(--yellow)]/20 text-[var(--yellow)] hover:bg-[var(--yellow)]/30"
860
+ >Update → v{s.version}</button>
861
+ )}
862
+ </div>
863
+ );
864
+ })()}
865
+ {!skillEditing ? (
866
+ <button
867
+ onClick={() => { setSkillEditing(true); setSkillEditContent(skillFileContent); }}
868
+ className="text-[9px] text-[var(--accent)] hover:underline shrink-0"
869
+ >Edit</button>
870
+ ) : (
871
+ <div className="flex gap-1 shrink-0">
872
+ <button
873
+ onClick={() => { if (expandedSkillItem) saveSkillFile(expandedSkillItem, projectSkills.find(x => x.name === expandedSkillItem)?.type || 'command', skillActivePath); }}
874
+ disabled={skillSaving}
875
+ className="text-[9px] px-2 py-0.5 bg-[var(--accent)] text-white rounded hover:opacity-90 disabled:opacity-50"
876
+ >{skillSaving ? '...' : 'Save'}</button>
877
+ <button
878
+ onClick={() => setSkillEditing(false)}
879
+ className="text-[9px] text-[var(--text-secondary)] hover:text-[var(--text-primary)]"
880
+ >Cancel</button>
881
+ </div>
882
+ )}
883
+ </div>
884
+ <div className="flex-1 overflow-auto">
885
+ {skillEditing ? (
886
+ <textarea
887
+ value={skillEditContent}
888
+ onChange={e => setSkillEditContent(e.target.value)}
889
+ className="w-full h-full p-3 text-[11px] font-mono bg-[var(--bg-primary)] text-[var(--text-primary)] border-none outline-none resize-none"
890
+ spellCheck={false}
891
+ />
892
+ ) : (
893
+ <pre className="p-3 text-[11px] leading-[1.5] font-mono text-[var(--text-primary)] whitespace-pre-wrap break-words">
894
+ {skillFileContent}
895
+ </pre>
896
+ )}
897
+ </div>
898
+ </>
899
+ ) : (
900
+ <div className="flex-1 flex items-center justify-center text-xs text-[var(--text-secondary)]">
901
+ Select a skill or command to view
902
+ </div>
903
+ )}
904
+ </div>
905
+ </div>
906
+ )}
907
+
908
+ {/* CLAUDE.md tab */}
909
+ {projectTab === 'claudemd' && (
910
+ <div className="flex-1 flex min-h-0 overflow-hidden">
911
+ {/* Left: templates list */}
912
+ <div style={{ width: sidebarWidth }} className="overflow-y-auto shrink-0 flex flex-col">
913
+ <button
914
+ onClick={() => { setClaudeSelectedTemplate(null); setClaudeEditing(false); }}
915
+ className={`w-full px-2 py-1.5 border-b border-[var(--border)] text-[10px] text-left flex items-center gap-1 ${
916
+ !claudeSelectedTemplate && !claudeEditing ? 'text-[var(--accent)] bg-[var(--accent)]/5' : 'text-[var(--text-primary)] hover:bg-[var(--bg-tertiary)]'
917
+ }`}
918
+ >
919
+ <span className="font-mono">CLAUDE.md</span>
920
+ {claudeMdExists && <span className="text-[var(--green)] text-[8px]">•</span>}
921
+ </button>
922
+ <div className="px-2 py-1 border-b border-[var(--border)] text-[8px] text-[var(--text-secondary)] uppercase">Templates</div>
923
+ <div className="flex-1 overflow-y-auto">
924
+ {claudeTemplates.map(t => {
925
+ const injected = claudeInjectedIds.has(t.id);
926
+ const isSelected = claudeSelectedTemplate === t.id;
927
+ return (
928
+ <div
929
+ key={t.id}
930
+ className={`px-2 py-1.5 border-b border-[var(--border)]/30 cursor-pointer ${isSelected ? 'bg-[var(--accent)]/10' : 'hover:bg-[var(--bg-tertiary)]'}`}
931
+ onClick={() => setClaudeSelectedTemplate(isSelected ? null : t.id)}
932
+ >
933
+ <div className="flex items-center gap-1.5">
934
+ <span className="text-[10px] text-[var(--text-primary)] truncate flex-1">{t.name}</span>
935
+ {t.builtin && <span className="text-[7px] text-[var(--text-secondary)]">built-in</span>}
936
+ {injected ? (
937
+ <button
938
+ onClick={(e) => { e.stopPropagation(); removeFromProject(t.id); }}
939
+ className="text-[7px] px-1 rounded bg-green-500/10 text-green-400 hover:bg-red-500/10 hover:text-red-400"
940
+ title="Remove from CLAUDE.md"
941
+ >added</button>
942
+ ) : (
943
+ <button
944
+ onClick={(e) => { e.stopPropagation(); injectToProject(t.id); }}
945
+ className="text-[7px] px-1 rounded bg-[var(--accent)]/10 text-[var(--accent)] hover:bg-[var(--accent)]/20"
946
+ title="Add to CLAUDE.md"
947
+ >+ add</button>
948
+ )}
949
+ </div>
950
+ <p className="text-[8px] text-[var(--text-secondary)] mt-0.5 line-clamp-1">{t.description}</p>
951
+ </div>
952
+ );
953
+ })}
954
+ </div>
955
+ </div>
956
+
957
+ {/* Sidebar resize handle */}
958
+ <div
959
+ onMouseDown={onSidebarDragStart}
960
+ className="w-1 bg-[var(--border)] cursor-col-resize shrink-0 hover:bg-[var(--accent)]/50 transition-colors"
961
+ />
962
+
963
+ {/* Right: CLAUDE.md content or template preview */}
964
+ <div className="flex-1 min-w-0 flex flex-col overflow-hidden bg-[var(--bg-primary)]">
965
+ {/* Header bar */}
966
+ <div className="flex items-center gap-2 px-3 py-1.5 border-b border-[var(--border)] shrink-0">
967
+ {claudeSelectedTemplate ? (
968
+ <>
969
+ <span className="text-[10px] text-[var(--text-secondary)]">Preview:</span>
970
+ <span className="text-[10px] text-[var(--text-primary)] font-semibold">{claudeTemplates.find(t => t.id === claudeSelectedTemplate)?.name}</span>
971
+ <button
972
+ onClick={() => setClaudeSelectedTemplate(null)}
973
+ className="text-[9px] text-[var(--text-secondary)] hover:text-[var(--text-primary)] ml-auto"
974
+ >Show CLAUDE.md</button>
975
+ </>
976
+ ) : (
977
+ <>
978
+ <span className="text-[10px] text-[var(--text-primary)] font-mono">CLAUDE.md</span>
979
+ {!claudeMdExists && <span className="text-[8px] text-[var(--yellow)]">not created</span>}
980
+ <div className="flex items-center gap-1 ml-auto">
981
+ {!claudeEditing ? (
982
+ <button
983
+ onClick={() => { setClaudeEditing(true); setClaudeEditContent(claudeMdContent); }}
984
+ className="text-[9px] text-[var(--accent)] hover:underline"
985
+ >Edit</button>
986
+ ) : (
987
+ <>
988
+ <button
989
+ onClick={() => saveClaudeMd(claudeEditContent)}
990
+ className="text-[9px] px-2 py-0.5 bg-[var(--accent)] text-white rounded hover:opacity-90"
991
+ >Save</button>
992
+ <button
993
+ onClick={() => setClaudeEditing(false)}
994
+ className="text-[9px] text-[var(--text-secondary)] hover:text-[var(--text-primary)]"
995
+ >Cancel</button>
996
+ </>
997
+ )}
998
+ </div>
999
+ </>
1000
+ )}
1001
+ </div>
1002
+
1003
+ {/* Content */}
1004
+ <div className="flex-1 overflow-auto" style={{ width: 0, minWidth: '100%' }}>
1005
+ {claudeSelectedTemplate ? (
1006
+ <pre className="p-3 text-[11px] font-mono text-[var(--text-primary)] whitespace-pre-wrap break-words">
1007
+ {claudeTemplates.find(t => t.id === claudeSelectedTemplate)?.content || ''}
1008
+ </pre>
1009
+ ) : claudeEditing ? (
1010
+ <textarea
1011
+ value={claudeEditContent}
1012
+ onChange={e => setClaudeEditContent(e.target.value)}
1013
+ className="w-full h-full p-3 text-[11px] font-mono bg-[var(--bg-primary)] text-[var(--text-primary)] border-none outline-none resize-none"
1014
+ spellCheck={false}
1015
+ />
1016
+ ) : (
1017
+ <pre className="p-3 text-[11px] font-mono text-[var(--text-primary)] whitespace-pre-wrap break-words">
1018
+ {claudeMdContent || '(Empty — add templates or edit directly)'}
1019
+ </pre>
1020
+ )}
1021
+ </div>
1022
+ </div>
1023
+ </div>
1024
+ )}
1025
+
1026
+ {/* Pipelines tab */}
1027
+ {projectTab === 'pipelines' && (
1028
+ <div className="flex-1 overflow-auto p-4 space-y-4">
1029
+ {/* Bound workflows */}
1030
+ <div className="space-y-3">
1031
+ <div className="flex items-center gap-2">
1032
+ <span className="text-xs font-semibold text-[var(--text-primary)]">Bound Pipelines</span>
1033
+ <button
1034
+ onClick={() => setShowAddPipeline(v => !v)}
1035
+ className="text-[9px] px-2 py-0.5 bg-[var(--accent)] text-white rounded hover:opacity-90 ml-auto"
1036
+ >+ Add</button>
1037
+ </div>
1038
+
1039
+ {/* Add pipeline form */}
1040
+ {showAddPipeline && (
1041
+ <div className="border border-[var(--border)] rounded p-2 space-y-2">
1042
+ {availableWorkflows.filter(w => !pipelineBindings.find(b => b.workflowName === w.name)).map(w => (
1043
+ <button
1044
+ key={w.name}
1045
+ onClick={async () => {
1046
+ await fetch('/api/project-pipelines', {
1047
+ method: 'POST',
1048
+ headers: { 'Content-Type': 'application/json' },
1049
+ body: JSON.stringify({ action: 'add', projectPath, projectName, workflowName: w.name }),
1050
+ });
1051
+ setShowAddPipeline(false);
1052
+ fetchPipelineBindings();
1053
+ }}
1054
+ className="w-full text-left px-2 py-1.5 rounded hover:bg-[var(--bg-tertiary)] text-[10px] flex items-center gap-2"
1055
+ >
1056
+ {w.builtin && <span className="text-[7px] text-[var(--text-secondary)]">⚙</span>}
1057
+ <span className="text-[var(--text-primary)]">{w.name}</span>
1058
+ {w.description && <span className="text-[var(--text-secondary)] truncate ml-auto text-[8px]">{w.description}</span>}
1059
+ </button>
1060
+ ))}
1061
+ {availableWorkflows.filter(w => !pipelineBindings.find(b => b.workflowName === w.name)).length === 0 && (
1062
+ <p className="text-[9px] text-[var(--text-secondary)] p-2">All workflows already bound</p>
1063
+ )}
1064
+ </div>
1065
+ )}
1066
+
1067
+ {/* Bound pipeline list */}
1068
+ {pipelineBindings.length === 0 ? (
1069
+ <p className="text-[10px] text-[var(--text-secondary)]">No pipelines bound. Click + Add to attach a workflow.</p>
1070
+ ) : (
1071
+ pipelineBindings.map(b => (
1072
+ <div key={b.workflowName} className="border border-[var(--border)] rounded p-3 space-y-2">
1073
+ <div className="flex items-center gap-2">
1074
+ <span className="text-[11px] font-semibold text-[var(--text-primary)]">{b.workflowName}</span>
1075
+ <label className="flex items-center gap-1 text-[9px] text-[var(--text-secondary)] cursor-pointer ml-auto">
1076
+ <input type="checkbox" checked={b.enabled} onChange={async (e) => {
1077
+ await fetch('/api/project-pipelines', {
1078
+ method: 'POST',
1079
+ headers: { 'Content-Type': 'application/json' },
1080
+ body: JSON.stringify({ action: 'update', projectPath, workflowName: b.workflowName, enabled: e.target.checked }),
1081
+ });
1082
+ fetchPipelineBindings();
1083
+ }} className="accent-[var(--accent)]" />
1084
+ Enabled
1085
+ </label>
1086
+ <div className="relative">
1087
+ <button
1088
+ onClick={() => {
1089
+ const isIssueWf = b.workflowName === 'issue-auto-fix' || b.workflowName === 'issue-fix-and-review';
1090
+ if (!isIssueWf) {
1091
+ triggerProjectPipeline(b.workflowName, triggerInput);
1092
+ } else {
1093
+ setRunMenu(runMenu === b.workflowName ? null : b.workflowName);
1094
+ setIssueInput('');
1095
+ }
1096
+ }}
1097
+ className="text-[9px] px-2 py-0.5 border border-[var(--accent)] text-[var(--accent)] rounded hover:bg-[var(--accent)] hover:text-white"
1098
+ >Run</button>
1099
+ {runMenu === b.workflowName && (
1100
+ <div className="absolute top-full right-0 mt-1 z-20 bg-[var(--bg-secondary)] border border-[var(--border)] rounded shadow-lg p-2 space-y-2 w-[200px]">
1101
+ <button
1102
+ onClick={async () => {
1103
+ setRunMenu(null);
1104
+ try {
1105
+ const res = await fetch('/api/project-pipelines', {
1106
+ method: 'POST',
1107
+ headers: { 'Content-Type': 'application/json' },
1108
+ body: JSON.stringify({ action: 'scan-now', projectPath, projectName, workflowName: b.workflowName }),
1109
+ });
1110
+ const data = await res.json();
1111
+ if (data.error) alert(`Scan error: ${data.error}`);
1112
+ else alert(`Scanned ${data.total} issues, triggered ${data.triggered} fix${data.pending > 0 ? ` (${data.pending} more pending)` : ''}`);
1113
+ fetchPipelineBindings();
1114
+ } catch { alert('Scan failed'); }
1115
+ }}
1116
+ className="w-full text-[9px] px-2 py-1.5 rounded border border-green-500/50 text-green-400 hover:bg-green-500/10 font-medium"
1117
+ >Auto Scan — fix all new issues</button>
1118
+ <div className="border-t border-[var(--border)]/50 my-1" />
1119
+ <div className="flex items-center gap-1">
1120
+ <input
1121
+ type="text"
1122
+ value={issueInput}
1123
+ onChange={e => setIssueInput(e.target.value)}
1124
+ placeholder="Issue #"
1125
+ className="flex-1 bg-[var(--bg-tertiary)] border border-[var(--border)] rounded px-2 py-1 text-[9px] text-[var(--text-primary)]"
1126
+ onKeyDown={e => {
1127
+ if (e.key === 'Enter' && issueInput.trim()) {
1128
+ setRunMenu(null);
1129
+ triggerProjectPipeline(b.workflowName, {
1130
+ ...triggerInput,
1131
+ issue_id: issueInput.trim(),
1132
+ base_branch: b.config.baseBranch || 'auto-detect',
1133
+ });
1134
+ }
1135
+ }}
1136
+ autoFocus
1137
+ />
1138
+ <button
1139
+ onClick={() => {
1140
+ if (!issueInput.trim()) return;
1141
+ setRunMenu(null);
1142
+ triggerProjectPipeline(b.workflowName, {
1143
+ ...triggerInput,
1144
+ issue_id: issueInput.trim(),
1145
+ base_branch: b.config.baseBranch || 'auto-detect',
1146
+ });
1147
+ }}
1148
+ className="text-[9px] px-2 py-1 bg-[var(--accent)] text-white rounded hover:opacity-80"
1149
+ >Fix</button>
1150
+ </div>
1151
+ </div>
1152
+ )}
1153
+ </div>
1154
+ <button
1155
+ onClick={async () => {
1156
+ if (!confirm(`Remove "${b.workflowName}" from this project?`)) return;
1157
+ await fetch('/api/project-pipelines', {
1158
+ method: 'POST',
1159
+ headers: { 'Content-Type': 'application/json' },
1160
+ body: JSON.stringify({ action: 'remove', projectPath, workflowName: b.workflowName }),
1161
+ });
1162
+ fetchPipelineBindings();
1163
+ }}
1164
+ className="text-[9px] text-[var(--red)] hover:underline"
1165
+ >Remove</button>
1166
+ </div>
1167
+ {/* Schedule config */}
1168
+ <div className="flex items-center gap-2 text-[9px]">
1169
+ <span className="text-[var(--text-secondary)]">Schedule:</span>
1170
+ <select
1171
+ value={b.config.interval || 0}
1172
+ onChange={async (e) => {
1173
+ const interval = Number(e.target.value);
1174
+ const newConfig = { ...b.config, interval };
1175
+ await fetch('/api/project-pipelines', {
1176
+ method: 'POST',
1177
+ headers: { 'Content-Type': 'application/json' },
1178
+ body: JSON.stringify({ action: 'update', projectPath, workflowName: b.workflowName, config: newConfig }),
1179
+ });
1180
+ fetchPipelineBindings();
1181
+ }}
1182
+ className="bg-[var(--bg-secondary)] border border-[var(--border)] rounded px-1.5 py-0.5 text-[9px] text-[var(--text-primary)]"
1183
+ >
1184
+ <option value={0}>Manual only</option>
1185
+ <option value={15}>Every 15 min</option>
1186
+ <option value={30}>Every 30 min</option>
1187
+ <option value={60}>Every 1 hour</option>
1188
+ <option value={120}>Every 2 hours</option>
1189
+ <option value={360}>Every 6 hours</option>
1190
+ <option value={720}>Every 12 hours</option>
1191
+ <option value={1440}>Every 24 hours</option>
1192
+ </select>
1193
+ {b.config.interval > 0 && b.nextRunAt && (
1194
+ <span className="text-[8px] text-[var(--text-secondary)]">
1195
+ Next: {new Date(b.nextRunAt).toLocaleString([], { month: 'short', day: 'numeric', hour: '2-digit', minute: '2-digit' })}
1196
+ </span>
1197
+ )}
1198
+ {b.lastRunAt && (
1199
+ <span className="text-[8px] text-[var(--text-secondary)] ml-auto">
1200
+ Last: {new Date(b.lastRunAt).toLocaleString([], { month: 'short', day: 'numeric', hour: '2-digit', minute: '2-digit' })}
1201
+ </span>
1202
+ )}
1203
+ </div>
1204
+ {/* Issue scan config (for issue-fix-and-review workflow) */}
1205
+ {(b.workflowName === 'issue-auto-fix' || b.workflowName === 'issue-fix-and-review') && (
1206
+ <div className="space-y-1.5 pt-1 border-t border-[var(--border)]/30">
1207
+ <div className="text-[8px] text-[var(--text-secondary)]">
1208
+ {b.config.interval > 0
1209
+ ? 'Scheduled mode: auto-scans GitHub issues and fixes new ones'
1210
+ : 'Requires: gh auth login (run in terminal first)'}
1211
+ </div>
1212
+ <div className="flex items-center gap-2 text-[9px]">
1213
+ <label className="text-[var(--text-secondary)]">Labels:</label>
1214
+ <input
1215
+ type="text"
1216
+ defaultValue={(b.config.labels || []).join(', ')}
1217
+ placeholder="bug, autofix (empty = all)"
1218
+ onBlur={async (e) => {
1219
+ const labels = e.target.value.split(',').map((s: string) => s.trim()).filter(Boolean);
1220
+ const newConfig = { ...b.config, labels };
1221
+ await fetch('/api/project-pipelines', {
1222
+ method: 'POST',
1223
+ headers: { 'Content-Type': 'application/json' },
1224
+ body: JSON.stringify({ action: 'update', projectPath, workflowName: b.workflowName, config: newConfig }),
1225
+ });
1226
+ fetchPipelineBindings();
1227
+ }}
1228
+ className="flex-1 bg-[var(--bg-secondary)] border border-[var(--border)] rounded px-1.5 py-0.5 text-[9px] text-[var(--text-primary)]"
1229
+ />
1230
+ <label className="text-[var(--text-secondary)]">Base:</label>
1231
+ <input
1232
+ type="text"
1233
+ defaultValue={b.config.baseBranch || ''}
1234
+ placeholder="auto-detect"
1235
+ onBlur={async (e) => {
1236
+ const newConfig = { ...b.config, baseBranch: e.target.value.trim() || undefined };
1237
+ await fetch('/api/project-pipelines', {
1238
+ method: 'POST',
1239
+ headers: { 'Content-Type': 'application/json' },
1240
+ body: JSON.stringify({ action: 'update', projectPath, workflowName: b.workflowName, config: newConfig }),
1241
+ });
1242
+ fetchPipelineBindings();
1243
+ }}
1244
+ className="w-20 bg-[var(--bg-secondary)] border border-[var(--border)] rounded px-1.5 py-0.5 text-[9px] text-[var(--text-primary)]"
1245
+ />
1246
+ </div>
1247
+ </div>
1248
+ )}
1249
+ </div>
1250
+ ))
1251
+ )}
1252
+ </div>
1253
+
1254
+ {/* Execution history */}
1255
+ {pipelineRuns.length > 0 && (
1256
+ <div className="border-t border-[var(--border)] pt-3">
1257
+ <div className="text-[9px] text-[var(--text-secondary)] uppercase mb-2">Execution History</div>
1258
+ <div className="border border-[var(--border)] rounded overflow-hidden">
1259
+ {pipelineRuns.map(run => (
1260
+ <div key={run.id} className="border-b border-[var(--border)]/30 last:border-b-0">
1261
+ <div className="flex items-start gap-2 px-3 py-2 text-[10px]">
1262
+ <span className={`shrink-0 mt-0.5 ${
1263
+ run.status === 'done' ? 'text-green-400' : run.status === 'failed' ? 'text-red-400' : run.status === 'skipped' ? 'text-gray-400' : 'text-yellow-400'
1264
+ }`}>{run.status === 'running' ? '●' : '●'}</span>
1265
+ <div className="flex-1 min-w-0">
1266
+ <div className="flex items-center gap-2">
1267
+ <span className="text-[var(--text-primary)] font-medium">{run.workflowName}</span>
1268
+ {run.dedupKey && (
1269
+ <span className="text-[8px] text-[var(--accent)] font-mono">{run.dedupKey.replace('issue:', '#')}</span>
1270
+ )}
1271
+ <button
1272
+ onClick={async () => {
1273
+ if (expandedRunId === run.pipelineId) {
1274
+ setExpandedRunId(null);
1275
+ setExpandedPipeline(null);
1276
+ } else {
1277
+ setExpandedRunId(run.pipelineId);
1278
+ const res = await fetch(`/api/pipelines/${run.pipelineId}`);
1279
+ if (res.ok) setExpandedPipeline(await res.json());
1280
+ }
1281
+ }}
1282
+ className={`text-[8px] font-mono hover:underline ${expandedRunId === run.pipelineId ? 'text-[var(--accent)] font-bold' : 'text-[var(--accent)]'}`}
1283
+ title="Expand / View in Pipelines"
1284
+ >{run.status === 'running' ? '▾ ' : ''}{run.pipelineId.slice(0, 8)}</button>
1285
+ <button
1286
+ onClick={() => window.dispatchEvent(new CustomEvent('forge:navigate', { detail: { view: 'pipelines', pipelineId: run.pipelineId } }))}
1287
+ className="text-[7px] text-[var(--text-secondary)] hover:text-[var(--accent)]"
1288
+ title="Open in Pipeline page"
1289
+ >↗</button>
1290
+ <span className="text-[8px] text-[var(--text-secondary)] ml-auto">{new Date(run.createdAt).toLocaleString([], { month: 'short', day: 'numeric', hour: '2-digit', minute: '2-digit' })}</span>
1291
+ </div>
1292
+ {!expandedRunId && run.summary && (
1293
+ <pre className="text-[9px] text-[var(--text-secondary)] mt-1 whitespace-pre-wrap break-words line-clamp-3">{run.summary}</pre>
1294
+ )}
1295
+ </div>
1296
+ <div className="flex items-center gap-1 shrink-0">
1297
+ {run.status === 'running' && (
1298
+ <button
1299
+ onClick={async () => {
1300
+ await fetch(`/api/pipelines/${run.pipelineId}`, {
1301
+ method: 'POST',
1302
+ headers: { 'Content-Type': 'application/json' },
1303
+ body: JSON.stringify({ action: 'cancel' }),
1304
+ });
1305
+ fetchPipelineBindings();
1306
+ }}
1307
+ className="text-[8px] text-red-400 hover:underline"
1308
+ >Cancel</button>
1309
+ )}
1310
+ {run.status === 'failed' && run.dedupKey && (
1311
+ <button
1312
+ onClick={async () => {
1313
+ await fetch('/api/project-pipelines', {
1314
+ method: 'POST',
1315
+ headers: { 'Content-Type': 'application/json' },
1316
+ body: JSON.stringify({ action: 'reset-dedup', projectPath, workflowName: run.workflowName, dedupKey: run.dedupKey }),
1317
+ });
1318
+ await fetch('/api/project-pipelines', {
1319
+ method: 'POST',
1320
+ headers: { 'Content-Type': 'application/json' },
1321
+ body: JSON.stringify({ action: 'delete-run', id: run.id }),
1322
+ });
1323
+ fetchPipelineBindings();
1324
+ }}
1325
+ className="text-[8px] text-[var(--accent)] hover:underline"
1326
+ >Retry</button>
1327
+ )}
1328
+ <button
1329
+ onClick={async () => {
1330
+ if (!confirm('Delete this run?')) return;
1331
+ await fetch('/api/project-pipelines', {
1332
+ method: 'POST',
1333
+ headers: { 'Content-Type': 'application/json' },
1334
+ body: JSON.stringify({ action: 'delete-run', id: run.id }),
1335
+ });
1336
+ if (expandedRunId === run.pipelineId) { setExpandedRunId(null); setExpandedPipeline(null); }
1337
+ fetchPipelineBindings();
1338
+ }}
1339
+ className="text-[8px] text-[var(--text-secondary)] hover:text-[var(--red)]"
1340
+ >×</button>
1341
+ </div>
1342
+ </div>
1343
+ {/* Expanded inline pipeline view */}
1344
+ {expandedRunId === run.pipelineId && expandedPipeline && (
1345
+ <Suspense fallback={<div className="p-2 text-[9px] text-[var(--text-secondary)]">Loading...</div>}>
1346
+ <InlinePipelineView
1347
+ pipeline={expandedPipeline}
1348
+ onRefresh={async () => {
1349
+ const res = await fetch(`/api/pipelines/${run.pipelineId}`);
1350
+ if (res.ok) setExpandedPipeline(await res.json());
1351
+ }}
1352
+ />
1353
+ </Suspense>
1354
+ )}
1355
+ </div>
1356
+ ))}
1357
+ </div>
1358
+ </div>
1359
+ )}
1360
+ </div>
1361
+ )}
1362
+
1363
+ {/* Git panel — bottom (code tab only) */}
1364
+ {projectTab === 'code' && gitInfo && (
1365
+ <div className="border-t border-[var(--border)] shrink-0">
1366
+ {/* Changes list */}
1367
+ {gitInfo.changes.length > 0 && (
1368
+ <>
1369
+ <div className="overflow-y-auto border-b border-[var(--border)]" style={{ height: changesHeight }}>
1370
+ <div className="px-3 py-1 text-[9px] text-[var(--text-secondary)] bg-[var(--bg-tertiary)] sticky top-0 flex items-center gap-1 cursor-pointer z-10" onClick={() => {
1371
+ setChangesExpanded(!changesExpanded);
1372
+ setChangesHeight(changesExpanded ? 120 : Math.min(400, gitInfo.changes.length * 22 + 24));
1373
+ }}>
1374
+ <span>{changesExpanded ? '▼' : '▶'}</span>
1375
+ <span>{gitInfo.changes.length} changes</span>
1376
+ <button onClick={(e) => { e.stopPropagation(); fetchGitInfo(); }} className="ml-auto text-[8px] hover:text-[var(--accent)]" title="Refresh">↻</button>
1377
+ </div>
1378
+ {gitInfo.changes.map(g => (
1379
+ <div key={g.path} className="flex items-center px-3 py-0.5 text-xs hover:bg-[var(--bg-tertiary)] group">
1380
+ <span className={`text-[10px] font-mono w-4 shrink-0 ${
1381
+ g.status.includes('M') ? 'text-yellow-500' :
1382
+ g.status.includes('?') ? 'text-green-500' :
1383
+ g.status.includes('D') ? 'text-red-500' : 'text-[var(--text-secondary)]'
1384
+ }`}>
1385
+ {g.status.includes('?') ? '+' : g.status[0]}
1386
+ </span>
1387
+ <button
1388
+ onClick={() => openDiff(g.path)}
1389
+ className={`truncate flex-1 text-left ml-1 ${diffFile === g.path ? 'text-[var(--accent)]' : 'text-[var(--text-secondary)] hover:text-[var(--text-primary)]'}`}
1390
+ title="View diff"
1391
+ >
1392
+ {g.path}
1393
+ </button>
1394
+ <button
1395
+ onClick={() => openFile(g.path)}
1396
+ className="text-[8px] text-[var(--text-secondary)] hover:text-[var(--accent)] opacity-0 group-hover:opacity-100 shrink-0 ml-1"
1397
+ title="Open source file"
1398
+ >
1399
+ src
1400
+ </button>
1401
+ </div>
1402
+ ))}
1403
+ </div>
1404
+ {/* Drag handle to resize changes list */}
1405
+ <div
1406
+ className="h-1 cursor-ns-resize hover:bg-[var(--accent)]/30 border-b border-[var(--border)]"
1407
+ onMouseDown={(e) => {
1408
+ e.preventDefault();
1409
+ changesResizeRef.current = { startY: e.clientY, origH: changesHeight };
1410
+ const onMove = (ev: MouseEvent) => {
1411
+ if (!changesResizeRef.current) return;
1412
+ setChangesHeight(Math.max(60, Math.min(600, changesResizeRef.current.origH + ev.clientY - changesResizeRef.current.startY)));
1413
+ };
1414
+ const onUp = () => { changesResizeRef.current = null; window.removeEventListener('mousemove', onMove); window.removeEventListener('mouseup', onUp); };
1415
+ window.addEventListener('mousemove', onMove);
1416
+ window.addEventListener('mouseup', onUp);
1417
+ }}
1418
+ />
1419
+ </>
1420
+ )}
1421
+
1422
+ {/* Git actions */}
1423
+ <div className="px-3 py-2 flex items-center gap-2">
1424
+ <input
1425
+ value={commitMsg}
1426
+ onChange={e => setCommitMsg(e.target.value)}
1427
+ onKeyDown={e => e.key === 'Enter' && commitMsg.trim() && gitAction('commit', { message: commitMsg.trim() })}
1428
+ placeholder="Commit message..."
1429
+ className="flex-1 text-xs bg-[var(--bg-tertiary)] border border-[var(--border)] rounded px-2 py-1.5 text-[var(--text-primary)] focus:outline-none focus:border-[var(--accent)]"
1430
+ />
1431
+ <button
1432
+ onClick={() => commitMsg.trim() && gitAction('commit', { message: commitMsg.trim() })}
1433
+ disabled={gitLoading || !commitMsg.trim() || gitInfo.changes.length === 0}
1434
+ className="text-[10px] px-3 py-1.5 bg-[var(--accent)] text-white rounded hover:opacity-90 disabled:opacity-50 shrink-0"
1435
+ >
1436
+ Commit
1437
+ </button>
1438
+ <button
1439
+ onClick={() => gitAction('push')}
1440
+ disabled={gitLoading || gitInfo.ahead === 0}
1441
+ className="text-[10px] px-3 py-1.5 border border-[var(--accent)] text-[var(--accent)] rounded hover:bg-[var(--accent)] hover:text-white disabled:opacity-50 shrink-0"
1442
+ >
1443
+ Push{gitInfo.ahead > 0 ? ` (${gitInfo.ahead})` : ''}
1444
+ </button>
1445
+ <button
1446
+ onClick={() => gitAction('pull')}
1447
+ disabled={gitLoading}
1448
+ className="text-[10px] px-3 py-1.5 text-[var(--text-secondary)] hover:text-[var(--text-primary)] shrink-0"
1449
+ >
1450
+ Pull{gitInfo.behind > 0 ? ` (${gitInfo.behind})` : ''}
1451
+ </button>
1452
+ </div>
1453
+
1454
+ {/* Result */}
1455
+ {gitResult && (
1456
+ <div className={`px-3 py-1 text-[10px] ${gitResult.ok ? 'text-green-400' : 'text-red-400'}`}>
1457
+ {gitResult.ok ? 'Done' : gitResult.error}
1458
+ </div>
1459
+ )}
1460
+ </div>
1461
+ )}
1462
+
1463
+ </>
1464
+ );
1465
+ });
1466
+
1467
+ // Simple file tree node
1468
+ const FileTreeNode = memo(function FileTreeNode({ node, depth, selected, onSelect }: {
1469
+ node: { name: string; path: string; type: string; children?: any[] };
1470
+ depth: number;
1471
+ selected: string | null;
1472
+ onSelect: (path: string) => void;
1473
+ }) {
1474
+ const [expanded, setExpanded] = useState(depth < 1);
1475
+
1476
+ if (node.type === 'dir') {
1477
+ return (
1478
+ <div>
1479
+ <button
1480
+ onClick={() => setExpanded(v => !v)}
1481
+ className="w-full text-left flex items-center gap-1 px-1 py-0.5 hover:bg-[var(--bg-tertiary)] rounded text-xs"
1482
+ style={{ paddingLeft: depth * 12 + 4 }}
1483
+ >
1484
+ <span className="text-[10px] text-[var(--text-secondary)] w-3">{expanded ? '▾' : '▸'}</span>
1485
+ <span className="text-[var(--text-primary)]">{node.name}</span>
1486
+ </button>
1487
+ {expanded && node.children?.map((child: any) => (
1488
+ <FileTreeNode key={child.path} node={child} depth={depth + 1} selected={selected} onSelect={onSelect} />
1489
+ ))}
1490
+ </div>
1491
+ );
1492
+ }
1493
+
1494
+ return (
1495
+ <button
1496
+ onClick={() => onSelect(node.path)}
1497
+ className={`w-full text-left px-1 py-0.5 rounded text-xs truncate ${
1498
+ selected === node.path ? 'bg-[var(--accent)]/20 text-[var(--accent)]' : 'hover:bg-[var(--bg-tertiary)] text-[var(--text-secondary)]'
1499
+ }`}
1500
+ style={{ paddingLeft: depth * 12 + 16 }}
1501
+ >
1502
+ {node.name}
1503
+ </button>
1504
+ );
1505
+ });
1506
+
1507
+ // ─── Agent Terminal Button ───────────────────────────────
1508
+
1509
+ function AgentTerminalButton({ projectPath, projectName }: { projectPath: string; projectName: string }) {
1510
+ const [agents, setAgents] = useState<{ id: string; name: string; detected?: boolean; isProfile?: boolean; base?: string; backendType?: string; env?: Record<string, string>; model?: string }[]>([]);
1511
+ const [showMenu, setShowMenu] = useState(false);
1512
+ const [pickerInfo, setPickerInfo] = useState<{ agentId: string; agentName: string; env?: Record<string, string>; model?: string; supportsSession: boolean; currentSessionId: string | null } | null>(null);
1513
+ const ref = useRef<HTMLDivElement>(null);
1514
+
1515
+ useEffect(() => {
1516
+ fetch('/api/agents').then(r => r.json())
1517
+ .then(d => setAgents(d.agents || []))
1518
+ .catch(() => {});
1519
+ }, []);
1520
+
1521
+ useEffect(() => {
1522
+ if (!showMenu) return;
1523
+ const h = (e: MouseEvent) => { if (ref.current && !ref.current.contains(e.target as globalThis.Node)) setShowMenu(false); };
1524
+ document.addEventListener('mousedown', h);
1525
+ return () => document.removeEventListener('mousedown', h);
1526
+ }, [showMenu]);
1527
+
1528
+ const openTerminal = (agentId: string, resumeMode?: boolean, sessionId?: string, env?: Record<string, string>, model?: string) => {
1529
+ setPickerInfo(null);
1530
+ setShowMenu(false);
1531
+ const profileEnv: Record<string, string> = { ...(env || {}) };
1532
+ if (model) profileEnv.CLAUDE_MODEL = model;
1533
+ window.dispatchEvent(new CustomEvent('forge:open-terminal', {
1534
+ detail: { projectPath, projectName, agentId, resumeMode, sessionId, profileEnv: Object.keys(profileEnv).length > 0 ? profileEnv : undefined },
1535
+ }));
1536
+ };
1537
+
1538
+ const handleAgentClick = async (a: typeof agents[0]) => {
1539
+ setShowMenu(false);
1540
+ try {
1541
+ const res = await fetch(`/api/agents?resolve=${encodeURIComponent(a.id)}`);
1542
+ const info = await res.json();
1543
+ // Resolve current session (fixedSession for this project)
1544
+ let currentSessionId: string | null = null;
1545
+ if (info.supportsSession) {
1546
+ try {
1547
+ const { resolveFixedSession } = await import('@/lib/session-utils');
1548
+ currentSessionId = await resolveFixedSession(projectPath) || null;
1549
+ } catch {}
1550
+ }
1551
+ setPickerInfo({
1552
+ agentId: a.id, agentName: a.name,
1553
+ env: info.env, model: info.model,
1554
+ supportsSession: info.supportsSession ?? true,
1555
+ currentSessionId,
1556
+ });
1557
+ } catch {
1558
+ openTerminal(a.id);
1559
+ }
1560
+ };
1561
+
1562
+ const allAgents = agents.filter(a => a.detected !== false || a.isProfile);
1563
+
1564
+ return (
1565
+ <>
1566
+ <div ref={ref} className="relative">
1567
+ <div className="flex items-center">
1568
+ <button
1569
+ onClick={() => handleAgentClick({ id: 'claude', name: 'Claude' })}
1570
+ className="text-[9px] px-2 py-0.5 border border-[var(--accent)] text-[var(--accent)] rounded-l hover:bg-[var(--accent)] hover:text-white transition-colors"
1571
+ title="Open terminal"
1572
+ >
1573
+ Terminal
1574
+ </button>
1575
+ {allAgents.length > 1 && (
1576
+ <button
1577
+ onClick={() => setShowMenu(v => !v)}
1578
+ className="text-[9px] px-1 py-0.5 border border-l-0 border-[var(--accent)] text-[var(--accent)] rounded-r hover:bg-[var(--accent)] hover:text-white transition-colors"
1579
+ >
1580
+
1581
+ </button>
1582
+ )}
1583
+ </div>
1584
+ {showMenu && (
1585
+ <div className="absolute right-0 top-full mt-1 w-44 rounded border border-[var(--border)] shadow-lg z-40 overflow-hidden" style={{ background: 'var(--bg-primary)' }}>
1586
+ {allAgents.map(a => (
1587
+ <button key={a.id} onClick={() => handleAgentClick(a)}
1588
+ className="w-full flex items-center gap-2 px-3 py-1.5 text-[10px] text-[var(--text-secondary)] hover:text-[var(--text-primary)] hover:bg-[var(--bg-secondary)] text-left">
1589
+ <span className="font-bold w-4 text-center text-[var(--accent)]">
1590
+ {a.isProfile ? '●' : a.id === 'claude' ? 'C' : a.id === 'codex' ? 'X' : a.id === 'aider' ? 'A' : a.id.charAt(0).toUpperCase()}
1591
+ </span>
1592
+ <span>{a.name}</span>
1593
+ </button>
1594
+ ))}
1595
+ </div>
1596
+ )}
1597
+ </div>
1598
+
1599
+ {/* Unified Terminal Session Picker */}
1600
+ {pickerInfo && (
1601
+ <TerminalSessionPickerLazy
1602
+ agentLabel={pickerInfo.agentName}
1603
+ currentSessionId={pickerInfo.currentSessionId}
1604
+ supportsSession={pickerInfo.supportsSession}
1605
+ fetchSessions={() => fetchProjectSessions(projectName)}
1606
+ onSelect={(sel) => {
1607
+ if (sel.mode === 'new') {
1608
+ openTerminal(pickerInfo.agentId, false, undefined, pickerInfo.env, pickerInfo.model);
1609
+ } else {
1610
+ openTerminal(pickerInfo.agentId, true, sel.sessionId, pickerInfo.env, pickerInfo.model);
1611
+ }
1612
+ }}
1613
+ onCancel={() => setPickerInfo(null)}
1614
+ />
1615
+ )}
1616
+ </>
1617
+ );
1618
+ }