@researai/deepscientist 1.5.14 → 1.5.16

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 (225) hide show
  1. package/README.md +336 -90
  2. package/assets/branding/logo-raster.png +0 -0
  3. package/bin/ds.js +816 -131
  4. package/docs/en/00_QUICK_START.md +36 -15
  5. package/docs/en/01_SETTINGS_REFERENCE.md +53 -4
  6. package/docs/en/02_START_RESEARCH_GUIDE.md +7 -0
  7. package/docs/en/03_QQ_CONNECTOR_GUIDE.md +19 -0
  8. package/docs/en/05_TUI_GUIDE.md +6 -0
  9. package/docs/en/06_RUNTIME_AND_CANVAS.md +4 -3
  10. package/docs/en/09_DOCTOR.md +11 -5
  11. package/docs/en/10_WEIXIN_CONNECTOR_GUIDE.md +20 -0
  12. package/docs/en/14_PROMPT_SKILLS_AND_MCP_GUIDE.md +65 -13
  13. package/docs/en/15_CODEX_PROVIDER_SETUP.md +25 -8
  14. package/docs/en/16_TELEGRAM_CONNECTOR_GUIDE.md +134 -0
  15. package/docs/en/17_WHATSAPP_CONNECTOR_GUIDE.md +126 -0
  16. package/docs/en/18_FEISHU_CONNECTOR_GUIDE.md +136 -0
  17. package/docs/en/19_EXTERNAL_CONTROLLER_GUIDE.md +226 -0
  18. package/docs/en/19_LOCAL_BROWSER_AUTH.md +70 -0
  19. package/docs/en/20_WORKSPACE_MODES_GUIDE.md +250 -0
  20. package/docs/en/README.md +24 -0
  21. package/docs/zh/00_QUICK_START.md +36 -15
  22. package/docs/zh/01_SETTINGS_REFERENCE.md +53 -4
  23. package/docs/zh/02_START_RESEARCH_GUIDE.md +7 -0
  24. package/docs/zh/03_QQ_CONNECTOR_GUIDE.md +19 -0
  25. package/docs/zh/05_TUI_GUIDE.md +6 -0
  26. package/docs/zh/09_DOCTOR.md +11 -5
  27. package/docs/zh/10_WEIXIN_CONNECTOR_GUIDE.md +20 -0
  28. package/docs/zh/14_PROMPT_SKILLS_AND_MCP_GUIDE.md +65 -13
  29. package/docs/zh/15_CODEX_PROVIDER_SETUP.md +25 -8
  30. package/docs/zh/16_TELEGRAM_CONNECTOR_GUIDE.md +134 -0
  31. package/docs/zh/17_WHATSAPP_CONNECTOR_GUIDE.md +126 -0
  32. package/docs/zh/18_FEISHU_CONNECTOR_GUIDE.md +136 -0
  33. package/docs/zh/19_EXTERNAL_CONTROLLER_GUIDE.md +226 -0
  34. package/docs/zh/19_LOCAL_BROWSER_AUTH.md +68 -0
  35. package/docs/zh/20_WORKSPACE_MODES_GUIDE.md +251 -0
  36. package/docs/zh/README.md +24 -0
  37. package/install.sh +2 -0
  38. package/package.json +1 -1
  39. package/pyproject.toml +1 -1
  40. package/src/deepscientist/__init__.py +1 -1
  41. package/src/deepscientist/acp/envelope.py +6 -0
  42. package/src/deepscientist/artifact/charts.py +567 -0
  43. package/src/deepscientist/artifact/guidance.py +50 -10
  44. package/src/deepscientist/artifact/metrics.py +228 -5
  45. package/src/deepscientist/artifact/schemas.py +3 -0
  46. package/src/deepscientist/artifact/service.py +4276 -308
  47. package/src/deepscientist/bash_exec/models.py +23 -0
  48. package/src/deepscientist/bash_exec/monitor.py +147 -67
  49. package/src/deepscientist/bash_exec/runtime.py +218 -156
  50. package/src/deepscientist/bash_exec/service.py +309 -69
  51. package/src/deepscientist/bash_exec/shells.py +87 -0
  52. package/src/deepscientist/bridges/connectors.py +51 -2
  53. package/src/deepscientist/cli.py +115 -19
  54. package/src/deepscientist/codex_cli_compat.py +232 -0
  55. package/src/deepscientist/config/models.py +8 -4
  56. package/src/deepscientist/config/service.py +38 -11
  57. package/src/deepscientist/connector/weixin_support.py +122 -1
  58. package/src/deepscientist/daemon/api/handlers.py +199 -9
  59. package/src/deepscientist/daemon/api/router.py +5 -0
  60. package/src/deepscientist/daemon/app.py +1458 -289
  61. package/src/deepscientist/doctor.py +51 -0
  62. package/src/deepscientist/file_lock.py +48 -0
  63. package/src/deepscientist/gitops/__init__.py +10 -1
  64. package/src/deepscientist/gitops/diff.py +296 -1
  65. package/src/deepscientist/gitops/service.py +4 -1
  66. package/src/deepscientist/mcp/server.py +212 -5
  67. package/src/deepscientist/process_control.py +161 -0
  68. package/src/deepscientist/prompts/builder.py +501 -453
  69. package/src/deepscientist/quest/layout.py +15 -2
  70. package/src/deepscientist/quest/service.py +2539 -195
  71. package/src/deepscientist/quest/stage_views.py +177 -1
  72. package/src/deepscientist/runners/base.py +2 -0
  73. package/src/deepscientist/runners/codex.py +169 -31
  74. package/src/deepscientist/runners/runtime_overrides.py +17 -1
  75. package/src/deepscientist/skills/__init__.py +2 -2
  76. package/src/deepscientist/skills/installer.py +196 -5
  77. package/src/deepscientist/skills/registry.py +66 -0
  78. package/src/prompts/connectors/qq.md +18 -8
  79. package/src/prompts/connectors/weixin.md +16 -6
  80. package/src/prompts/contracts/shared_interaction.md +24 -4
  81. package/src/prompts/system.md +921 -72
  82. package/src/prompts/system_copilot.md +43 -0
  83. package/src/skills/analysis-campaign/SKILL.md +32 -2
  84. package/src/skills/analysis-campaign/references/artifact-orchestration.md +1 -1
  85. package/src/skills/analysis-campaign/references/writing-facing-slice-examples.md +65 -0
  86. package/src/skills/baseline/SKILL.md +10 -0
  87. package/src/skills/decision/SKILL.md +27 -2
  88. package/src/skills/experiment/SKILL.md +16 -2
  89. package/src/skills/figure-polish/SKILL.md +1 -0
  90. package/src/skills/finalize/SKILL.md +19 -0
  91. package/src/skills/idea/SKILL.md +79 -0
  92. package/src/skills/idea/references/idea-generation-playbook.md +100 -0
  93. package/src/skills/idea/references/outline-seeding-example.md +60 -0
  94. package/src/skills/intake-audit/SKILL.md +9 -1
  95. package/src/skills/mentor/SKILL.md +217 -0
  96. package/src/skills/mentor/references/correction-rules.md +210 -0
  97. package/src/skills/mentor/references/knowledge-profile.md +91 -0
  98. package/src/skills/mentor/references/persona-profile.md +138 -0
  99. package/src/skills/mentor/references/taste-profile.md +128 -0
  100. package/src/skills/mentor/references/thought-style-profile.md +138 -0
  101. package/src/skills/mentor/references/work-profile.md +289 -0
  102. package/src/skills/mentor/references/workflow-profile.md +240 -0
  103. package/src/skills/optimize/SKILL.md +1645 -0
  104. package/src/skills/rebuttal/SKILL.md +3 -1
  105. package/src/skills/review/SKILL.md +3 -1
  106. package/src/skills/scout/SKILL.md +8 -0
  107. package/src/skills/write/SKILL.md +81 -12
  108. package/src/skills/write/references/outline-evidence-contract-example.md +107 -0
  109. package/src/tui/dist/app/AppContainer.js +22 -11
  110. package/src/tui/dist/index.js +4 -1
  111. package/src/tui/dist/lib/api.js +33 -3
  112. package/src/tui/package.json +1 -1
  113. package/src/ui/dist/assets/AiManusChatView-COFACy7V.js +204 -0
  114. package/src/ui/dist/assets/AnalysisPlugin-DnSm0GZn.js +1 -0
  115. package/src/ui/dist/assets/CliPlugin-CvwCmDQ5.js +109 -0
  116. package/src/ui/dist/assets/CodeEditorPlugin-cOqSa0xq.js +2 -0
  117. package/src/ui/dist/assets/CodeViewerPlugin-itb0tltR.js +270 -0
  118. package/src/ui/dist/assets/DocViewerPlugin-DqKkiCI6.js +7 -0
  119. package/src/ui/dist/assets/GitCommitViewerPlugin-DVgNHBCS.js +1 -0
  120. package/src/ui/dist/assets/GitDiffViewerPlugin-DxL2ezFG.js +6 -0
  121. package/src/ui/dist/assets/GitSnapshotViewer-B_RQm1YZ.js +30 -0
  122. package/src/ui/dist/assets/ImageViewerPlugin-tHqlXY3n.js +26 -0
  123. package/src/ui/dist/assets/LabCopilotPanel-ClMbq5Yu.js +14 -0
  124. package/src/ui/dist/assets/LabPlugin-L_SuE8ow.js +22 -0
  125. package/src/ui/dist/assets/LatexPlugin-B495DTXC.js +25 -0
  126. package/src/ui/dist/assets/MarkdownViewerPlugin-DG28-61B.js +128 -0
  127. package/src/ui/dist/assets/MarketplacePlugin-BiOGT-Kj.js +13 -0
  128. package/src/ui/dist/assets/{NotebookEditor-CccQYZjX.css → NotebookEditor-BHH8rdGj.css} +1 -1
  129. package/src/ui/dist/assets/NotebookEditor-BOr3x3Ej.css +1 -0
  130. package/src/ui/dist/assets/NotebookEditor-C-4Kt1p9.js +81 -0
  131. package/src/ui/dist/assets/NotebookEditor-CVsj8h_T.js +361 -0
  132. package/src/ui/dist/assets/PdfLoader-CASDQmxJ.js +16 -0
  133. package/src/ui/dist/assets/PdfLoader-Cy5jtWrr.css +1 -0
  134. package/src/ui/dist/assets/PdfMarkdownPlugin-BFhwoKsY.js +1 -0
  135. package/src/ui/dist/assets/PdfViewerPlugin-DcOzU9vd.js +17 -0
  136. package/src/ui/dist/assets/PdfViewerPlugin-nwwE-fjJ.css +1 -0
  137. package/src/ui/dist/assets/SearchPlugin-CHj7M58O.js +16 -0
  138. package/src/ui/dist/assets/SearchPlugin-DA4en4hK.css +1 -0
  139. package/src/ui/dist/assets/TextViewerPlugin-CB4DYfWO.js +54 -0
  140. package/src/ui/dist/assets/VNCViewer-CjlbyCB3.js +11 -0
  141. package/src/ui/dist/assets/bot-CFkZY-JP.js +6 -0
  142. package/src/ui/dist/assets/browser-CTB2jwNe.js +8 -0
  143. package/src/ui/dist/assets/chevron-up-Dq5ofbht.js +6 -0
  144. package/src/ui/dist/assets/code-DLC6G24T.js +6 -0
  145. package/src/ui/dist/assets/file-content-Dv4LoZec.js +1 -0
  146. package/src/ui/dist/assets/file-diff-panel-Denq-lC3.js +1 -0
  147. package/src/ui/dist/assets/file-jump-queue-DA-SdG__.js +1 -0
  148. package/src/ui/dist/assets/file-socket-Cu4Qln7Y.js +1 -0
  149. package/src/ui/dist/assets/git-commit-horizontal-BUh6G52n.js +6 -0
  150. package/src/ui/dist/assets/image-B9HUUddG.js +6 -0
  151. package/src/ui/dist/assets/index-B2B1sg-M.js +1 -0
  152. package/src/ui/dist/assets/index-Cgla8biy.css +33 -0
  153. package/src/ui/dist/assets/index-DRyx7vAc.js +1 -0
  154. package/src/ui/dist/assets/index-Gbl53BNp.js +2496 -0
  155. package/src/ui/dist/assets/index-wQ7RIIRd.js +11 -0
  156. package/src/ui/dist/assets/monaco-CiHMMNH_.js +1 -0
  157. package/src/ui/dist/assets/pdf-effect-queue-ZtnHFCAi.js +6 -0
  158. package/src/ui/dist/assets/plugin-monaco-C8UgLomw.js +19 -0
  159. package/src/ui/dist/assets/plugin-notebook-HbW2K-1c.js +169 -0
  160. package/src/ui/dist/assets/plugin-pdf-CR8hgQBV.js +357 -0
  161. package/src/ui/dist/assets/plugin-terminal-MXFIPun8.js +227 -0
  162. package/src/ui/dist/assets/popover-DL6h35vr.js +1 -0
  163. package/src/ui/dist/assets/project-sync-CsX08Qno.js +1 -0
  164. package/src/ui/dist/assets/select-DvmXt1yY.js +11 -0
  165. package/src/ui/dist/assets/sigma-7jpXazui.js +6 -0
  166. package/src/ui/dist/assets/trash-xA7kFt8i.js +11 -0
  167. package/src/ui/dist/assets/useCliAccess-DsMwDjOp.js +1 -0
  168. package/src/ui/dist/assets/useFileDiffOverlay-FuhcnKiw.js +1 -0
  169. package/src/ui/dist/assets/wrap-text-CwMn-iqb.js +11 -0
  170. package/src/ui/dist/assets/zoom-out-R-GWEhzS.js +11 -0
  171. package/src/ui/dist/index.html +5 -2
  172. package/src/ui/dist/assets/AiManusChatView-DaF9Nge_.js +0 -26597
  173. package/src/ui/dist/assets/AnalysisPlugin-BSVx6dXE.js +0 -123
  174. package/src/ui/dist/assets/CliPlugin-C9gzJX41.js +0 -5905
  175. package/src/ui/dist/assets/CodeEditorPlugin-DU9G0Tox.js +0 -427
  176. package/src/ui/dist/assets/CodeViewerPlugin-DoX_fI9l.js +0 -905
  177. package/src/ui/dist/assets/DocViewerPlugin-C4FWIXuU.js +0 -278
  178. package/src/ui/dist/assets/GitDiffViewerPlugin-BgfFMgtf.js +0 -2661
  179. package/src/ui/dist/assets/ImageViewerPlugin-tcPkfY_x.js +0 -500
  180. package/src/ui/dist/assets/LabCopilotPanel-_dKV60Bf.js +0 -4104
  181. package/src/ui/dist/assets/LabPlugin-Bje0ayoC.js +0 -2677
  182. package/src/ui/dist/assets/LatexPlugin-CVsBzAln.js +0 -1792
  183. package/src/ui/dist/assets/MarkdownViewerPlugin-xjmrqv_8.js +0 -308
  184. package/src/ui/dist/assets/MarketplacePlugin-mMM2A8wP.js +0 -413
  185. package/src/ui/dist/assets/NotebookEditor-3kVDSOBo.js +0 -4214
  186. package/src/ui/dist/assets/NotebookEditor-C3VQ7ylN.css +0 -1405
  187. package/src/ui/dist/assets/NotebookEditor-SoJ8X-MO.js +0 -84873
  188. package/src/ui/dist/assets/PdfLoader-C-Y707R3.css +0 -49
  189. package/src/ui/dist/assets/PdfLoader-DElVuHl9.js +0 -25468
  190. package/src/ui/dist/assets/PdfMarkdownPlugin-Bq88XT4G.js +0 -409
  191. package/src/ui/dist/assets/PdfViewerPlugin-CsCXMo9S.js +0 -3095
  192. package/src/ui/dist/assets/PdfViewerPlugin-DQ11QcSf.css +0 -3627
  193. package/src/ui/dist/assets/SearchPlugin-DDMrGDkh.css +0 -379
  194. package/src/ui/dist/assets/SearchPlugin-oUPvy19k.js +0 -741
  195. package/src/ui/dist/assets/TextViewerPlugin-CRkT9yNy.js +0 -472
  196. package/src/ui/dist/assets/VNCViewer-BgbuvWhR.js +0 -18821
  197. package/src/ui/dist/assets/awareness-C0NPR2Dj.js +0 -292
  198. package/src/ui/dist/assets/bot-v_RASACv.js +0 -21
  199. package/src/ui/dist/assets/browser-BAcuE0Xj.js +0 -2895
  200. package/src/ui/dist/assets/code-5hC9d0VH.js +0 -17
  201. package/src/ui/dist/assets/file-content-D1PxfOrp.js +0 -377
  202. package/src/ui/dist/assets/file-diff-panel-DG1oT_Hj.js +0 -92
  203. package/src/ui/dist/assets/file-jump-queue-r5XKgJEV.js +0 -16
  204. package/src/ui/dist/assets/file-socket-BmdFYQlk.js +0 -58
  205. package/src/ui/dist/assets/function-B5QZkkHC.js +0 -1895
  206. package/src/ui/dist/assets/image-Dqe2X2tW.js +0 -18
  207. package/src/ui/dist/assets/index-BQG-1s2o.css +0 -12553
  208. package/src/ui/dist/assets/index-DVsMKK_y.js +0 -25
  209. package/src/ui/dist/assets/index-Duvz8Ip0.js +0 -159
  210. package/src/ui/dist/assets/index-Nt9hS4ck.js +0 -244829
  211. package/src/ui/dist/assets/index-RDlNXXx1.js +0 -120
  212. package/src/ui/dist/assets/monaco-DIXge1CP.js +0 -623
  213. package/src/ui/dist/assets/pdf-effect-queue-BBTTQaO-.js +0 -47
  214. package/src/ui/dist/assets/pdf_viewer-e0g1is2C.js +0 -8206
  215. package/src/ui/dist/assets/popover-BWlolyxo.js +0 -476
  216. package/src/ui/dist/assets/project-sync-BM5PkFH4.js +0 -297
  217. package/src/ui/dist/assets/select-D4dAtrA8.js +0 -1690
  218. package/src/ui/dist/assets/sigma-CKbE5jJT.js +0 -22
  219. package/src/ui/dist/assets/square-check-big-CZNGMgiB.js +0 -17
  220. package/src/ui/dist/assets/trash-DaB37xAz.js +0 -32
  221. package/src/ui/dist/assets/useCliAccess-C2OmAcWe.js +0 -957
  222. package/src/ui/dist/assets/useFileDiffOverlay-Dowd1Ij4.js +0 -53
  223. package/src/ui/dist/assets/wrap-text-BGjAhAUq.js +0 -35
  224. package/src/ui/dist/assets/yjs-DncrqiZ8.js +0 -11243
  225. package/src/ui/dist/assets/zoom-out-dMZQMXzc.js +0 -34
