@researai/deepscientist 1.5.15 → 1.5.17

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 (202) hide show
  1. package/README.md +385 -104
  2. package/bin/ds.js +1241 -110
  3. package/docs/en/00_QUICK_START.md +100 -19
  4. package/docs/en/01_SETTINGS_REFERENCE.md +34 -1
  5. package/docs/en/02_START_RESEARCH_GUIDE.md +7 -0
  6. package/docs/en/05_TUI_GUIDE.md +6 -0
  7. package/docs/en/06_RUNTIME_AND_CANVAS.md +4 -3
  8. package/docs/en/09_DOCTOR.md +25 -8
  9. package/docs/en/14_PROMPT_SKILLS_AND_MCP_GUIDE.md +63 -13
  10. package/docs/en/15_CODEX_PROVIDER_SETUP.md +37 -11
  11. package/docs/en/19_EXTERNAL_CONTROLLER_GUIDE.md +226 -0
  12. package/docs/en/19_LOCAL_BROWSER_AUTH.md +70 -0
  13. package/docs/en/20_WORKSPACE_MODES_GUIDE.md +250 -0
  14. package/docs/en/21_LOCAL_MODEL_BACKENDS_GUIDE.md +283 -0
  15. package/docs/en/91_DEVELOPMENT.md +237 -0
  16. package/docs/en/README.md +24 -2
  17. package/docs/zh/00_QUICK_START.md +89 -19
  18. package/docs/zh/01_SETTINGS_REFERENCE.md +34 -1
  19. package/docs/zh/02_START_RESEARCH_GUIDE.md +7 -0
  20. package/docs/zh/05_TUI_GUIDE.md +6 -0
  21. package/docs/zh/09_DOCTOR.md +26 -9
  22. package/docs/zh/14_PROMPT_SKILLS_AND_MCP_GUIDE.md +63 -13
  23. package/docs/zh/15_CODEX_PROVIDER_SETUP.md +37 -11
  24. package/docs/zh/19_EXTERNAL_CONTROLLER_GUIDE.md +226 -0
  25. package/docs/zh/19_LOCAL_BROWSER_AUTH.md +68 -0
  26. package/docs/zh/20_WORKSPACE_MODES_GUIDE.md +251 -0
  27. package/docs/zh/21_LOCAL_MODEL_BACKENDS_GUIDE.md +281 -0
  28. package/docs/zh/README.md +24 -2
  29. package/install.sh +46 -4
  30. package/package.json +2 -1
  31. package/pyproject.toml +1 -1
  32. package/src/deepscientist/__init__.py +1 -1
  33. package/src/deepscientist/acp/envelope.py +6 -0
  34. package/src/deepscientist/artifact/service.py +647 -22
  35. package/src/deepscientist/bash_exec/service.py +234 -9
  36. package/src/deepscientist/bridges/connectors.py +8 -2
  37. package/src/deepscientist/cli.py +115 -19
  38. package/src/deepscientist/codex_cli_compat.py +367 -22
  39. package/src/deepscientist/config/models.py +2 -1
  40. package/src/deepscientist/config/service.py +183 -13
  41. package/src/deepscientist/daemon/api/handlers.py +255 -31
  42. package/src/deepscientist/daemon/api/router.py +9 -0
  43. package/src/deepscientist/daemon/app.py +1146 -105
  44. package/src/deepscientist/diagnostics/__init__.py +6 -0
  45. package/src/deepscientist/diagnostics/runner_failures.py +130 -0
  46. package/src/deepscientist/doctor.py +207 -3
  47. package/src/deepscientist/gitops/__init__.py +10 -1
  48. package/src/deepscientist/gitops/diff.py +129 -0
  49. package/src/deepscientist/gitops/service.py +4 -1
  50. package/src/deepscientist/mcp/server.py +39 -0
  51. package/src/deepscientist/prompts/builder.py +275 -34
  52. package/src/deepscientist/quest/layout.py +15 -2
  53. package/src/deepscientist/quest/service.py +707 -55
  54. package/src/deepscientist/quest/stage_views.py +6 -1
  55. package/src/deepscientist/runners/codex.py +143 -43
  56. package/src/deepscientist/shared.py +19 -0
  57. package/src/deepscientist/skills/__init__.py +2 -2
  58. package/src/deepscientist/skills/installer.py +196 -5
  59. package/src/deepscientist/skills/registry.py +66 -0
  60. package/src/prompts/connectors/qq.md +18 -8
  61. package/src/prompts/connectors/weixin.md +16 -6
  62. package/src/prompts/contracts/shared_interaction.md +14 -2
  63. package/src/prompts/system.md +23 -5
  64. package/src/prompts/system_copilot.md +56 -0
  65. package/src/skills/analysis-campaign/SKILL.md +1 -0
  66. package/src/skills/baseline/SKILL.md +8 -0
  67. package/src/skills/decision/SKILL.md +8 -0
  68. package/src/skills/experiment/SKILL.md +8 -0
  69. package/src/skills/figure-polish/SKILL.md +1 -0
  70. package/src/skills/finalize/SKILL.md +1 -0
  71. package/src/skills/idea/SKILL.md +1 -0
  72. package/src/skills/intake-audit/SKILL.md +8 -0
  73. package/src/skills/mentor/SKILL.md +217 -0
  74. package/src/skills/mentor/references/correction-rules.md +210 -0
  75. package/src/skills/mentor/references/knowledge-profile.md +91 -0
  76. package/src/skills/mentor/references/persona-profile.md +138 -0
  77. package/src/skills/mentor/references/taste-profile.md +128 -0
  78. package/src/skills/mentor/references/thought-style-profile.md +138 -0
  79. package/src/skills/mentor/references/work-profile.md +289 -0
  80. package/src/skills/mentor/references/workflow-profile.md +240 -0
  81. package/src/skills/optimize/SKILL.md +1 -0
  82. package/src/skills/rebuttal/SKILL.md +1 -0
  83. package/src/skills/review/SKILL.md +1 -0
  84. package/src/skills/scout/SKILL.md +8 -0
  85. package/src/skills/write/SKILL.md +1 -0
  86. package/src/tui/dist/app/AppContainer.js +19 -11
  87. package/src/tui/dist/index.js +4 -1
  88. package/src/tui/dist/lib/api.js +33 -3
  89. package/src/tui/package.json +1 -1
  90. package/src/ui/dist/assets/AiManusChatView-Bv-Z8YpU.js +204 -0
  91. package/src/ui/dist/assets/AnalysisPlugin-BCKAfjba.js +1 -0
  92. package/src/ui/dist/assets/CliPlugin-BCKcpc35.js +109 -0
  93. package/src/ui/dist/assets/CodeEditorPlugin-DbOfSJ8K.js +2 -0
  94. package/src/ui/dist/assets/CodeViewerPlugin-CbaFRrUU.js +270 -0
  95. package/src/ui/dist/assets/DocViewerPlugin-DAjLVeQD.js +7 -0
  96. package/src/ui/dist/assets/GitCommitViewerPlugin-CIUqbUDO.js +1 -0
  97. package/src/ui/dist/assets/GitDiffViewerPlugin-CQACjoAA.js +6 -0
  98. package/src/ui/dist/assets/GitSnapshotViewer-0r4nLPke.js +30 -0
  99. package/src/ui/dist/assets/ImageViewerPlugin-nBOmI2v_.js +26 -0
  100. package/src/ui/dist/assets/LabCopilotPanel-BHxOxF4z.js +14 -0
  101. package/src/ui/dist/assets/LabPlugin-BKoZGs95.js +22 -0
  102. package/src/ui/dist/assets/LatexPlugin-ZwtV8pIp.js +25 -0
  103. package/src/ui/dist/assets/MarkdownViewerPlugin-DKqVfKyW.js +128 -0
  104. package/src/ui/dist/assets/MarketplacePlugin-BwxStZ9D.js +13 -0
  105. package/src/ui/dist/assets/NotebookEditor-BEQhaQbt.js +81 -0
  106. package/src/ui/dist/assets/{NotebookEditor-CccQYZjX.css → NotebookEditor-BHH8rdGj.css} +1 -1
  107. package/src/ui/dist/assets/NotebookEditor-BOr3x3Ej.css +1 -0
  108. package/src/ui/dist/assets/NotebookEditor-DB9N_T9q.js +361 -0
  109. package/src/ui/dist/assets/PdfLoader-Cy5jtWrr.css +1 -0
  110. package/src/ui/dist/assets/PdfLoader-eWBONbQP.js +16 -0
  111. package/src/ui/dist/assets/PdfMarkdownPlugin-D22YOZL3.js +1 -0
  112. package/src/ui/dist/assets/PdfViewerPlugin-c-RK9DLM.js +17 -0
  113. package/src/ui/dist/assets/PdfViewerPlugin-nwwE-fjJ.css +1 -0
  114. package/src/ui/dist/assets/SearchPlugin-CxF9ytAx.js +16 -0
  115. package/src/ui/dist/assets/SearchPlugin-DA4en4hK.css +1 -0
  116. package/src/ui/dist/assets/TextViewerPlugin-C5xqeeUH.js +54 -0
  117. package/src/ui/dist/assets/VNCViewer-BoLGLnHz.js +11 -0
  118. package/src/ui/dist/assets/bot-DREQOxzP.js +6 -0
  119. package/src/ui/dist/assets/browser-CTB2jwNe.js +8 -0
  120. package/src/ui/dist/assets/chevron-up-C9Qpx4DE.js +6 -0
  121. package/src/ui/dist/assets/code-WlFHE7z_.js +6 -0
  122. package/src/ui/dist/assets/file-content-BZMz3RYp.js +1 -0
  123. package/src/ui/dist/assets/file-diff-panel-CQhw0jS2.js +1 -0
  124. package/src/ui/dist/assets/file-jump-queue-DA-SdG__.js +1 -0
  125. package/src/ui/dist/assets/file-socket-CfQPKQKj.js +1 -0
  126. package/src/ui/dist/assets/git-commit-horizontal-DxZ8DCZh.js +6 -0
  127. package/src/ui/dist/assets/image-Bgl4VIyx.js +6 -0
  128. package/src/ui/dist/assets/index-BpV6lusQ.css +33 -0
  129. package/src/ui/dist/assets/index-CBNVuWcP.js +2496 -0
  130. package/src/ui/dist/assets/index-CwNu1aH4.js +11 -0
  131. package/src/ui/dist/assets/index-DrUnlf6K.js +1 -0
  132. package/src/ui/dist/assets/index-NW-h8VzN.js +1 -0
  133. package/src/ui/dist/assets/monaco-CiHMMNH_.js +1 -0
  134. package/src/ui/dist/assets/pdf-effect-queue-J8OnM0jE.js +6 -0
  135. package/src/ui/dist/assets/plugin-monaco-C8UgLomw.js +19 -0
  136. package/src/ui/dist/assets/plugin-notebook-HbW2K-1c.js +169 -0
  137. package/src/ui/dist/assets/plugin-pdf-CR8hgQBV.js +357 -0
  138. package/src/ui/dist/assets/plugin-terminal-MXFIPun8.js +227 -0
  139. package/src/ui/dist/assets/popover-CLc0pPP8.js +1 -0
  140. package/src/ui/dist/assets/project-sync-C9IdzdZW.js +1 -0
  141. package/src/ui/dist/assets/select-Cs2PmzwL.js +11 -0
  142. package/src/ui/dist/assets/sigma-ClKcHAXm.js +6 -0
  143. package/src/ui/dist/assets/trash-DwpbFr3w.js +11 -0
  144. package/src/ui/dist/assets/useCliAccess-NQ8m0Let.js +1 -0
  145. package/src/ui/dist/assets/useFileDiffOverlay-FuhcnKiw.js +1 -0
  146. package/src/ui/dist/assets/wrap-text-BC-Hltpd.js +11 -0
  147. package/src/ui/dist/assets/zoom-out-E_gaeAxL.js +11 -0
  148. package/src/ui/dist/index.html +5 -2
  149. package/src/ui/dist/assets/AiManusChatView-DDjbFnbt.js +0 -26597
  150. package/src/ui/dist/assets/AnalysisPlugin-Yb5IdmaU.js +0 -123
  151. package/src/ui/dist/assets/CliPlugin-e64sreyu.js +0 -31037
  152. package/src/ui/dist/assets/CodeEditorPlugin-C4D2TIkU.js +0 -427
  153. package/src/ui/dist/assets/CodeViewerPlugin-BVoNZIvC.js +0 -905
  154. package/src/ui/dist/assets/DocViewerPlugin-CLChbllo.js +0 -278
  155. package/src/ui/dist/assets/GitDiffViewerPlugin-C4xeFyFQ.js +0 -2661
  156. package/src/ui/dist/assets/ImageViewerPlugin-OiMUAcLi.js +0 -500
  157. package/src/ui/dist/assets/LabCopilotPanel-BjD2ThQF.js +0 -4104
  158. package/src/ui/dist/assets/LabPlugin-DQPg-NrB.js +0 -2677
  159. package/src/ui/dist/assets/LatexPlugin-CI05XAV9.js +0 -1792
  160. package/src/ui/dist/assets/MarkdownViewerPlugin-DpeBLYZf.js +0 -308
  161. package/src/ui/dist/assets/MarketplacePlugin-DolE58Q2.js +0 -413
  162. package/src/ui/dist/assets/NotebookEditor-7Qm2rSWD.js +0 -4214
  163. package/src/ui/dist/assets/NotebookEditor-C1kWaxKi.js +0 -84873
  164. package/src/ui/dist/assets/NotebookEditor-C3VQ7ylN.css +0 -1405
  165. package/src/ui/dist/assets/PdfLoader-BfOHw8Zw.js +0 -25468
  166. package/src/ui/dist/assets/PdfLoader-C-Y707R3.css +0 -49
  167. package/src/ui/dist/assets/PdfMarkdownPlugin-BulDREv1.js +0 -409
  168. package/src/ui/dist/assets/PdfViewerPlugin-C-daaOaL.js +0 -3095
  169. package/src/ui/dist/assets/PdfViewerPlugin-DQ11QcSf.css +0 -3627
  170. package/src/ui/dist/assets/SearchPlugin-CjpaiJ3A.js +0 -741
  171. package/src/ui/dist/assets/SearchPlugin-DDMrGDkh.css +0 -379
  172. package/src/ui/dist/assets/TextViewerPlugin-BxIyqPQC.js +0 -472
  173. package/src/ui/dist/assets/VNCViewer-HAg9mF7M.js +0 -18821
  174. package/src/ui/dist/assets/awareness-C0NPR2Dj.js +0 -292
  175. package/src/ui/dist/assets/bot-0DYntytV.js +0 -21
  176. package/src/ui/dist/assets/browser-BAcuE0Xj.js +0 -2895
  177. package/src/ui/dist/assets/code-B20Slj_w.js +0 -17
  178. package/src/ui/dist/assets/file-content-DT24KFma.js +0 -377
  179. package/src/ui/dist/assets/file-diff-panel-DK13YPql.js +0 -92
  180. package/src/ui/dist/assets/file-jump-queue-r5XKgJEV.js +0 -16
  181. package/src/ui/dist/assets/file-socket-B4T2o4nR.js +0 -58
  182. package/src/ui/dist/assets/function-B5QZkkHC.js +0 -1895
  183. package/src/ui/dist/assets/image-DSeR_sDS.js +0 -18
  184. package/src/ui/dist/assets/index-BrFje2Uk.js +0 -120
  185. package/src/ui/dist/assets/index-BwRJaoTl.js +0 -25
  186. package/src/ui/dist/assets/index-D_E4281X.js +0 -221322
  187. package/src/ui/dist/assets/index-DnYB3xb1.js +0 -159
  188. package/src/ui/dist/assets/index-G7AcWcMu.css +0 -12594
  189. package/src/ui/dist/assets/monaco-LExaAN3Y.js +0 -623
  190. package/src/ui/dist/assets/pdf-effect-queue-BJk5okWJ.js +0 -47
  191. package/src/ui/dist/assets/pdf_viewer-e0g1is2C.js +0 -8206
  192. package/src/ui/dist/assets/popover-D3Gg_FoV.js +0 -476
  193. package/src/ui/dist/assets/project-sync-C_ygLlVU.js +0 -297
  194. package/src/ui/dist/assets/select-CpAK6uWm.js +0 -1690
  195. package/src/ui/dist/assets/sigma-DEccaSgk.js +0 -22
  196. package/src/ui/dist/assets/square-check-big-uUfyVsbD.js +0 -17
  197. package/src/ui/dist/assets/trash-CXvwwSe8.js +0 -32
  198. package/src/ui/dist/assets/useCliAccess-Bnop4mgR.js +0 -957
  199. package/src/ui/dist/assets/useFileDiffOverlay-B8eUAX0I.js +0 -53
  200. package/src/ui/dist/assets/wrap-text-9vbOBpkW.js +0 -35
  201. package/src/ui/dist/assets/yjs-DncrqiZ8.js +0 -11243
  202. package/src/ui/dist/assets/zoom-out-BgVMmOW4.js +0 -34
