@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.
- package/README.md +385 -104
- package/bin/ds.js +1241 -110
- package/docs/en/00_QUICK_START.md +100 -19
- package/docs/en/01_SETTINGS_REFERENCE.md +34 -1
- package/docs/en/02_START_RESEARCH_GUIDE.md +7 -0
- package/docs/en/05_TUI_GUIDE.md +6 -0
- package/docs/en/06_RUNTIME_AND_CANVAS.md +4 -3
- package/docs/en/09_DOCTOR.md +25 -8
- package/docs/en/14_PROMPT_SKILLS_AND_MCP_GUIDE.md +63 -13
- package/docs/en/15_CODEX_PROVIDER_SETUP.md +37 -11
- package/docs/en/19_EXTERNAL_CONTROLLER_GUIDE.md +226 -0
- package/docs/en/19_LOCAL_BROWSER_AUTH.md +70 -0
- package/docs/en/20_WORKSPACE_MODES_GUIDE.md +250 -0
- package/docs/en/21_LOCAL_MODEL_BACKENDS_GUIDE.md +283 -0
- package/docs/en/91_DEVELOPMENT.md +237 -0
- package/docs/en/README.md +24 -2
- package/docs/zh/00_QUICK_START.md +89 -19
- package/docs/zh/01_SETTINGS_REFERENCE.md +34 -1
- package/docs/zh/02_START_RESEARCH_GUIDE.md +7 -0
- package/docs/zh/05_TUI_GUIDE.md +6 -0
- package/docs/zh/09_DOCTOR.md +26 -9
- package/docs/zh/14_PROMPT_SKILLS_AND_MCP_GUIDE.md +63 -13
- package/docs/zh/15_CODEX_PROVIDER_SETUP.md +37 -11
- package/docs/zh/19_EXTERNAL_CONTROLLER_GUIDE.md +226 -0
- package/docs/zh/19_LOCAL_BROWSER_AUTH.md +68 -0
- package/docs/zh/20_WORKSPACE_MODES_GUIDE.md +251 -0
- package/docs/zh/21_LOCAL_MODEL_BACKENDS_GUIDE.md +281 -0
- package/docs/zh/README.md +24 -2
- package/install.sh +46 -4
- package/package.json +2 -1
- package/pyproject.toml +1 -1
- package/src/deepscientist/__init__.py +1 -1
- package/src/deepscientist/acp/envelope.py +6 -0
- package/src/deepscientist/artifact/service.py +647 -22
- package/src/deepscientist/bash_exec/service.py +234 -9
- package/src/deepscientist/bridges/connectors.py +8 -2
- package/src/deepscientist/cli.py +115 -19
- package/src/deepscientist/codex_cli_compat.py +367 -22
- package/src/deepscientist/config/models.py +2 -1
- package/src/deepscientist/config/service.py +183 -13
- package/src/deepscientist/daemon/api/handlers.py +255 -31
- package/src/deepscientist/daemon/api/router.py +9 -0
- package/src/deepscientist/daemon/app.py +1146 -105
- package/src/deepscientist/diagnostics/__init__.py +6 -0
- package/src/deepscientist/diagnostics/runner_failures.py +130 -0
- package/src/deepscientist/doctor.py +207 -3
- package/src/deepscientist/gitops/__init__.py +10 -1
- package/src/deepscientist/gitops/diff.py +129 -0
- package/src/deepscientist/gitops/service.py +4 -1
- package/src/deepscientist/mcp/server.py +39 -0
- package/src/deepscientist/prompts/builder.py +275 -34
- package/src/deepscientist/quest/layout.py +15 -2
- package/src/deepscientist/quest/service.py +707 -55
- package/src/deepscientist/quest/stage_views.py +6 -1
- package/src/deepscientist/runners/codex.py +143 -43
- package/src/deepscientist/shared.py +19 -0
- package/src/deepscientist/skills/__init__.py +2 -2
- package/src/deepscientist/skills/installer.py +196 -5
- package/src/deepscientist/skills/registry.py +66 -0
- package/src/prompts/connectors/qq.md +18 -8
- package/src/prompts/connectors/weixin.md +16 -6
- package/src/prompts/contracts/shared_interaction.md +14 -2
- package/src/prompts/system.md +23 -5
- package/src/prompts/system_copilot.md +56 -0
- package/src/skills/analysis-campaign/SKILL.md +1 -0
- package/src/skills/baseline/SKILL.md +8 -0
- package/src/skills/decision/SKILL.md +8 -0
- package/src/skills/experiment/SKILL.md +8 -0
- package/src/skills/figure-polish/SKILL.md +1 -0
- package/src/skills/finalize/SKILL.md +1 -0
- package/src/skills/idea/SKILL.md +1 -0
- package/src/skills/intake-audit/SKILL.md +8 -0
- package/src/skills/mentor/SKILL.md +217 -0
- package/src/skills/mentor/references/correction-rules.md +210 -0
- package/src/skills/mentor/references/knowledge-profile.md +91 -0
- package/src/skills/mentor/references/persona-profile.md +138 -0
- package/src/skills/mentor/references/taste-profile.md +128 -0
- package/src/skills/mentor/references/thought-style-profile.md +138 -0
- package/src/skills/mentor/references/work-profile.md +289 -0
- package/src/skills/mentor/references/workflow-profile.md +240 -0
- package/src/skills/optimize/SKILL.md +1 -0
- package/src/skills/rebuttal/SKILL.md +1 -0
- package/src/skills/review/SKILL.md +1 -0
- package/src/skills/scout/SKILL.md +8 -0
- package/src/skills/write/SKILL.md +1 -0
- package/src/tui/dist/app/AppContainer.js +19 -11
- package/src/tui/dist/index.js +4 -1
- package/src/tui/dist/lib/api.js +33 -3
- package/src/tui/package.json +1 -1
- package/src/ui/dist/assets/AiManusChatView-Bv-Z8YpU.js +204 -0
- package/src/ui/dist/assets/AnalysisPlugin-BCKAfjba.js +1 -0
- package/src/ui/dist/assets/CliPlugin-BCKcpc35.js +109 -0
- package/src/ui/dist/assets/CodeEditorPlugin-DbOfSJ8K.js +2 -0
- package/src/ui/dist/assets/CodeViewerPlugin-CbaFRrUU.js +270 -0
- package/src/ui/dist/assets/DocViewerPlugin-DAjLVeQD.js +7 -0
- package/src/ui/dist/assets/GitCommitViewerPlugin-CIUqbUDO.js +1 -0
- package/src/ui/dist/assets/GitDiffViewerPlugin-CQACjoAA.js +6 -0
- package/src/ui/dist/assets/GitSnapshotViewer-0r4nLPke.js +30 -0
- package/src/ui/dist/assets/ImageViewerPlugin-nBOmI2v_.js +26 -0
- package/src/ui/dist/assets/LabCopilotPanel-BHxOxF4z.js +14 -0
- package/src/ui/dist/assets/LabPlugin-BKoZGs95.js +22 -0
- package/src/ui/dist/assets/LatexPlugin-ZwtV8pIp.js +25 -0
- package/src/ui/dist/assets/MarkdownViewerPlugin-DKqVfKyW.js +128 -0
- package/src/ui/dist/assets/MarketplacePlugin-BwxStZ9D.js +13 -0
- package/src/ui/dist/assets/NotebookEditor-BEQhaQbt.js +81 -0
- package/src/ui/dist/assets/{NotebookEditor-CccQYZjX.css → NotebookEditor-BHH8rdGj.css} +1 -1
- package/src/ui/dist/assets/NotebookEditor-BOr3x3Ej.css +1 -0
- package/src/ui/dist/assets/NotebookEditor-DB9N_T9q.js +361 -0
- package/src/ui/dist/assets/PdfLoader-Cy5jtWrr.css +1 -0
- package/src/ui/dist/assets/PdfLoader-eWBONbQP.js +16 -0
- package/src/ui/dist/assets/PdfMarkdownPlugin-D22YOZL3.js +1 -0
- package/src/ui/dist/assets/PdfViewerPlugin-c-RK9DLM.js +17 -0
- package/src/ui/dist/assets/PdfViewerPlugin-nwwE-fjJ.css +1 -0
- package/src/ui/dist/assets/SearchPlugin-CxF9ytAx.js +16 -0
- package/src/ui/dist/assets/SearchPlugin-DA4en4hK.css +1 -0
- package/src/ui/dist/assets/TextViewerPlugin-C5xqeeUH.js +54 -0
- package/src/ui/dist/assets/VNCViewer-BoLGLnHz.js +11 -0
- package/src/ui/dist/assets/bot-DREQOxzP.js +6 -0
- package/src/ui/dist/assets/browser-CTB2jwNe.js +8 -0
- package/src/ui/dist/assets/chevron-up-C9Qpx4DE.js +6 -0
- package/src/ui/dist/assets/code-WlFHE7z_.js +6 -0
- package/src/ui/dist/assets/file-content-BZMz3RYp.js +1 -0
- package/src/ui/dist/assets/file-diff-panel-CQhw0jS2.js +1 -0
- package/src/ui/dist/assets/file-jump-queue-DA-SdG__.js +1 -0
- package/src/ui/dist/assets/file-socket-CfQPKQKj.js +1 -0
- package/src/ui/dist/assets/git-commit-horizontal-DxZ8DCZh.js +6 -0
- package/src/ui/dist/assets/image-Bgl4VIyx.js +6 -0
- package/src/ui/dist/assets/index-BpV6lusQ.css +33 -0
- package/src/ui/dist/assets/index-CBNVuWcP.js +2496 -0
- package/src/ui/dist/assets/index-CwNu1aH4.js +11 -0
- package/src/ui/dist/assets/index-DrUnlf6K.js +1 -0
- package/src/ui/dist/assets/index-NW-h8VzN.js +1 -0
- package/src/ui/dist/assets/monaco-CiHMMNH_.js +1 -0
- package/src/ui/dist/assets/pdf-effect-queue-J8OnM0jE.js +6 -0
- package/src/ui/dist/assets/plugin-monaco-C8UgLomw.js +19 -0
- package/src/ui/dist/assets/plugin-notebook-HbW2K-1c.js +169 -0
- package/src/ui/dist/assets/plugin-pdf-CR8hgQBV.js +357 -0
- package/src/ui/dist/assets/plugin-terminal-MXFIPun8.js +227 -0
- package/src/ui/dist/assets/popover-CLc0pPP8.js +1 -0
- package/src/ui/dist/assets/project-sync-C9IdzdZW.js +1 -0
- package/src/ui/dist/assets/select-Cs2PmzwL.js +11 -0
- package/src/ui/dist/assets/sigma-ClKcHAXm.js +6 -0
- package/src/ui/dist/assets/trash-DwpbFr3w.js +11 -0
- package/src/ui/dist/assets/useCliAccess-NQ8m0Let.js +1 -0
- package/src/ui/dist/assets/useFileDiffOverlay-FuhcnKiw.js +1 -0
- package/src/ui/dist/assets/wrap-text-BC-Hltpd.js +11 -0
- package/src/ui/dist/assets/zoom-out-E_gaeAxL.js +11 -0
- package/src/ui/dist/index.html +5 -2
- package/src/ui/dist/assets/AiManusChatView-DDjbFnbt.js +0 -26597
- package/src/ui/dist/assets/AnalysisPlugin-Yb5IdmaU.js +0 -123
- package/src/ui/dist/assets/CliPlugin-e64sreyu.js +0 -31037
- package/src/ui/dist/assets/CodeEditorPlugin-C4D2TIkU.js +0 -427
- package/src/ui/dist/assets/CodeViewerPlugin-BVoNZIvC.js +0 -905
- package/src/ui/dist/assets/DocViewerPlugin-CLChbllo.js +0 -278
- package/src/ui/dist/assets/GitDiffViewerPlugin-C4xeFyFQ.js +0 -2661
- package/src/ui/dist/assets/ImageViewerPlugin-OiMUAcLi.js +0 -500
- package/src/ui/dist/assets/LabCopilotPanel-BjD2ThQF.js +0 -4104
- package/src/ui/dist/assets/LabPlugin-DQPg-NrB.js +0 -2677
- package/src/ui/dist/assets/LatexPlugin-CI05XAV9.js +0 -1792
- package/src/ui/dist/assets/MarkdownViewerPlugin-DpeBLYZf.js +0 -308
- package/src/ui/dist/assets/MarketplacePlugin-DolE58Q2.js +0 -413
- package/src/ui/dist/assets/NotebookEditor-7Qm2rSWD.js +0 -4214
- package/src/ui/dist/assets/NotebookEditor-C1kWaxKi.js +0 -84873
- package/src/ui/dist/assets/NotebookEditor-C3VQ7ylN.css +0 -1405
- package/src/ui/dist/assets/PdfLoader-BfOHw8Zw.js +0 -25468
- package/src/ui/dist/assets/PdfLoader-C-Y707R3.css +0 -49
- package/src/ui/dist/assets/PdfMarkdownPlugin-BulDREv1.js +0 -409
- package/src/ui/dist/assets/PdfViewerPlugin-C-daaOaL.js +0 -3095
- package/src/ui/dist/assets/PdfViewerPlugin-DQ11QcSf.css +0 -3627
- package/src/ui/dist/assets/SearchPlugin-CjpaiJ3A.js +0 -741
- package/src/ui/dist/assets/SearchPlugin-DDMrGDkh.css +0 -379
- package/src/ui/dist/assets/TextViewerPlugin-BxIyqPQC.js +0 -472
- package/src/ui/dist/assets/VNCViewer-HAg9mF7M.js +0 -18821
- package/src/ui/dist/assets/awareness-C0NPR2Dj.js +0 -292
- package/src/ui/dist/assets/bot-0DYntytV.js +0 -21
- package/src/ui/dist/assets/browser-BAcuE0Xj.js +0 -2895
- package/src/ui/dist/assets/code-B20Slj_w.js +0 -17
- package/src/ui/dist/assets/file-content-DT24KFma.js +0 -377
- package/src/ui/dist/assets/file-diff-panel-DK13YPql.js +0 -92
- package/src/ui/dist/assets/file-jump-queue-r5XKgJEV.js +0 -16
- package/src/ui/dist/assets/file-socket-B4T2o4nR.js +0 -58
- package/src/ui/dist/assets/function-B5QZkkHC.js +0 -1895
- package/src/ui/dist/assets/image-DSeR_sDS.js +0 -18
- package/src/ui/dist/assets/index-BrFje2Uk.js +0 -120
- package/src/ui/dist/assets/index-BwRJaoTl.js +0 -25
- package/src/ui/dist/assets/index-D_E4281X.js +0 -221322
- package/src/ui/dist/assets/index-DnYB3xb1.js +0 -159
- package/src/ui/dist/assets/index-G7AcWcMu.css +0 -12594
- package/src/ui/dist/assets/monaco-LExaAN3Y.js +0 -623
- package/src/ui/dist/assets/pdf-effect-queue-BJk5okWJ.js +0 -47
- package/src/ui/dist/assets/pdf_viewer-e0g1is2C.js +0 -8206
- package/src/ui/dist/assets/popover-D3Gg_FoV.js +0 -476
- package/src/ui/dist/assets/project-sync-C_ygLlVU.js +0 -297
- package/src/ui/dist/assets/select-CpAK6uWm.js +0 -1690
- package/src/ui/dist/assets/sigma-DEccaSgk.js +0 -22
- package/src/ui/dist/assets/square-check-big-uUfyVsbD.js +0 -17
- package/src/ui/dist/assets/trash-CXvwwSe8.js +0 -32
- package/src/ui/dist/assets/useCliAccess-Bnop4mgR.js +0 -957
- package/src/ui/dist/assets/useFileDiffOverlay-B8eUAX0I.js +0 -53
- package/src/ui/dist/assets/wrap-text-9vbOBpkW.js +0 -35
- package/src/ui/dist/assets/yjs-DncrqiZ8.js +0 -11243
- 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="
|
|
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
|
-
|
|
7
|
-
|
|
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
|
-
|
|
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="
|
|
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
|
-
<
|
|
20
|
-
<
|
|
21
|
-
<
|
|
22
|
-
<
|
|
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">
|
|
29
|
-
<a href="docs/en/
|
|
30
|
-
<a href="docs/en/
|
|
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
|
+