package/README.md CHANGED
@@ -1,140 +1,341 @@
1
1
  <h1 align="center">
2
- <img src="assets/branding/logo.svg" alt="DeepScientist logo" width="84" />
2
+ <img src="assets/branding/logo.svg" alt="DeepScientist logo" width="92" />
3
3
  DeepScientist
4
4
  </h1>
5
5
 
6
- <p>
7
- <strong>DeepScientist is not just a long-running autonomous scientific discovery system. It is also a persistent research map that lives on your own machine.</strong>
8
- </p>
9
6
 
10
- <p>
11
- Local-first. Open-source. Git-backed. Built for verifiable computational research.
7
+ <p align="center">
8
+ DeepScientist is a local-first AI research studio, Bring your own AI scientist onto your machine in 15 minutes.
12
9
  </p>
13
10
 
11
+
12
+
14
13
  <p align="center">
15
- <a href="docs/en/README.md">English</a> | <a href="docs/zh/README.md">中文</a>
14
+ <a href="https://github.com/ResearAI/DeepScientist">GitHub</a> |
15
+ <a href="README_ZH.md">中文文档</a> |
16
+ <a href="docs/en/README.md">English Docs</a> |
17
+ <a href="https://openreview.net/forum?id=cZFgsLq8Gs">Paper</a> |
18
+ <a href="https://deepscientist.cc/">Website</a>
16
19
  </p>