package/README.md CHANGED
@@ -1,148 +1,341 @@
1
- <h1 align="center">
2
- <img src="assets/branding/logo.svg" alt="DeepScientist logo" width="84" />
1
+ <h1 align="center" style="font-size: 3.25rem; line-height: 1.02; margin-bottom: 0.4rem;">
2
+ <img src="assets/branding/logo.svg" alt="DeepScientist logo" width="50" />
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>
6
+
7
+ <p align="center">
8
+ <a href="https://github.com/ResearAI/DeepScientist">GitHub</a> |
9
+ <a href="README_ZH.md">中文文档</a> |
10
+ <a href="docs/en/README.md">English Docs</a> |
11
+ <a href="https://openreview.net/forum?id=cZFgsLq8Gs">Paper</a> |
12
+ <a href="https://deepscientist.cc/">Website</a>
8
13
  </p>
9
14
 
10
- <p>
11
- Local-first. Open-source. Git-backed. Built for verifiable computational research.
15
+ <p align="center">
16
+ <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>
17
+ <a href="https://event.baai.ac.cn/activities/962"><img alt="Watch Video" src="https://img.shields.io/badge/Watch-Video-5B7266?style=for-the-badge"></a>
18
+ <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>
19
+ <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>
12
20
  </p>
13
21
 