|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
124
|
+
DeepScientist tends to stick for four reasons:
|
|
47
125
|
|
|
48
|
-
|
|
126
|
+
### Local-first by default
|
|
49
127
|
|
|
50
|
-
|
|
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
|
-
|
|
131
|
+
### One repo per quest
|
|
53
132
|
|
|
54
|
-
|
|
133
|
+
- every quest is a real Git repository
|
|
134
|
+
- branches, worktrees, files, and artifacts naturally express research structure
|
|
55
135
|
|
|
56
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
143
|
+
- DeepScientist can move autonomously
|
|
144
|
+
- you can also step in, edit, redirect, and hand control back whenever you want
|
|
77
145
|
|
|
78
|
-
##
|
|
146
|
+
## Why Try It Now?
|
|
79
147
|
|
|
80
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
+

|
|
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
|
|
96
|
-
ds --
|
|
254
|
+
codex login
|
|
255
|
+
ds --here
|
|
97
256
|
```
|
|
98
257
|
|
|
99
|
-
|
|
258
|
+
To stop the managed local daemon and all currently running agents:
|
|
100
259
|
|
|
101
|
-
|
|
260
|
+
```bash
|
|
261
|
+
ds --stop
|
|
262
|
+
```
|
|
102
263
|
|
|
103
|
-
|
|
264
|
+
If you prefer the interactive first-run flow, run this once first:
|
|
104
265
|
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
266
|
+
```bash
|
|
267
|
+
codex
|
|
268
|
+
```
|
|
108
269
|
|
|
109
|
-
|
|
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
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
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
|
-
|
|
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
|
-
|
|
280
|
+
After startup, the default local address is:
|
|
131
281
|
|
|
132
|
-
|
|
282
|
+
```text
|
|
283
|
+
http://127.0.0.1:20999
|
|
284
|
+
```
|
|
133
285
|
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
| [
|
|
171
|
-
| [AutoFigure
|
|
172
|
-
| [
|
|
173
|
-
| [
|
|
410
|
+
| Project | What it does | Stars |
|
|
411
|
+
|---|---|---|
|
|
412
|
+
| **[MeOS](https://github.com/ResearAI/MeOS)** | Fork yourself as a Skill, so agents understand you better |  |
|
|
413
|
+
| [AutoFigure](https://github.com/ResearAI/AutoFigure) | generate publication-ready figures |  |
|
|
414
|
+
| [AutoFigure-Edit](https://github.com/ResearAI/AutoFigure-Edit) | generate editable vector paper figures |  |
|
|
415
|
+
| [DeepReviewer-v2](https://github.com/ResearAI/DeepReviewer-v2) | review papers and suggest revisions |  |
|
|
416
|
+
| [Awesome-AI-Scientist](https://github.com/ResearAI/Awesome-AI-Scientist) | curated AI scientist landscape |  |
|
|
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
|
+
[](https://github.com/ResearAI/DeepScientist/watchers)
|
|
452
|
+
[](https://github.com/ResearAI/DeepScientist/stargazers)
|
|
453
|
+
|
|
454
|
+
---
|
|
174
455
|
|
|
175
|
-
|
|
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
|
-
|
|
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`.
|