17
20
 
18
21
  <p align="center">
22
+ <a href="https://github.com/ResearAI/DeepScientist"><img alt="GitHub stars" src="https://img.shields.io/github/stars/ResearAI/DeepScientist?style=for-the-badge&logo=github"></a>
19
23
  <a href="https://openreview.net/forum?id=cZFgsLq8Gs"><img alt="ICLR 2026" src="https://img.shields.io/badge/ICLR-2026-blue?style=for-the-badge&logo=openreview"></a>
20
24
  <a href="LICENSE"><img alt="License Apache-2.0" src="https://img.shields.io/badge/License-Apache%202.0-yellow.svg?style=for-the-badge"></a>
21
25
  <a href="https://www.python.org/"><img alt="Python 3.11+" src="https://img.shields.io/badge/Python-3.11%2B-blue?style=for-the-badge&logo=python&logoColor=white"></a>
22
26
  <a href="https://www.npmjs.com/package/@researai/deepscientist"><img alt="npm @researai/deepscientist" src="https://img.shields.io/badge/npm-%40researai%2Fdeepscientist-CB3837?style=for-the-badge&logo=npm&logoColor=white"></a>
23
- <a href="https://deepscientist.cc/"><img alt="Website deepscientist.cc" src="https://img.shields.io/badge/Website-deepscientist.cc-brightgreen?style=for-the-badge&logo=googlechrome&logoColor=white"></a>
27
+ </p>
28
+
29
+ <p align="center">
30
+ <strong>15-minute local setup</strong> ·
31
+ <strong>One repo per quest</strong> ·
32
+ <strong>Visible research progress</strong> ·
33
+ <strong>Human takeover anytime</strong>
24
34
  </p>