14
22
  <p align="center">
15
- <a href="docs/en/README.md">English</a> | <a href="docs/zh/README.md">中文</a>
23
+ <a href="https://openreview.net/forum?id=cZFgsLq8Gs"><img alt="ICLR 2026 Top 10 Badge" src="assets/readme/iclr2026_top10_badge.svg" height="44"></a>
16
24
  </p>
17
25
 
18
26
  <p align="center">
19
- <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
- <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
- <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
- <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
+ <strong>15-minute local setup</strong> ·
28
+ <strong>One repo per quest</strong> ·
29
+ <strong>Visible research progress</strong> ·
30
+ <strong>Human takeover anytime</strong>
24
31
  </p>
25
32
 
26
33
  <p align="center">
27
34
  <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/16_TELEGRAM_CONNECTOR_GUIDE.md">Telegram</a> •
30
- <a href="docs/en/17_WHATSAPP_CONNECTOR_GUIDE.md">WhatsApp</a>
31
- <a href="docs/en/18_FEISHU_CONNECTOR_GUIDE.md">Feishu</a> •
32
- <a href="docs/en/10_WEIXIN_CONNECTOR_GUIDE.md"><img src="assets/branding/connector-weixin.png" alt="Weixin" width="14" height="14" /> Weixin</a> •
33
- <a href="docs/en/03_QQ_CONNECTOR_GUIDE.md"><img src="assets/branding/connector-qq.png" alt="QQ" width="14" height="14" /> QQ</a> •
34
- <a href="docs/en/04_LINGZHU_CONNECTOR_GUIDE.md"><img src="assets/branding/connector-rokid.png" alt="Rokid" width="14" height="14" /> Rokid</a> •
35
- <a href="https://openreview.net/forum?id=cZFgsLq8Gs">Paper</a>
35
+ <a href="docs/en/02_START_RESEARCH_GUIDE.md">Launch Your First Project</a> •
36
+ <a href="docs/en/12_GUIDED_WORKFLOW_TOUR.md">Product Tour</a> •
37
+ <a href="docs/en/15_CODEX_PROVIDER_SETUP.md">Model Setup</a>
36
38
  </p>