25
35
 
26
36
  <p align="center">
27
37
  <a href="docs/en/00_QUICK_START.md">Quick Start</a> •
28
- <a href="docs/en/02_START_RESEARCH_GUIDE.md">Start Research Guide</a> •
29
- <a href="docs/en/10_WEIXIN_CONNECTOR_GUIDE.md"><img src="assets/branding/connector-weixin.png" alt="Weixin" width="14" height="14" /> Weixin</a> •
30
- <a href="docs/en/03_QQ_CONNECTOR_GUIDE.md"><img src="assets/branding/connector-qq.png" alt="QQ" width="14" height="14" /> QQ</a>
31
- <a href="docs/en/04_LINGZHU_CONNECTOR_GUIDE.md"><img src="assets/branding/connector-rokid.png" alt="Rokid" width="14" height="14" /> Rokid</a> •
32
- <a href="https://openreview.net/forum?id=cZFgsLq8Gs">Paper</a>
38
+ <a href="docs/en/02_START_RESEARCH_GUIDE.md">Launch Your First Project</a> •
39
+ <a href="docs/en/12_GUIDED_WORKFLOW_TOUR.md">Product Tour</a> •
40
+ <a href="docs/en/15_CODEX_PROVIDER_SETUP.md">Model Setup</a>
33
41
  </p>
34
42
 