37
39
 
40
+ ![deepscientist_install](https://github.com/user-attachments/assets/d8244944-4f70-4e08-94e3-002b74ce70fb)
41
+
42
+ Unlike one-shot **AI Scientist** or **autoresearch-style systems**, DeepScientist is a **local-first autonomous research studio** that keeps the full loop moving on your machine, from **baselines** and **experiment rounds** to **paper-ready outputs**, with a **10-minute setup**. Powered by **Findings Memory**, **Bayesian optimization**, and the **Research Map**, it keeps turning each new result into the next starting point and goes deep through broader exploration and, when needed, **thousands of experiment validations**.
43
+
44
+ If you want the technical deep dive behind DeepScientist, watch the [Video](https://event.baai.ac.cn/activities/962).
45
+
46
+ ---
47
+
48
+ https://github.com/user-attachments/assets/3c7abb44-2b25-4477-a011-10a3154d6d76
49
+
50
+ ## Still Spending Your Time On Research Grunt Work?
51
+
52
+ What drains researchers is often not the lack of ideas. It is the endless cycle of low-leverage work:
53
+
54
+ - new papers keep coming, but only a small fraction turns into an actionable next-step research plan
55
+ - baseline repos fail on environment, dependency, data, and script issues before real work even starts
56
+ - experiment results get scattered across terminals, scripts, notes, and chats, making later review painful
57
+ - writing, figures, and analysis live in separate tools, so turning them into a coherent paper takes far too long
58
+
59
+ This is the problem DeepScientist is built to solve:
60
+
61
+ > 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
62
+
63
+ ## DeepScientist Is Not Just Another "Research Chatbot"
64
+
65
+ It is not a tool that summarizes papers, throws you a few ideas, and leaves the dirty work to you.
66
+
67
+ It is much closer to a real long-running AI research partner:
68
+
69
+ | What common AI tools often look like | What DeepScientist does instead |
70
+ |---|---|
71
+ | Great at chatting, but context disappears quickly | Turns tasks, files, branches, artifacts, and memory into durable state |
72
+ | Good at suggesting ideas, but weak at sustained execution | Pushes papers, baselines, experiments, and writing inside one workspace |
73
+ | Strong automation, but feels like a black box | Lets you inspect the process through the web workspace, Canvas, files, and terminal |
74
+ | Hard to take over once it goes off track | Lets you pause, take over, edit plans, change code, and continue at any time |
75
+ | Each run ends when the run ends | Preserves failed paths, winning paths, and reproduction lessons for the next round |
76
+
38
77
  ## About
39
78
 
40
- DeepScientist is not just a long-running autonomous scientific discovery system. It is also a persistent research map that lives on your own machine.
79
+ > DeepScientist is not a one-shot agent demo. It is a system built for long-horizon research work.
80
+
81
+ ## What Can It Actually Help You Get Done?
82
+
83
+ ### 1. Start a real project from a paper or a research question
84
+
85
+ - feed it a core paper, a GitHub repository, or a natural-language research objective
86
+ - it turns those inputs into an executable quest instead of a chat that loses state after a few turns
87
+
88
+ ### 2. Reproduce baselines and keep the reproduction reusable
89
+
90
+ - restore repositories, prepare environments, handle dependencies, and track the critical failures
91
+ - preserve what broke, what got fixed, and which steps are trustworthy for future rounds
92
+
93
+ ### 3. Run experiments continuously instead of stopping after one pass
94
+
95
+ - propose the next hypothesis from existing results
96
+ - branch, ablate, compare, and record conclusions
97
+ - keep failed routes as assets instead of deleting them
98
+
99
+ ### 4. Turn results into materials you can actually ship
100
+
101
+ - organize findings, conclusions, and analysis
102
+ - produce figures, reports, and paper drafts
103
+ - support local PDF and LaTeX compilation workflows
104
+
105
+ ### 5. Follow the same research effort from multiple surfaces
106
+
107
+ - the web workspace in your browser
108
+ - the TUI workflow on a remote server
109
+ - external connector surfaces for collaboration and progress updates
110
+
111
+ The current docs already cover these collaboration channels:
112
+
113
+ - [Weixin](docs/en/10_WEIXIN_CONNECTOR_GUIDE.md)
114
+ - [QQ](docs/en/03_QQ_CONNECTOR_GUIDE.md)
115
+ - [Telegram](docs/en/16_TELEGRAM_CONNECTOR_GUIDE.md)
116
+ - [WhatsApp](docs/en/17_WHATSAPP_CONNECTOR_GUIDE.md)
117
+ - [Feishu](docs/en/18_FEISHU_CONNECTOR_GUIDE.md)
118
+ - [Lingzhu / Rokid](docs/en/04_LINGZHU_CONNECTOR_GUIDE.md)
119
+
120
+ ## Why Is It Easier To Keep Using?
41
121
 
42
- - See every branch.
43
- - Recover every lesson.
44
- - Compound every round.
122
+ What retains users is not a flashy demo. It is a system that becomes more useful the longer you work with it.
45
123
 
46
- **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.
124
+ DeepScientist tends to stick for four reasons:
47
125
 
48
- **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.
126
+ ### Local-first by default
49
127
 
50
- **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.
128
+ - code, experiments, drafts, and project state stay on your own machine or server by default
129
+ - this is especially valuable for unpublished ideas, sensitive experiment history, and longer-running research loops
51
130
 
52
- **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.
131
+ ### One repo per quest
53
132
 
54
- DeepScientist is strong at:
133
+ - every quest is a real Git repository
134
+ - branches, worktrees, files, and artifacts naturally express research structure
55
135
 
56
- - reproducing baselines and keeping them reusable
57
- - reading papers, extracting concrete limitations, and generating hypotheses
58
- - running experiment branches, analysis campaigns, figures, and paper drafts
59
- - preserving both successful and failed results so the next round can start stronger
136
+ ### The process is not a black box
60
137
 
61
- DeepScientist is flexible and easy to use with:
138
+ - it does not only give you an output
139
+ - you can inspect what it read, what it changed, what it kept, and what it plans to do next
62
140
 
63
- - local-first, open-source, one-command install
64
- - Git-backed quest repositories, shared web workspace, Studio / Canvas, and TUI
65
- - workshop-style collaboration: let DeepScientist drive, or pause anytime to inspect, edit, and run commands yourself
66
- - Codex with `gpt-5.4` by default, plus external OpenAI-compatible inference endpoints
67
- - use DeepScientist anywhere: server via TUI, browser via Web, phone via Weixin or QQ, and even glasses via Rokid Glasses
68
- - 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)
69
- - conference-to-journal extension workflows, and rebuttal workflows from paper, code, and reviewer comments
70
- - one quest, one Git repository
71
- - branches and worktrees as native research structure
72
- - live Studio and Canvas from durable quest state
73
- - reusable baselines, not one-off benchmark runs
74
- - durable `bash_exec` sessions, not disposable terminal output
141
+ ### Human collaboration is built in
75
142
 
76
- DeepScientist works best when the task is computational, verifiable, and worth tracking across multiple rounds.
143
+ - DeepScientist can move autonomously
144
+ - you can also step in, edit, redirect, and hand control back whenever you want
77
145
 
78
- ## News
146
+ ## Why Try It Now?
79
147
 
80
- - `2026/03/24`: DeepScientist officially releases `v1.5`.
81
- - `2026/02/01`: the DeepScientist paper is available on [OpenReview](https://openreview.net/forum?id=cZFgsLq8Gs) for `ICLR 2026`.
148
+ Because this is not just a concept. It is a real system with public docs, a public paper, and a public install path.
82
149
 
83
- ## Getting Started
150
+ - `2026/03/24`: DeepScientist officially released `v1.5`
151
+ - `2026/02/01`: the paper went live on [OpenReview](https://openreview.net/forum?id=cZFgsLq8Gs) for `ICLR 2026`
152
+ - npm install path is already available: [`@researai/deepscientist`](https://www.npmjs.com/package/@researai/deepscientist)
153
+ - both Chinese and English docs are available, along with Web, TUI, and connector entry points
84
154
 
85
- - [Docs Index (English)](docs/en/README.md)
86
- - [Quick Start (English)](docs/en/00_QUICK_START.md)
87
- - [Guided Workflow Tour (English)](docs/en/12_GUIDED_WORKFLOW_TOUR.md)
88
- - [Start Research Guide (English)](docs/en/02_START_RESEARCH_GUIDE.md)
89
- - [Core Architecture Guide (English)](docs/en/13_CORE_ARCHITECTURE_GUIDE.md)
155
+ ## Product Preview
90
156
 
91
- ## Install
157
+ ### Architecture Overview
158
+
159
+ <p align="center">
160
+ <img src="assets/readme/architecture-promo.png" alt="DeepScientist architecture overview" width="92%" />
161
+ </p>
162
+
163
+ ### Example Outputs
164
+
165
+ <table>
166
+ <tr>
167
+ <td width="50%">
168
+ <img src="assets/readme/paper-output-1.png" alt="DeepScientist generated paper example 1" width="100%" />
169
+ </td>
170
+ <td width="50%">
171
+ <img src="assets/readme/paper-output-2.png" alt="DeepScientist generated paper example 2" width="100%" />
172
+ </td>
173
+ </tr>
174
+ <tr>
175
+ <td valign="top">
176
+ <b>Example paper output 1</b><br/>
177
+ Paper-facing deliverables can be preserved directly inside the quest instead of being split across external tools.
178
+ </td>
179
+ <td valign="top">
180
+ <b>Example paper output 2</b><br/>
181
+ DeepScientist can carry work through writing, review, figure polish, and export workflows.
182
+ </td>
183
+ </tr>
184
+ </table>
185
+
186
+ ### Workspace Preview
187
+
188
+ <table>
189
+ <tr>
190
+ <td width="33%">
191
+ <img src="assets/readme/start-research-promo.png" alt="Start Research dialog" width="100%" />
192
+ </td>
193
+ <td width="33%">
194
+ <img src="assets/readme/canvas-promo.png" alt="Canvas workspace preview" width="100%" />
195
+ </td>
196
+ <td width="33%">
197
+ <img src="assets/readme/studio-details-promo.png" alt="Studio and details workspace preview" width="100%" />
198
+ </td>
199
+ </tr>
200
+ <tr>
201
+ <td valign="top">
202
+ <b>Start Research</b><br/>
203
+ Kick off a quest from a paper, repository, or natural-language goal.
204
+ </td>
205
+ <td valign="top">
206
+ <b>Canvas</b><br/>
207
+ Inspect branches, baselines, and accumulated research structure as a visible map.
208
+ </td>
209
+ <td valign="top">
210
+ <b>Studio + Details</b><br/>
211
+ Review metrics, traces, and project state without leaving the same workspace.
212
+ </td>
213
+ </tr>
214
+ </table>
215
+
216
+ ### Progress Reporting
217
+
218
+ <p align="center">
219
+ <img src="assets/readme/progress-reporting-promo.png" alt="DeepScientist progress reporting example" width="88%" />
220
+ </p>
221
+
222
+ ### Projects surface after long-running work
223
+
224
+ ![DeepScientist projects surface](assets/readme/projects-surface.png)
225
+
226
+ ## Who Will Love DeepScientist Most?
227
+
228
+ - graduate students and engineers who want to reproduce papers and push beyond existing baselines
229
+ - labs or research teams running long experiment loops, ablations, and structured result analysis
230
+ - people who want code, experiments, notes, and writing to live in one workspace
231
+ - users who do not want to hand unpublished ideas and intermediate results directly to a pure cloud workflow
232
+ - people who want to run work on servers while following progress from web, TUI, or messaging surfaces
233
+
234
+ ## The Core Philosophy Behind DeepScientist
235
+
236
+ We believe a system that is actually suitable for research should at least satisfy these principles:
237
+
238
+ - one quest, one repository, instead of letting everything dissolve after a short conversation
239
+ - branches and worktrees should express research routes naturally instead of being forced into chat history
240
+ - failed paths should be preserved, summarized, and reused instead of overwritten
241
+ - human researchers should always retain takeover power instead of being locked outside the loop
242
+ - the research process should be reviewable, inspectable, and auditable instead of relying on "the model says it did it"
243
+
244
+ If that sounds like the way you want to work, DeepScientist is worth trying now.
245
+
246
+ ## Get Started In 30 Seconds
247
+
248
+ If you want to try it right now, the shortest path is:
249
+
250
+ Platform note: DeepScientist fully supports Linux and macOS. Native Windows support is currently experimental (strongly recommend WSL2).
92
251
 
93
252
  ```bash
94
253
  npm install -g @researai/deepscientist
95
- codex --login
96
- ds --yolo --here
254
+ codex login
255
+ ds --here
97
256
  ```
98
257
 
99
- If `codex --login` is unavailable, run `codex` once and finish authentication there. After startup, open `http://127.0.0.1:20999`.
258
+ To stop the managed local daemon and all currently running agents:
100
259
 
101
- Linux and macOS remain the most battle-tested platforms. Native Windows support is now experimental; if you need the closest Linux-like terminal behavior, prefer WSL2.
260
+ ```bash
261
+ ds --stop
262
+ ```
102
263
 
103
- For detailed install, troubleshooting, PDF compile, and other launch modes, use:
264
+ If you prefer the interactive first-run flow, run this once first:
104
265
 
105
- - [Quick Start](docs/en/00_QUICK_START.md)
106
- - [Codex Provider Setup](docs/en/15_CODEX_PROVIDER_SETUP.md)
107
- - [Doctor](docs/en/09_DOCTOR.md)
266
+ ```bash
267
+ codex
268
+ ```
108
269
 
109
- ## Documentation
270
+ If `codex` still appears to be missing after installing DeepScientist, take the explicit repair path instead of assuming the bundled dependency was linked correctly:
110
271
 
111
- - [Docs Index (English)](docs/en/README.md)
112
- - [Guided Workflow Tour (English)](docs/en/12_GUIDED_WORKFLOW_TOUR.md)
113
- - [Core Architecture Guide (English)](docs/en/13_CORE_ARCHITECTURE_GUIDE.md)
114
- - [Prompt, Skills, and MCP Guide (English)](docs/en/14_PROMPT_SKILLS_AND_MCP_GUIDE.md)
115
- - [Weixin Connector Guide (English)](docs/en/10_WEIXIN_CONNECTOR_GUIDE.md)
116
- - [Telegram Connector Guide (English)](docs/en/16_TELEGRAM_CONNECTOR_GUIDE.md)
117
- - [WhatsApp Connector Guide (English)](docs/en/17_WHATSAPP_CONNECTOR_GUIDE.md)
118
- - [Feishu Connector Guide (English)](docs/en/18_FEISHU_CONNECTOR_GUIDE.md)
119
- - [QQ Connector Guide (English)](docs/en/03_QQ_CONNECTOR_GUIDE.md)
120
- - [Lingzhu / Rokid Guide (English)](docs/en/04_LINGZHU_CONNECTOR_GUIDE.md)
121
- - [Memory and MCP Guide (English)](docs/en/07_MEMORY_AND_MCP.md)
122
- - [Settings Reference (English)](docs/en/01_SETTINGS_REFERENCE.md)
123
- - [Codex Provider Setup (English)](docs/en/15_CODEX_PROVIDER_SETUP.md)
124
-
125
- ## Maintainers
272
+ ```bash
273
+ npm install -g @openai/codex
274
+ which codex
275
+ codex login
276
+ ```
126
277
 
127
- - [Architecture](docs/en/90_ARCHITECTURE.md)
128
- - [Development Guide](docs/en/91_DEVELOPMENT.md)
278
+ If `which codex` still prints nothing after that, fix the npm global bin path first, then retry `codex login` and `ds doctor`.
129
279
 
130
- ## Citation
280
+ After startup, the default local address is:
131
281
 
132
- 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:
282
+ ```text
283
+ http://127.0.0.1:20999
284
+ ```
133
285
 
134
- ```bibtex
135
- @inproceedings{
136
- weng2026deepscientist,
137
- title={DeepScientist: Advancing Frontier-Pushing Scientific Findings Progressively},
138
- author={Yixuan Weng and Minjun Zhu and Qiujie Xie and QiYao Sun and Zhen Lin and Sifan Liu and Yue Zhang},
139
- booktitle={The Fourteenth International Conference on Learning Representations},
140
- year={2026},
141
- url={https://openreview.net/forum?id=cZFgsLq8Gs}
142
- }
286
+ Local browser auth is now optional and disabled by default. If you want a per-launch local access password, start with:
287
+
288
+ ```bash
289
+ ds --auth true
143
290
  ```
144
291
 
145
- ## End-to-End Autonomous Research Systems
292
+ Then you only need to do three things:
293
+
294
+ 1. click `Start Research`
295
+ 2. fill in the research goal, baseline links, paper links, or local paths
296
+ 3. let DeepScientist start a real research project that can keep evolving locally
297
+
298
+ If this is your first run, prefer an isolated environment, a non-root user, and a local machine. For the full details, see:
299
+
300
+ - [00 Quick Start](docs/en/00_QUICK_START.md)
301
+ - [15 Codex Provider Setup](docs/en/15_CODEX_PROVIDER_SETUP.md)
302
+ - [09 Doctor](docs/en/09_DOCTOR.md)
303
+
304
+ ## Choose Your Starting Path
305
+
306
+ ### I just want to get it running first
307
+
308
+ - [00 Quick Start](docs/en/00_QUICK_START.md)
309
+ - [12 Guided Workflow Tour](docs/en/12_GUIDED_WORKFLOW_TOUR.md)
310
+
311
+ ### I want to launch a real project today
312
+
313
+ - [02 Start Research Guide](docs/en/02_START_RESEARCH_GUIDE.md)
314
+ - [01 Settings Reference](docs/en/01_SETTINGS_REFERENCE.md)
315
+
316
+ ### I mainly work on servers and terminals
317
+
318
+ - [05 TUI Guide](docs/en/05_TUI_GUIDE.md)
319
+
320
+ ### I want to connect my own models or external collaboration channels
321
+
322
+ - [15 Codex Provider Setup](docs/en/15_CODEX_PROVIDER_SETUP.md)
323
+ - [21 Local Model Backends Guide](docs/en/21_LOCAL_MODEL_BACKENDS_GUIDE.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
146
339
 
147
340
  | System | System Type | E2E | Research Map | Workshop | Keeps Growing | Channels | Figure & Rebuttal & Review |
148
341
  |---|---|---|---|---|---|---|---|
@@ -161,17 +354,105 @@ url={https://openreview.net/forum?id=cZFgsLq8Gs}
161
354
  | [Research-Claw](https://github.com/wentorai/Research-Claw) | Open-source | ✓ | | ✓ | ✓ | ✓ | |
162
355
  | [DeepScientist](https://github.com/ResearAI/DeepScientist) | Open-source | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
163
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 the paper below. DeepScientist is jointly developed by Yixuan Weng, Weixu Zhao, Shichen Li, Zhen Lin, and Minjun Zhu.
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/wechat5.jpg" alt="DeepScientist WeChat group" width="360" />
404
+ </p>
405
+
164
406
  ## More From ResearAI
165
407
 
166
- 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:
167
409
 
168
- | Project | What it does |
169
- |---|---|
170
- | [AutoFigure](https://github.com/ResearAI/AutoFigure) | generate paper-ready figures |
171
- | [AutoFigure-Edit](https://github.com/ResearAI/AutoFigure-Edit) | editable vector paper figures |
172
- | [DeepReviewer-v2](https://github.com/ResearAI/DeepReviewer-v2) | review papers and drafts |
173
- | [Awesome-AI-Scientist](https://github.com/ResearAI/Awesome-AI-Scientist) | curated AI scientist landscape |
410
+ | Project | What it does | Stars |
411
+ |---|---|---|
412
+ | **[MeOS](https://github.com/ResearAI/MeOS)** | Fork yourself as a Skill, so agents understand you better | ![GitHub stars](https://img.shields.io/github/stars/ResearAI/MeOS?style=flat&logo=github) |
413
+ | [AutoFigure](https://github.com/ResearAI/AutoFigure) | generate publication-ready figures | ![GitHub stars](https://img.shields.io/github/stars/ResearAI/AutoFigure?style=flat&logo=github) |
414
+ | [AutoFigure-Edit](https://github.com/ResearAI/AutoFigure-Edit) | generate editable vector paper figures | ![GitHub stars](https://img.shields.io/github/stars/ResearAI/AutoFigure-Edit?style=flat&logo=github) |
415
+ | [DeepReviewer-v2](https://github.com/ResearAI/DeepReviewer-v2) | review papers and suggest revisions | ![GitHub stars](https://img.shields.io/github/stars/ResearAI/DeepReviewer-v2?style=flat&logo=github) |
416
+ | [Awesome-AI-Scientist](https://github.com/ResearAI/Awesome-AI-Scientist) | curated AI scientist landscape | ![GitHub stars](https://img.shields.io/github/stars/ResearAI/Awesome-AI-Scientist?style=flat&logo=github) |
417
+
418
+ ## Roadmap
419
+
420
+ We are building DeepScientist as a long-term local-first research operating system.
421
+
422
+ The next major upgrades focus on four directions:
423
+
424
+ ### 1. Deeper Research Loops
425
+
426
+ - AI Scientist Benchmark support for more realistic evaluation and comparison
427
+ - smoother automatic baseline upload, download, and reuse
428
+ - stronger experiment replay, comparison, and paper-facing outputs
429
+
430
+ ### 2. Stronger Long-Horizon Memory
431
+
432
+ - stronger Memory and Findings Memory mechanisms
433
+ - better cross-run and cross-quest reuse
434
+ - less repeated failure and less rediscovery cost over long projects
435
+
436
+ ### 3. Richer Multimodal And Collaborative Workflows
437
+
438
+ - VideoAnything-style multimodal research capabilities
439
+ - better local-model, connector, and copilot/autonomous collaboration flows
440
+ - a more efficient and more reliable DeepScientist system across local, collaborative, and long-horizon research settings
441
+
442
+ ### 4. Stronger Security And Safer Deployment
443
+
444
+ - safer local-first and server-side deployment defaults
445
+ - stronger auth, permission, and connector-surface protection
446
+ - less fabrication, lower hallucination, and more verification-grounded outputs
447
+ - better auditability for long-running autonomous research workflows
448
+
449
+ If this direction is interesting to you, please give the project a `Watch` and a `Star`:
450
+
451
+ [![Watch DeepScientist](https://img.shields.io/github/watchers/ResearAI/DeepScientist?style=for-the-badge&logo=github&label=Watch%20DeepScientist)](https://github.com/ResearAI/DeepScientist/watchers)
452
+ [![Star DeepScientist](https://img.shields.io/github/stars/ResearAI/DeepScientist?style=for-the-badge&logo=github&label=Star%20DeepScientist)](https://github.com/ResearAI/DeepScientist/stargazers)
453
+
454
+ ---
174
455
 
175
- ## License
456
+ This project is maintained by WestlakeNLP. If you run into problems, please ask on [DeepWiki](https://deepwiki.com/ResearAI/DeepScientist) first; if it still cannot be resolved, open an issue.
176
457
 
177
- [Apache License 2.0](LICENSE)
458
+ WestlakeNLP is led by ACL Fellow Professor Yue Zhang. If you are interested in a long-term internship, PhD position, or research assistant opportunity, contact Professor Yue Zhang at `zhangyue@westlake.edu.cn`.