43
+ ![deepscientist_install](https://github.com/user-attachments/assets/d8244944-4f70-4e08-94e3-002b74ce70fb)
44
+
45
+ If you are tired of paper overload, broken baselines, scattered experiment logs, and late-night writing cleanup, give the project a star first, then keep scrolling to see how much research grunt work it can take off your plate.
46
+
47
+ ---
48
+
49
+ https://github.com/user-attachments/assets/3c7abb44-2b25-4477-a011-10a3154d6d76
50
+
51
+ ## Still Spending Your Time On Research Grunt Work?
52
+
53
+ What drains researchers is often not the lack of ideas. It is the endless cycle of low-leverage work:
54
+
55
+ - new papers keep coming, but only a small fraction turns into an actionable next-step research plan
56
+ - baseline repos fail on environment, dependency, data, and script issues before real work even starts
57
+ - experiment results get scattered across terminals, scripts, notes, and chats, making later review painful
58
+ - writing, figures, and analysis live in separate tools, so turning them into a coherent paper takes far too long
59
+
60
+ This is the problem DeepScientist is built to solve:
61
+
62
+ > turn fragmented, repetitive, easy-to-lose research work into a local AI workspace that can keep moving, keep accumulating, and keep getting stronger over time
63
+
64
+ ## DeepScientist Is Not Just Another "Research Chatbot"
65
+
66
+ It is not a tool that summarizes papers, throws you a few ideas, and leaves the dirty work to you.
67
+
68
+ It is much closer to a real long-running AI research partner:
69
+
70
+ | What common AI tools often look like | What DeepScientist does instead |
71
+ |---|---|
72
+ | Great at chatting, but context disappears quickly | Turns tasks, files, branches, artifacts, and memory into durable state |
73
+ | Good at suggesting ideas, but weak at sustained execution | Pushes papers, baselines, experiments, and writing inside one workspace |
74
+ | Strong automation, but feels like a black box | Lets you inspect the process through the web workspace, Canvas, files, and terminal |
75
+ | Hard to take over once it goes off track | Lets you pause, take over, edit plans, change code, and continue at any time |
76
+ | Each run ends when the run ends | Preserves failed paths, winning paths, and reproduction lessons for the next round |
77
+
35
78
  ## About
36
79
 
37
- DeepScientist is not just a long-running autonomous scientific discovery system. It is also a persistent research map that lives on your own machine.
80
+ > DeepScientist is not a one-shot agent demo. It is a system built for long-horizon research work.
81
+
82
+ ## What Can It Actually Help You Get Done?
83
+
84
+ ### 1. Start a real project from a paper or a research question
85
+
86
+ - feed it a core paper, a GitHub repository, or a natural-language research objective
87
+ - it turns those inputs into an executable quest instead of a chat that loses state after a few turns
88
+
89
+ ### 2. Reproduce baselines and keep the reproduction reusable
90
+
91
+ - restore repositories, prepare environments, handle dependencies, and track the critical failures
92
+ - preserve what broke, what got fixed, and which steps are trustworthy for future rounds
93
+
94
+ ### 3. Run experiments continuously instead of stopping after one pass
95
+
96
+ - propose the next hypothesis from existing results
97
+ - branch, ablate, compare, and record conclusions
98
+ - keep failed routes as assets instead of deleting them
99
+
100
+ ### 4. Turn results into materials you can actually ship
101
+
102
+ - organize findings, conclusions, and analysis
103
+ - produce figures, reports, and paper drafts
104
+ - support local PDF and LaTeX compilation workflows
105
+
106
+ ### 5. Follow the same research effort from multiple surfaces
107
+
108
+ - the web workspace in your browser
109
+ - the TUI workflow on a remote server
110
+ - external connector surfaces for collaboration and progress updates
38
111
 
39
- - See every branch.
40
- - Recover every lesson.
41
- - Compound every round.
112
+ The current docs already cover these collaboration channels:
42
113
 
43
- **A research workspace you can actually inspect.** The frontend rebuilds a live [Canvas](docs/en/06_RUNTIME_AND_CANVAS.md) from Git branches, artifacts, connector traffic, and raw quest events, so progress stays visible as a navigable map instead of collapsing into one long chat log.
114
+ - [Weixin](docs/en/10_WEIXIN_CONNECTOR_GUIDE.md)
115
+ - [QQ](docs/en/03_QQ_CONNECTOR_GUIDE.md)
116
+ - [Telegram](docs/en/16_TELEGRAM_CONNECTOR_GUIDE.md)
117
+ - [WhatsApp](docs/en/17_WHATSAPP_CONNECTOR_GUIDE.md)
118
+ - [Feishu](docs/en/18_FEISHU_CONNECTOR_GUIDE.md)
119
+ - [Lingzhu / Rokid](docs/en/04_LINGZHU_CONNECTOR_GUIDE.md)
44
120
 
45
- **Memory that survives failure.** Built-in [memory](docs/en/07_MEMORY_AND_MCP.md) turns paper notes, dead ends, route decisions, and recovered lessons into searchable project state that later rounds can pull back deliberately.
121
+ ## Why Is It Easier To Keep Using?
46
122
 
47
- **A self-evolving loop with real state.** Failed branches, reusable baselines, promoted lessons, and new evidence all feed the next round, so DeepScientist compounds research progress instead of restarting from zero.
123
+ What retains users is not a flashy demo. It is a system that becomes more useful the longer you work with it.
48
124
 
49
- **A studio, not a sealed autopilot.** DeepScientist can drive a task end to end, but you can step in at any moment to redirect the plan, edit code, inspect files, or run the terminal yourself inside the same quest.
125
+ DeepScientist tends to stick for four reasons:
50
126
 
51
- DeepScientist is strong at:
127
+ ### Local-first by default
52
128
 
53
- - reproducing baselines and keeping them reusable
54
- - reading papers, extracting concrete limitations, and generating hypotheses
55
- - running experiment branches, analysis campaigns, figures, and paper drafts
56
- - preserving both successful and failed results so the next round can start stronger
129
+ - code, experiments, drafts, and project state stay on your own machine or server by default
130
+ - this is especially valuable for unpublished ideas, sensitive experiment history, and longer-running research loops
57
131
 
58
- DeepScientist is flexible and easy to use with:
132
+ ### One repo per quest
59
133
 
60
- - local-first, open-source, one-command install
61
- - Git-backed quest repositories, shared web workspace, Studio / Canvas, and TUI
62
- - workshop-style collaboration: let DeepScientist drive, or pause anytime to inspect, edit, and run commands yourself
63
- - Codex with `gpt-5.4` by default, plus external OpenAI-compatible inference endpoints
64
- - use DeepScientist anywhere: server via TUI, browser via Web, phone via Weixin or QQ, and even glasses via Rokid Glasses
65
- - one bound external connector per quest: [Weixin](docs/en/10_WEIXIN_CONNECTOR_GUIDE.md), [QQ](docs/en/03_QQ_CONNECTOR_GUIDE.md), Telegram, Discord, Slack, Feishu, WhatsApp, and [Lingzhu / Rokid](docs/en/04_LINGZHU_CONNECTOR_GUIDE.md)
66
- - conference-to-journal extension workflows, and rebuttal workflows from paper, code, and reviewer comments
67
- - one quest, one Git repository
68
- - branches and worktrees as native research structure
69
- - live Studio and Canvas from durable quest state
70
- - reusable baselines, not one-off benchmark runs
71
- - durable `bash_exec` sessions, not disposable terminal output
134
+ - every quest is a real Git repository
135
+ - branches, worktrees, files, and artifacts naturally express research structure
72
136
 
73
- DeepScientist works best when the task is computational, verifiable, and worth tracking across multiple rounds.
137
+ ### The process is not a black box
74
138
 
75
- ## News
139
+ - it does not only give you an output
140
+ - you can inspect what it read, what it changed, what it kept, and what it plans to do next
76
141
 
77
- - `2026/03/24`: DeepScientist officially releases `v1.5`.
78
- - `2026/02/01`: the DeepScientist paper is available on [OpenReview](https://openreview.net/forum?id=cZFgsLq8Gs) for `ICLR 2026`.
142
+ ### Human collaboration is built in
79
143
 
80
- ## Getting Started
144
+ - DeepScientist can move autonomously
145
+ - you can also step in, edit, redirect, and hand control back whenever you want
81
146
 
82
- - [Docs Index (English)](docs/en/README.md)
83
- - [Quick Start (English)](docs/en/00_QUICK_START.md)
84
- - [Guided Workflow Tour (English)](docs/en/12_GUIDED_WORKFLOW_TOUR.md)
85
- - [Start Research Guide (English)](docs/en/02_START_RESEARCH_GUIDE.md)
86
- - [Core Architecture Guide (English)](docs/en/13_CORE_ARCHITECTURE_GUIDE.md)
147
+ ## Why Try It Now?
87
148
 
88
- ## Install
149
+ Because this is not just a concept. It is a real system with public docs, a public paper, and a public install path.
150
+
151
+ - `2026/03/24`: DeepScientist officially released `v1.5`
152
+ - `2026/02/01`: the paper went live on [OpenReview](https://openreview.net/forum?id=cZFgsLq8Gs) for `ICLR 2026`
153
+ - npm install path is already available: [`@researai/deepscientist`](https://www.npmjs.com/package/@researai/deepscientist)
154
+ - both Chinese and English docs are available, along with Web, TUI, and connector entry points
155
+
156
+ ## Product Preview
157
+
158
+ ### Architecture Overview
159
+
160
+ <p align="center">
161
+ <img src="assets/readme/architecture-promo.png" alt="DeepScientist architecture overview" width="92%" />
162
+ </p>
163
+
164
+ ### Example Outputs
165
+
166
+ <table>
167
+ <tr>
168
+ <td width="50%">
169
+ <img src="assets/readme/paper-output-1.png" alt="DeepScientist generated paper example 1" width="100%" />
170
+ </td>
171
+ <td width="50%">
172
+ <img src="assets/readme/paper-output-2.png" alt="DeepScientist generated paper example 2" width="100%" />
173
+ </td>
174
+ </tr>
175
+ <tr>
176
+ <td valign="top">
177
+ <b>Example paper output 1</b><br/>
178
+ Paper-facing deliverables can be preserved directly inside the quest instead of being split across external tools.
179
+ </td>
180
+ <td valign="top">
181
+ <b>Example paper output 2</b><br/>
182
+ DeepScientist can carry work through writing, review, figure polish, and export workflows.
183
+ </td>
184
+ </tr>
185
+ </table>
186
+
187
+ ### Workspace Preview
188
+
189
+ <table>
190
+ <tr>
191
+ <td width="33%">
192
+ <img src="assets/readme/start-research-promo.png" alt="Start Research dialog" width="100%" />
193
+ </td>
194
+ <td width="33%">
195
+ <img src="assets/readme/canvas-promo.png" alt="Canvas workspace preview" width="100%" />
196
+ </td>
197
+ <td width="33%">
198
+ <img src="assets/readme/studio-details-promo.png" alt="Studio and details workspace preview" width="100%" />
199
+ </td>
200
+ </tr>
201
+ <tr>
202
+ <td valign="top">
203
+ <b>Start Research</b><br/>
204
+ Kick off a quest from a paper, repository, or natural-language goal.
205
+ </td>
206
+ <td valign="top">
207
+ <b>Canvas</b><br/>
208
+ Inspect branches, baselines, and accumulated research structure as a visible map.
209
+ </td>
210
+ <td valign="top">
211
+ <b>Studio + Details</b><br/>
212
+ Review metrics, traces, and project state without leaving the same workspace.
213
+ </td>
214
+ </tr>
215
+ </table>
216
+
217
+ ### Progress Reporting
218
+
219
+ <p align="center">
220
+ <img src="assets/readme/progress-reporting-promo.png" alt="DeepScientist progress reporting example" width="88%" />
221
+ </p>
222
+
223
+ ### Projects surface after long-running work
224
+
225
+ ![DeepScientist projects surface](assets/readme/projects-surface.png)
226
+
227
+ ## Who Will Love DeepScientist Most?
228
+
229
+ - graduate students and engineers who want to reproduce papers and push beyond existing baselines
230
+ - labs or research teams running long experiment loops, ablations, and structured result analysis
231
+ - people who want code, experiments, notes, and writing to live in one workspace
232
+ - users who do not want to hand unpublished ideas and intermediate results directly to a pure cloud workflow
233
+ - people who want to run work on servers while following progress from web, TUI, or messaging surfaces
234
+
235
+ ## The Core Philosophy Behind DeepScientist
236
+
237
+ We believe a system that is actually suitable for research should at least satisfy these principles:
238
+
239
+ - one quest, one repository, instead of letting everything dissolve after a short conversation
240
+ - branches and worktrees should express research routes naturally instead of being forced into chat history
241
+ - failed paths should be preserved, summarized, and reused instead of overwritten
242
+ - human researchers should always retain takeover power instead of being locked outside the loop
243
+ - the research process should be reviewable, inspectable, and auditable instead of relying on "the model says it did it"
244
+
245
+ If that sounds like the way you want to work, DeepScientist is worth trying now.
246
+
247
+ ## Get Started In 30 Seconds
248
+
249
+ If you want to try it right now, the shortest path is:
250
+
251
+ Platform note: DeepScientist fully supports Linux and macOS. Native Windows support is currently experimental (strongly recommend WSL2).
89
252
 
90
253
  ```bash
91
254
  npm install -g @researai/deepscientist
92
255
  codex --login
93
- ds --yolo --here
256
+ ds --here
94
257
  ```
95
258
 
96
- If `codex --login` is unavailable, run `codex` once and finish authentication there. After startup, open `http://127.0.0.1:20999`.
259
+ To stop the managed local daemon and all currently running agents:
97
260
 
98
- For detailed install, troubleshooting, PDF compile, and other launch modes, use:
261
+ ```bash
262
+ ds --stop
263
+ ```
99
264
 
100
- - [Quick Start](docs/en/00_QUICK_START.md)
101
- - [Codex Provider Setup](docs/en/15_CODEX_PROVIDER_SETUP.md)
102
- - [Doctor](docs/en/09_DOCTOR.md)
265
+ If `codex --login` is unavailable, run this once first:
103
266
 
104
- ## Documentation
267
+ ```bash
268
+ codex
269
+ ```
105
270
 
106
- - [Docs Index (English)](docs/en/README.md)
107
- - [Guided Workflow Tour (English)](docs/en/12_GUIDED_WORKFLOW_TOUR.md)
108
- - [Core Architecture Guide (English)](docs/en/13_CORE_ARCHITECTURE_GUIDE.md)
109
- - [Prompt, Skills, and MCP Guide (English)](docs/en/14_PROMPT_SKILLS_AND_MCP_GUIDE.md)
110
- - [Weixin Connector Guide (English)](docs/en/10_WEIXIN_CONNECTOR_GUIDE.md)
111
- - [QQ Connector Guide (English)](docs/en/03_QQ_CONNECTOR_GUIDE.md)
112
- - [Lingzhu / Rokid Guide (English)](docs/en/04_LINGZHU_CONNECTOR_GUIDE.md)
113
- - [Memory and MCP Guide (English)](docs/en/07_MEMORY_AND_MCP.md)
114
- - [Settings Reference (English)](docs/en/01_SETTINGS_REFERENCE.md)
115
- - [Codex Provider Setup (English)](docs/en/15_CODEX_PROVIDER_SETUP.md)
271
+ If `codex` still appears to be missing after installing DeepScientist, take the explicit repair path instead of assuming the bundled dependency was linked correctly:
116
272
 
117
- ## Maintainers
273
+ ```bash
274
+ npm install -g @openai/codex
275
+ which codex
276
+ codex --login
277
+ ```
118
278
 
119
- - [Architecture](docs/en/90_ARCHITECTURE.md)
120
- - [Development Guide](docs/en/91_DEVELOPMENT.md)
279
+ If `which codex` still prints nothing after that, fix the npm global bin path first, then retry `codex --login` and `ds doctor`.
121
280
 
122
- ## Citation
281
+ After startup, the default local address is:
123
282
 
124
- This project is currently contributed by Yixuan Weng, Shichen Li, Weixu Zhao, Qiyao Sun, Zhen Lin, Minjun Zhu. If you find our work valuable, please cite:
283
+ ```text
284
+ http://127.0.0.1:20999
285
+ ```
125
286
 
126
- ```bibtex
127
- @inproceedings{
128
- weng2026deepscientist,
129
- title={DeepScientist: Advancing Frontier-Pushing Scientific Findings Progressively},
130
- author={Yixuan Weng and Minjun Zhu and Qiujie Xie and QiYao Sun and Zhen Lin and Sifan Liu and Yue Zhang},
131
- booktitle={The Fourteenth International Conference on Learning Representations},
132
- year={2026},
133
- url={https://openreview.net/forum?id=cZFgsLq8Gs}
134
- }
287
+ Local browser auth is now optional and disabled by default. If you want a per-launch local access password, start with:
288
+
289
+ ```bash
290
+ ds --auth true
135
291
  ```
136
292
 
137
- ## End-to-End Autonomous Research Systems
293
+ Then you only need to do three things:
294
+
295
+ 1. click `Start Research`
296
+ 2. fill in the research goal, baseline links, paper links, or local paths
297
+ 3. let DeepScientist start a real research project that can keep evolving locally
298
+
299
+ If this is your first run, prefer an isolated environment, a non-root user, and a local machine. For the full details, see:
300
+
301
+ - [00 Quick Start](docs/en/00_QUICK_START.md)
302
+ - [15 Codex Provider Setup](docs/en/15_CODEX_PROVIDER_SETUP.md)
303
+ - [09 Doctor](docs/en/09_DOCTOR.md)
304
+
305
+ ## Choose Your Starting Path
306
+
307
+ ### I just want to get it running first
308
+
309
+ - [00 Quick Start](docs/en/00_QUICK_START.md)
310
+ - [12 Guided Workflow Tour](docs/en/12_GUIDED_WORKFLOW_TOUR.md)
311
+
312
+ ### I want to launch a real project today
313
+
314
+ - [02 Start Research Guide](docs/en/02_START_RESEARCH_GUIDE.md)
315
+ - [01 Settings Reference](docs/en/01_SETTINGS_REFERENCE.md)
316
+
317
+ ### I mainly work on servers and terminals
318
+
319
+ - [05 TUI Guide](docs/en/05_TUI_GUIDE.md)
320
+
321
+ ### I want to connect my own models or external collaboration channels
322
+
323
+ - [15 Codex Provider Setup](docs/en/15_CODEX_PROVIDER_SETUP.md)
324
+ - [Weixin Connector Guide](docs/en/10_WEIXIN_CONNECTOR_GUIDE.md)
325
+ - [QQ Connector Guide](docs/en/03_QQ_CONNECTOR_GUIDE.md)
326
+ - [Telegram Connector Guide](docs/en/16_TELEGRAM_CONNECTOR_GUIDE.md)
327
+ - [WhatsApp Connector Guide](docs/en/17_WHATSAPP_CONNECTOR_GUIDE.md)
328
+ - [Feishu Connector Guide](docs/en/18_FEISHU_CONNECTOR_GUIDE.md)
329
+
330
+ ### I want to understand the system design first
331
+
332
+ - [Docs Index](docs/en/README.md)
333
+ - [Core Architecture Guide](docs/en/13_CORE_ARCHITECTURE_GUIDE.md)
334
+ - [Prompt, Skills, and MCP Guide](docs/en/14_PROMPT_SKILLS_AND_MCP_GUIDE.md)
335
+
336
+ ## Autonomous Research Systems
337
+
338
+ ### End-to-End Autonomous Research Systems
138
339
 
139
340
  | System | System Type | E2E | Research Map | Workshop | Keeps Growing | Channels | Figure & Rebuttal & Review |
140
341
  |---|---|---|---|---|---|---|---|
@@ -153,17 +354,62 @@ url={https://openreview.net/forum?id=cZFgsLq8Gs}
153
354
  | [Research-Claw](https://github.com/wentorai/Research-Claw) | Open-source | ✓ | | ✓ | ✓ | ✓ | |
154
355
  | [DeepScientist](https://github.com/ResearAI/DeepScientist) | Open-source | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
155
356
 
357
+ ## Documentation
358
+
359
+ - [English Docs Index](docs/en/README.md)
360
+ - [Chinese Docs Index](docs/zh/README.md)
361
+
362
+ ## NLPCC 2026 AISB Challenge
363
+
364
+ If you want to benchmark or extend AI scientist systems in the wild, the NLPCC 2026 AISB shared task is a natural next stop:
365
+
366
+ - [Registration](http://tcci.ccf.org.cn/conference/2026/shared-tasks/)
367
+ - [Task Repository](https://github.com/ResearAI/NLPCC-2026-Task9-AISB)
368
+
369
+ <p align="center">
370
+ <img src="assets/readme/aisb-poster.jpeg" alt="NLPCC 2026 AISB shared task poster" width="88%" />
371
+ </p>
372
+
373
+ ## For Developers And Maintainers
374
+
375
+ If you are developing or maintaining DeepScientist, continue with:
376
+
377
+ - [Architecture](docs/en/90_ARCHITECTURE.md)
378
+ - [Development Guide](docs/en/91_DEVELOPMENT.md)
379
+ - [CONTRIBUTING](CONTRIBUTING.md)
380
+
381
+ ## Citation
382
+
383
+ If DeepScientist helps your research or engineering work, please cite:
384
+
385
+ ```bibtex
386
+ @inproceedings{
387
+ weng2026deepscientist,
388
+ title={DeepScientist: Advancing Frontier-Pushing Scientific Findings Progressively},
389
+ author={Yixuan Weng and Minjun Zhu and Qiujie Xie and QiYao Sun and Zhen Lin and Sifan Liu and Yue Zhang},
390
+ booktitle={The Fourteenth International Conference on Learning Representations},
391
+ year={2026},
392
+ url={https://openreview.net/forum?id=cZFgsLq8Gs}
393
+ }
394
+ ```
395
+
396
+ If this feels like the research workflow you have been waiting for, give the project a star. Every star makes it easier for more researchers who actually need it to find it.
397
+
398
+ ## Community
399
+
400
+ Welcome to join the WeChat group for discussion.
401
+
402
+ <p align="center">
403
+ <img src="assets/readme/wechat.jpg" alt="DeepScientist WeChat group" width="360" />
404
+ </p>
405
+
156
406
  ## More From ResearAI
157
407
 
158
- DeepReviewer and AutoFigure projects worth exploring alongside DeepScientist:
408
+ If you like DeepScientist, you may also want to explore the rest of the ResearAI ecosystem:
159
409
 
160
410
  | Project | What it does |
161
411
  |---|---|
162
- | [AutoFigure](https://github.com/ResearAI/AutoFigure) | generate paper-ready figures |
163
- | [AutoFigure-Edit](https://github.com/ResearAI/AutoFigure-Edit) | editable vector paper figures |
164
- | [DeepReviewer-v2](https://github.com/ResearAI/DeepReviewer-v2) | review papers and drafts |
412
+ | [AutoFigure](https://github.com/ResearAI/AutoFigure) | generate publication-ready figures |
413
+ | [AutoFigure-Edit](https://github.com/ResearAI/AutoFigure-Edit) | generate editable vector paper figures |
414
+ | [DeepReviewer-v2](https://github.com/ResearAI/DeepReviewer-v2) | review papers and suggest revisions |
165
415
  | [Awesome-AI-Scientist](https://github.com/ResearAI/Awesome-AI-Scientist) | curated AI scientist landscape |
166
-
167
- ## License
168
-
169
- [Apache License 2.0](LICENSE)
Binary file