@researai/deepscientist 1.5.8 → 1.5.11

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 (148) hide show
  1. package/LICENSE +186 -21
  2. package/README.md +108 -95
  3. package/assets/branding/connector-qq.png +0 -0
  4. package/assets/branding/connector-rokid.png +0 -0
  5. package/assets/branding/connector-weixin.png +0 -0
  6. package/assets/branding/projects.png +0 -0
  7. package/bin/ds.js +172 -13
  8. package/docs/assets/branding/projects.png +0 -0
  9. package/docs/en/00_QUICK_START.md +308 -70
  10. package/docs/en/01_SETTINGS_REFERENCE.md +3 -0
  11. package/docs/en/02_START_RESEARCH_GUIDE.md +112 -0
  12. package/docs/en/04_LINGZHU_CONNECTOR_GUIDE.md +62 -179
  13. package/docs/en/09_DOCTOR.md +41 -5
  14. package/docs/en/10_WEIXIN_CONNECTOR_GUIDE.md +137 -0
  15. package/docs/en/11_LICENSE_AND_RISK.md +256 -0
  16. package/docs/en/12_GUIDED_WORKFLOW_TOUR.md +427 -0
  17. package/docs/en/13_CORE_ARCHITECTURE_GUIDE.md +297 -0
  18. package/docs/en/14_PROMPT_SKILLS_AND_MCP_GUIDE.md +506 -0
  19. package/docs/en/99_ACKNOWLEDGEMENTS.md +4 -1
  20. package/docs/en/README.md +79 -0
  21. package/docs/images/lingzhu/rokid-agent-platform-create.png +0 -0
  22. package/docs/images/weixin/weixin-plugin-entry.png +0 -0
  23. package/docs/images/weixin/weixin-plugin-entry.svg +33 -0
  24. package/docs/images/weixin/weixin-qr-confirm.svg +30 -0
  25. package/docs/images/weixin/weixin-quest-media-flow.svg +44 -0
  26. package/docs/images/weixin/weixin-settings-bind.svg +57 -0
  27. package/docs/zh/00_QUICK_START.md +315 -74
  28. package/docs/zh/01_SETTINGS_REFERENCE.md +3 -0
  29. package/docs/zh/02_START_RESEARCH_GUIDE.md +112 -0
  30. package/docs/zh/04_LINGZHU_CONNECTOR_GUIDE.md +62 -193
  31. package/docs/zh/09_DOCTOR.md +41 -5
  32. package/docs/zh/10_WEIXIN_CONNECTOR_GUIDE.md +144 -0
  33. package/docs/zh/11_LICENSE_AND_RISK.md +256 -0
  34. package/docs/zh/12_GUIDED_WORKFLOW_TOUR.md +423 -0
  35. package/docs/zh/13_CORE_ARCHITECTURE_GUIDE.md +296 -0
  36. package/docs/zh/14_PROMPT_SKILLS_AND_MCP_GUIDE.md +506 -0
  37. package/docs/zh/99_ACKNOWLEDGEMENTS.md +4 -1
  38. package/docs/zh/README.md +126 -0
  39. package/install.sh +0 -34
  40. package/package.json +3 -3
  41. package/pyproject.toml +2 -2
  42. package/src/deepscientist/__init__.py +1 -1
  43. package/src/deepscientist/annotations.py +343 -0
  44. package/src/deepscientist/artifact/arxiv.py +484 -37
  45. package/src/deepscientist/artifact/metrics.py +1 -3
  46. package/src/deepscientist/artifact/service.py +1347 -111
  47. package/src/deepscientist/arxiv_library.py +275 -0
  48. package/src/deepscientist/bash_exec/service.py +9 -0
  49. package/src/deepscientist/bridges/builtins.py +2 -0
  50. package/src/deepscientist/bridges/connectors.py +447 -0
  51. package/src/deepscientist/channels/__init__.py +2 -0
  52. package/src/deepscientist/channels/builtins.py +3 -1
  53. package/src/deepscientist/channels/qq.py +1 -1
  54. package/src/deepscientist/channels/qq_gateway.py +1 -1
  55. package/src/deepscientist/channels/relay.py +7 -1
  56. package/src/deepscientist/channels/weixin.py +59 -0
  57. package/src/deepscientist/channels/weixin_ilink.py +317 -0
  58. package/src/deepscientist/config/models.py +22 -2
  59. package/src/deepscientist/config/service.py +431 -60
  60. package/src/deepscientist/connector/__init__.py +4 -0
  61. package/src/deepscientist/connector/connector_profiles.py +481 -0
  62. package/src/deepscientist/connector/lingzhu_support.py +668 -0
  63. package/src/deepscientist/connector/qq_profiles.py +206 -0
  64. package/src/deepscientist/connector/weixin_support.py +663 -0
  65. package/src/deepscientist/connector_profiles.py +1 -374
  66. package/src/deepscientist/connector_runtime.py +2 -0
  67. package/src/deepscientist/daemon/api/handlers.py +295 -5
  68. package/src/deepscientist/daemon/api/router.py +16 -1
  69. package/src/deepscientist/daemon/app.py +1130 -61
  70. package/src/deepscientist/doctor.py +5 -2
  71. package/src/deepscientist/gitops/diff.py +120 -29
  72. package/src/deepscientist/lingzhu_support.py +1 -182
  73. package/src/deepscientist/mcp/server.py +14 -5
  74. package/src/deepscientist/prompts/builder.py +29 -1
  75. package/src/deepscientist/qq_profiles.py +1 -196
  76. package/src/deepscientist/quest/node_traces.py +152 -2
  77. package/src/deepscientist/quest/service.py +169 -43
  78. package/src/deepscientist/quest/stage_views.py +172 -9
  79. package/src/deepscientist/registries/baseline.py +56 -4
  80. package/src/deepscientist/runners/codex.py +55 -3
  81. package/src/deepscientist/weixin_support.py +1 -0
  82. package/src/prompts/connectors/lingzhu.md +3 -1
  83. package/src/prompts/connectors/weixin.md +230 -0
  84. package/src/prompts/system.md +9 -0
  85. package/src/skills/idea/SKILL.md +16 -0
  86. package/src/skills/idea/references/literature-survey-template.md +24 -0
  87. package/src/skills/idea/references/related-work-playbook.md +4 -0
  88. package/src/skills/idea/references/selection-gate.md +9 -0
  89. package/src/skills/write/SKILL.md +1 -1
  90. package/src/tui/package.json +1 -1
  91. package/src/ui/dist/assets/{AiManusChatView-m2FNtwbn.js → AiManusChatView-D0mTXG4-.js} +156 -48
  92. package/src/ui/dist/assets/{AnalysisPlugin-BMTF8EGL.js → AnalysisPlugin-Db0cTXxm.js} +1 -1
  93. package/src/ui/dist/assets/{CliPlugin-BEOWgxCI.js → CliPlugin-DrV8je02.js} +164 -9
  94. package/src/ui/dist/assets/{CodeEditorPlugin-BCXvjqmb.js → CodeEditorPlugin-QXMSCH71.js} +8 -8
  95. package/src/ui/dist/assets/{CodeViewerPlugin-DaJcy3nD.js → CodeViewerPlugin-7hhtWj_E.js} +5 -5
  96. package/src/ui/dist/assets/{DocViewerPlugin-ByfeIq4K.js → DocViewerPlugin-BWMSnRJe.js} +3 -3
  97. package/src/ui/dist/assets/{GitDiffViewerPlugin-Cksf3VZ-.js → GitDiffViewerPlugin-7J9h9Vy_.js} +20 -21
  98. package/src/ui/dist/assets/{ImageViewerPlugin-CFz-OsTS.js → ImageViewerPlugin-CHJl_0lr.js} +5 -5
  99. package/src/ui/dist/assets/{LabCopilotPanel-CJ1cJzoX.js → LabCopilotPanel-1qSow1es.js} +11 -11
  100. package/src/ui/dist/assets/{LabPlugin-BF3dVJwa.js → LabPlugin-eQpPPCEp.js} +2 -1
  101. package/src/ui/dist/assets/{LatexPlugin-DDkwZ6Sj.js → LatexPlugin-BwRfi89Z.js} +7 -7
  102. package/src/ui/dist/assets/{MarkdownViewerPlugin-HAuvurcT.js → MarkdownViewerPlugin-836PVQWV.js} +4 -4
  103. package/src/ui/dist/assets/{MarketplacePlugin-BtoTYy2C.js → MarketplacePlugin-C2y_556i.js} +3 -3
  104. package/src/ui/dist/assets/{NotebookEditor-CSJYx7b-.js → NotebookEditor-BRzJbGsn.js} +12 -12
  105. package/src/ui/dist/assets/{NotebookEditor-DQgRezm_.js → NotebookEditor-DIX7Mlzu.js} +1 -1
  106. package/src/ui/dist/assets/{PdfLoader-DPa_-fv6.js → PdfLoader-DzRaTAlq.js} +14 -7
  107. package/src/ui/dist/assets/{PdfMarkdownPlugin-BZpXOEjm.js → PdfMarkdownPlugin-DZUfIUnp.js} +73 -6
  108. package/src/ui/dist/assets/{PdfViewerPlugin-BT8a6wGR.js → PdfViewerPlugin-BwtICzue.js} +103 -34
  109. package/src/ui/dist/assets/PdfViewerPlugin-DQ11QcSf.css +3627 -0
  110. package/src/ui/dist/assets/{SearchPlugin-D_blveZi.js → SearchPlugin-DHeIAMsx.js} +1 -1
  111. package/src/ui/dist/assets/{TextViewerPlugin-Btx0M3hX.js → TextViewerPlugin-C3tCmFox.js} +5 -4
  112. package/src/ui/dist/assets/{VNCViewer-DImJO4rO.js → VNCViewer-CQsKVm3t.js} +10 -10
  113. package/src/ui/dist/assets/bot-BEA2vWuK.js +21 -0
  114. package/src/ui/dist/assets/branding/logo-rokid.png +0 -0
  115. package/src/ui/dist/assets/browser-BAcuE0Xj.js +2895 -0
  116. package/src/ui/dist/assets/{code-BUfXGJSl.js → code-XfbSR8K2.js} +1 -1
  117. package/src/ui/dist/assets/{file-content-VqamwI3X.js → file-content-BjxNaIfy.js} +1 -1
  118. package/src/ui/dist/assets/{file-diff-panel-C_wOoS7a.js → file-diff-panel-D_lLVQk0.js} +1 -1
  119. package/src/ui/dist/assets/{file-socket-D2bTuMVP.js → file-socket-D9x_5vlY.js} +1 -1
  120. package/src/ui/dist/assets/{image-BZkGJ4mM.js → image-BhWT33W1.js} +1 -1
  121. package/src/ui/dist/assets/{index-DdRW6RMJ.js → index--c4iXtuy.js} +12 -12
  122. package/src/ui/dist/assets/{index-CxkvSeKw.js → index-BDxipwrC.js} +2 -2
  123. package/src/ui/dist/assets/{index-DjggJovS.js → index-DZTZ8mWP.js} +14934 -9613
  124. package/src/ui/dist/assets/{index-DXZ1daiJ.css → index-Dqj-Mjb4.css} +2 -13
  125. package/src/ui/dist/assets/index-PJbSbPTy.js +25 -0
  126. package/src/ui/dist/assets/{monaco-DHMc7kKM.js → monaco-K8izTGgo.js} +1 -1
  127. package/src/ui/dist/assets/{pdf-effect-queue-DSw_D3RV.js → pdf-effect-queue-DfBors6y.js} +16 -1
  128. package/src/ui/dist/assets/pdf.worker.min-yatZIOMy.mjs +21 -0
  129. package/src/ui/dist/assets/{popover-B85oCgCS.js → popover-yFK1J4fL.js} +1 -1
  130. package/src/ui/dist/assets/{project-sync-DOMCcPac.js → project-sync-PENr2zcz.js} +1 -74
  131. package/src/ui/dist/assets/select-CAbJDfYv.js +1690 -0
  132. package/src/ui/dist/assets/{sigma-BO2rQrl3.js → sigma-DEuYJqTl.js} +1 -1
  133. package/src/ui/dist/assets/{index-D9QIGcmc.js → square-check-big-omoSUmcd.js} +2 -13
  134. package/src/ui/dist/assets/{trash-BsVEH_dV.js → trash--F119N47.js} +1 -1
  135. package/src/ui/dist/assets/{useCliAccess-b8L6JuZm.js → useCliAccess-D31UR23I.js} +1 -1
  136. package/src/ui/dist/assets/{useFileDiffOverlay-BY7uA9hV.js → useFileDiffOverlay-BH6KcMzq.js} +1 -1
  137. package/src/ui/dist/assets/{wrap-text-BwyVuUIK.js → wrap-text-CZ613PM5.js} +1 -1
  138. package/src/ui/dist/assets/{zoom-out-RDpLugQP.js → zoom-out-BgDLAv3z.js} +1 -1
  139. package/src/ui/dist/index.html +2 -2
  140. package/src/ui/dist/assets/AutoFigurePlugin-BGxN8Umr.css +0 -3056
  141. package/src/ui/dist/assets/AutoFigurePlugin-DxPdMUNb.js +0 -8149
  142. package/src/ui/dist/assets/PdfViewerPlugin-BJXtIwj_.css +0 -260
  143. package/src/ui/dist/assets/Stepper-DH2k75Vo.js +0 -158
  144. package/src/ui/dist/assets/bibtex-B-Hqu0Sg.js +0 -189
  145. package/src/ui/dist/assets/file-utils--zJCPN1i.js +0 -109
  146. package/src/ui/dist/assets/message-square-FUIPIhU2.js +0 -16
  147. package/src/ui/dist/assets/pdfjs-DU1YE8WO.js +0 -3
  148. package/src/ui/dist/assets/tooltip-B1OspAkx.js +0 -108
@@ -0,0 +1,256 @@
1
+ # 11 License And Risk Notice
2
+
3
+ This document does two things:
4
+
5
+ 1. clarifies the DeepScientist open-source license and responsibility boundary
6
+ 2. lists the main risks that you, not the project maintainers, must control
7
+
8
+ This is not legal advice. If you plan to use DeepScientist in a company environment, production environment, external-facing service, or regulated workflow, have your own legal, security, and operations teams review it again.
9
+
10
+ ## 1. License And Responsibility Boundary
11
+
12
+ DeepScientist is released under the Apache License 2.0.
13
+
14
+ The full license text is in the repository root:
15
+
16
+ - [LICENSE](../../LICENSE)
17
+
18
+ The practical meaning is:
19
+
20
+ - DeepScientist is distributed under Apache 2.0
21
+ - DeepScientist is provided on an "AS IS" basis, without warranties
22
+ - the project authors and maintainers are not responsible for any direct or indirect consequence caused by using, deploying, modifying, redistributing, or exposing DeepScientist
23
+ - you are responsible for runtime environment control, permission boundaries, public exposure, third-party account binding, output review, data handling, and compliance
24
+
25
+ In other words, DeepScientist is a high-capability automation system. It is not a managed service and it is not a security-audited guarantee layer. You must control the operating boundary yourself.
26
+
27
+ ## 2. Main Risk Areas
28
+
29
+ These risks are real, and they compound each other.
30
+
31
+ ### 2.1 Host And Server Damage
32
+
33
+ DeepScientist can drive models to execute commands, modify files, install dependencies, run scripts, and read or write project directories.
34
+
35
+ That means it can:
36
+
37
+ - delete, overwrite, or corrupt files
38
+ - modify Git state, branches, or worktree contents
39
+ - install the wrong dependency set or contaminate the runtime environment
40
+ - remove logs, caches, experiment results, or intermediate outputs
41
+ - consume GPU, CPU, disk, or network resources incorrectly
42
+ - interfere with other services on the same machine, or even make a server unstable
43
+
44
+ If you run it directly on a high-privilege host, production machine, shared development server, or a system holding important data, the risk increases substantially.
45
+
46
+ ### 2.2 Fabricated Results, Wrong Conclusions, And Research Risk
47
+
48
+ DeepScientist is model-driven. It does not guarantee truth.
49
+
50
+ It may:
51
+
52
+ - fabricate metrics, logs, tables, or experiment results
53
+ - invent citations, prior work summaries, or baseline comparisons
54
+ - drift away from the intended task or evaluation protocol
55
+ - produce analyses that sound plausible but are not reproducible
56
+ - write conclusions that are too strong for the available evidence
57
+
58
+ Any experiment result, paper text, chart, citation, conclusion, or reviewer response must be reviewed by a human before you treat it as trustworthy.
59
+
60
+ ### 2.3 Data Loss, Corruption, And Irreversible Changes
61
+
62
+ Even without obvious malicious behavior, automation can still produce irreversible damage.
63
+
64
+ Examples:
65
+
66
+ - quest files get overwritten
67
+ - uncommitted local edits get polluted
68
+ - auto-generated files mix into final result directories
69
+ - a bad script corrupts datasets or experiment folders at scale
70
+ - an external connector receives outputs that should not have been sent
71
+
72
+ If your data, projects, or paper drafts are not backed up, this kind of damage may be difficult to recover from.
73
+
74
+ ### 2.4 Secret, Credential, And Privacy Leakage
75
+
76
+ DeepScientist may touch sensitive material such as:
77
+
78
+ - API keys
79
+ - environment variables
80
+ - private repository locations
81
+ - research data
82
+ - connector tokens
83
+ - WeChat, QQ, Lingzhu, or other external account bindings
84
+
85
+ If you:
86
+
87
+ - expose the site publicly
88
+ - share the DeepScientist page casually
89
+ - allow untrusted users into the runtime environment
90
+ - send config files, logs, screenshots, or quest files that contain sensitive material
91
+
92
+ you may leak:
93
+
94
+ - model credentials
95
+ - connector identities
96
+ - WeChat or QQ messaging authority
97
+ - project data, experiment material, or private content
98
+
99
+ Once connectors are bound, the risk is no longer only "can someone open the page?" but also "can someone misuse the linked external account?"
100
+
101
+ ### 2.5 Public Exposure And Unauthorized Access
102
+
103
+ If you bind DeepScientist to `0.0.0.0`, a public IP, a reverse proxy, a tunnel, or a public domain, you are exposing an automation-capable system to the outside.
104
+
105
+ That can lead to:
106
+
107
+ - unauthorized access
108
+ - session probing or replay
109
+ - misuse of connector callback or polling contexts
110
+ - external visibility into project pages, settings pages, or logs
111
+ - accidental disclosure of internal paths, ports, or service topology
112
+
113
+ If WeChat, QQ, or other connectors are also bound, the impact is larger.
114
+
115
+ Unless you fully understand the consequences, do not casually share the site address and do not expose the operational UI to uncontrolled users.
116
+
117
+ ### 2.6 Third-Party Platform And Account Compliance
118
+
119
+ DeepScientist can integrate with QQ, WeChat, Lingzhu, and other external platforms.
120
+
121
+ You are responsible for:
122
+
123
+ - third-party platform terms-of-service risk
124
+ - account suspension, rate-limit, restriction, or audit risk
125
+ - abuse complaints caused by automated outbound messages
126
+ - privacy and compliance issues caused by relaying data or files through those platforms
127
+
128
+ The project maintainers do not guarantee that your usage will satisfy local law, internal policy, or platform rules.
129
+
130
+ ### 2.7 Malicious Inputs, Prompt Injection, And Supply-Chain Risk
131
+
132
+ DeepScientist can read:
133
+
134
+ - repositories
135
+ - papers
136
+ - web pages
137
+ - issues, PRs, or READMEs
138
+ - uploaded attachments
139
+ - connector messages and files
140
+
141
+ Any of those can contain:
142
+
143
+ - malicious commands
144
+ - prompt injection
145
+ - misleading instructions
146
+ - fake benchmarks
147
+ - dependency installation steps with backdoors
148
+
149
+ If the model follows those instructions, the resulting behavior can become much more dangerous.
150
+
151
+ ### 2.8 Resource, Cost, And Abuse Risk
152
+
153
+ DeepScientist may run for a long time, call models repeatedly, download dependencies, execute experiments, and produce large numbers of files.
154
+
155
+ You are responsible for:
156
+
157
+ - API cost growth
158
+ - GPU or CPU occupation
159
+ - disk growth caused by logs, caches, artifacts, or datasets
160
+ - long-running load, overheating, or service contention
161
+
162
+ ## 3. Minimum Safety Practices Strongly Recommended
163
+
164
+ If you plan to use DeepScientist seriously, at least do the following.
165
+
166
+ ### 3.1 Prefer Docker Or Another Isolated Environment
167
+
168
+ Strongly prefer running DeepScientist inside Docker, a virtual machine, or an equivalent isolation boundary instead of running it directly on a privileged host.
169
+
170
+ The goal is simple:
171
+
172
+ - reduce filesystem blast radius
173
+ - reduce process privilege
174
+ - reduce network exposure
175
+ - reduce recovery cost when something goes wrong
176
+
177
+ ### 3.2 Always Use A Non-Root Account
178
+
179
+ Strong recommendation:
180
+
181
+ - run DeepScientist under a dedicated non-root user
182
+ - do not start it as `root`
183
+ - do not give it default write access to the whole machine
184
+ - do not let it touch sensitive host directories by default
185
+
186
+ If you must run it on a server, least privilege matters even more.
187
+
188
+ ### 3.3 Do Not Run It Directly On Production Or Critical Machines
189
+
190
+ Avoid running DeepScientist directly on:
191
+
192
+ - production database hosts
193
+ - live business servers
194
+ - control machines that store core source code and secrets
195
+ - shared bastion hosts
196
+ - desktops that hold important personal or commercial data
197
+
198
+ ### 3.4 Do Not Casually Share The Site Address Or Public Entry
199
+
200
+ Unless you already have proper access control in place, do not:
201
+
202
+ - post the DeepScientist URL in public groups
203
+ - map a `0.0.0.0`-bound port directly to the public internet
204
+ - publish an unauthenticated reverse-proxy address
205
+ - give other people direct operational access to a runtime that already has connectors bound
206
+
207
+ This is not only a page-viewing risk. It is also a credential and connector-authority leakage risk.
208
+
209
+ ### 3.5 Minimize Credential And Connector Privilege
210
+
211
+ Recommended:
212
+
213
+ - use separate test accounts for QQ, WeChat, or Lingzhu bindings
214
+ - avoid exposing your highest-value primary accounts to experimental runtimes
215
+ - do not keep every token in a single shared home directory
216
+ - rotate keys and connector tokens regularly
217
+ - keep outbound authority as narrow as possible
218
+
219
+ ### 3.6 Review Every Important Result Manually
220
+
221
+ Do not directly trust:
222
+
223
+ - experiment metrics
224
+ - charts
225
+ - paper sections
226
+ - related work summaries
227
+ - citation lists
228
+ - ablation claims
229
+ - statuses like "reproduced successfully"
230
+
231
+ The correct approach is to:
232
+
233
+ - inspect raw files
234
+ - inspect runtime logs
235
+ - inspect scripts and configs
236
+ - rerun key experiments
237
+ - spot-check citations and numbers
238
+
239
+ ### 3.7 Prepare Backup And Rollback
240
+
241
+ At minimum:
242
+
243
+ - put important quests under Git
244
+ - back up `~/DeepScientist`
245
+ - snapshot important data directories
246
+ - separate production data from experimental data
247
+
248
+ ## 4. Short Version
249
+
250
+ The shortest safe summary is:
251
+
252
+ 1. DeepScientist is released under Apache 2.0.
253
+ 2. The project authors and maintainers are not responsible for any consequence caused by your use of DeepScientist.
254
+ 3. It may damage a server, delete files, leak credentials, send wrong external messages, or fabricate results.
255
+ 4. Strongly prefer Docker or an equivalent isolated environment, and always run under a non-root account.
256
+ 5. Do not casually share the site address, and do not expose a runtime with bound WeChat, QQ, or other connectors to uncontrolled users.
@@ -0,0 +1,427 @@
1
+ # 12 Guided Workflow Tour: From Landing Page to Real Workspace
2
+
3
+ This guide is the shortest path to understanding how DeepScientist is actually used after installation.
4
+
5
+ Use it when:
6
+
7
+ - you already launched DeepScientist once
8
+ - you can open the home page
9
+ - you want a concrete walkthrough of what to click, what to fill, and what each surface is for
10
+
11
+ If you still have not launched DeepScientist yet, start with [00 Quick Start](./00_QUICK_START.md).
12
+
13
+ If you want the exact payload and field contract behind `Start Research`, then read [02 Start Research Guide](./02_START_RESEARCH_GUIDE.md) after this page.
14
+
15
+ ## 1. First, choose the right mode
16
+
17
+ There are two normal ways to use the product:
18
+
19
+ 1. real project mode
20
+ 2. guided tutorial mode
21
+
22
+ Real project mode creates a real local quest repository and starts real work.
23
+
24
+ Guided tutorial mode uses the same project-page layout, but the project contents are staged for learning. It is useful when you want to practice the interface before spending real time, compute, or connector resources.
25
+
26
+ If your goal is real work, use real project mode.
27
+
28
+ If your goal is to understand the interface safely, replay the tutorial first.
29
+
30
+ ## 2. Start from the home page
31
+
32
+ The home page is not a chat box. It is the launch surface for a research workspace.
33
+
34
+ The two primary entry points are:
35
+
36
+ - `Start Research`
37
+ - `Open Project`
38
+
39
+ Use `Start Research` when you want to begin a new quest.
40
+
41
+ Use `Open Project` when the quest already exists and you want to continue it.
42
+
43
+ For a first run, click `Start Research`.
44
+
45
+ ## 3. Understand what the dialog is doing
46
+
47
+ The `Start Research` dialog has two jobs:
48
+
49
+ - the left side defines the project contract
50
+ - the right side shows the kickoff prompt that will seed the workspace
51
+
52
+ This means you should not treat the dialog as a casual form.
53
+
54
+ You are deciding:
55
+
56
+ - what problem the quest should solve
57
+ - what evidence or references already exist
58
+ - how autonomous the first round should be
59
+ - whether any external connector should receive progress updates
60
+
61
+ If the right-side generated prompt looks wrong, stop and fix the left side before you create the project.
62
+
63
+ ## 4. Fill the dialog step by step
64
+
65
+ ### 4.1 Project title
66
+
67
+ Use a short human-facing title.
68
+
69
+ Good pattern:
70
+
71
+ - task name
72
+ - benchmark or repository name
73
+ - the main research direction
74
+
75
+ Example:
76
+
77
+ `Mandela-Effect Reproduction and Truth-Preserving Collaboration`
78
+
79
+ Use the title so future-you can recognize the quest quickly in the project list.
80
+
81
+ ### 4.2 Project ID
82
+
83
+ Usually leave this blank.
84
+
85
+ Only fill it manually when you need a specific stable identifier such as:
86
+
87
+ - a tutorial run
88
+ - a reproduced paper case
89
+ - a team convention
90
+
91
+ If you do not need that, let the runtime assign the next sequential quest id.
92
+
93
+ ### 4.3 Primary research request
94
+
95
+ This is the most important field in the dialog.
96
+
97
+ Write:
98
+
99
+ - the scientific goal
100
+ - the success condition
101
+ - the evidence requirement
102
+ - the most important boundary or evaluation rule
103
+
104
+ Bad input:
105
+
106
+ - vague brainstorming
107
+ - implementation-only instructions
108
+ - a prompt that never says what must be verified
109
+
110
+ Good pattern:
111
+
112
+ 1. what to reproduce or investigate
113
+ 2. what question should be answered
114
+ 3. what must stay aligned with prior work
115
+ 4. what kind of improvement is allowed
116
+
117
+ ### 4.4 Baseline links and reference papers
118
+
119
+ Use these fields to reduce ambiguity before the first round starts.
120
+
121
+ Put repositories in `Baseline links` when:
122
+
123
+ - the quest should restore a known repo
124
+ - the baseline must come from a specific official implementation
125
+
126
+ Put papers or important external references in `Reference papers / repos` when:
127
+
128
+ - the task is defined by a paper
129
+ - the expected protocol comes from prior work
130
+ - the system should read a known source first
131
+
132
+ If you already know the baseline and paper, do not hide them in the main request. Put them in the dedicated fields.
133
+
134
+ ### 4.5 Reusable baseline
135
+
136
+ Use this only when you already imported a trusted reusable baseline into the registry.
137
+
138
+ If this field is selected:
139
+
140
+ - the first round starts from an attached baseline instead of restoring from raw URLs
141
+ - the contract becomes more grounded immediately
142
+
143
+ If you are doing the task for the first time, leaving it empty is normal.
144
+
145
+ ### 4.6 Connector delivery
146
+
147
+ Connector delivery is optional.
148
+
149
+ Keep it `Local only` when:
150
+
151
+ - this is your first run
152
+ - you want the simplest setup
153
+ - you do not need progress outside the web workspace
154
+
155
+ Choose one connector target only when:
156
+
157
+ - you want milestone delivery outside the browser
158
+ - you already configured that connector correctly
159
+
160
+ DeepScientist currently keeps one bound external connector target per quest.
161
+
162
+ ### 4.7 Research paper, intensity, decision mode, and launch mode
163
+
164
+ These fields change the shape of the first round.
165
+
166
+ Use these defaults if you are unsure:
167
+
168
+ - `Research paper`: `On`
169
+ - `Research intensity`: `Balanced`
170
+ - `Decision mode`: `Autonomous`
171
+ - `Launch mode`: `Standard`
172
+
173
+ Why these defaults are usually correct:
174
+
175
+ - `Balanced` is strong enough to do real work without overcommitting the first round
176
+ - `Autonomous` avoids unnecessary blocking
177
+ - `Standard` keeps the workflow on the ordinary path
178
+ - `Research paper = On` keeps analysis and writing in scope
179
+
180
+ ### 4.8 Runtime constraints
181
+
182
+ Use this field for hard rules, not wishes.
183
+
184
+ Good things to put here:
185
+
186
+ - which model or inference endpoint must be used
187
+ - whether retries are required
188
+ - whether evaluation must stay aligned with a baseline
189
+ - whether the system must record failure honestly
190
+ - hardware or runtime boundaries
191
+
192
+ Bad things to put here:
193
+
194
+ - generic goals already written in the main request
195
+ - long literature summaries
196
+ - content that belongs in references instead
197
+
198
+ ### 4.9 Goals
199
+
200
+ Use this field for concrete milestones.
201
+
202
+ Good goals are:
203
+
204
+ - specific
205
+ - verifiable
206
+ - useful for later review
207
+
208
+ Example shape:
209
+
210
+ 1. restore the official baseline
211
+ 2. verify key metrics
212
+ 3. propose one justified direction
213
+ 4. produce evidence strong enough for writing or further analysis
214
+
215
+ ### 4.10 Review the generated prompt
216
+
217
+ Before clicking `Create project`, read the generated kickoff prompt on the right.
218
+
219
+ Check for:
220
+
221
+ - wrong scope
222
+ - missing baseline information
223
+ - missing runtime constraints
224
+ - incorrect connector choice
225
+ - a tone that no longer matches the real task
226
+
227
+ This is the cheapest correction point in the whole workflow.
228
+
229
+ ## 5. Click Create project
230
+
231
+ In real project mode, this creates a real local quest and opens its workspace.
232
+
233
+ In guided tutorial mode, it opens a staged demo quest that uses the same project-page layout for training.
234
+
235
+ After you click create, the most important mindset shift is:
236
+
237
+ - the task is no longer a text idea
238
+ - it is now a durable workspace with files, graph state, memory, and execution history
239
+
240
+ ## 6. Learn the workspace in the right order
241
+
242
+ A good first order is:
243
+
244
+ 1. top bar
245
+ 2. explorer
246
+ 3. one real file
247
+ 4. canvas
248
+ 5. details
249
+ 6. memory
250
+ 7. copilot / studio
251
+
252
+ ### 6.1 Top bar
253
+
254
+ The top bar is the global control strip.
255
+
256
+ Use it to understand:
257
+
258
+ - which quest you are in
259
+ - whether you are on the expected branch
260
+ - how to jump back, replay tutorial flow, or navigate globally
261
+
262
+ ### 6.2 Explorer
263
+
264
+ Explorer is the file-first view of the quest.
265
+
266
+ Use it when you want to answer:
267
+
268
+ - what durable files exist now
269
+ - whether the quest has produced anything reusable
270
+ - where notes, plans, reports, or artifacts actually live
271
+
272
+ Do not treat the graph as the only truth. The file tree is one of the most important evidence surfaces.
273
+
274
+ ### 6.3 ArXiv and Files tabs
275
+
276
+ These two tabs serve different jobs:
277
+
278
+ - `ArXiv` is the literature shelf
279
+ - `Files` is the working tree
280
+
281
+ In normal work you should switch between them repeatedly.
282
+
283
+ Read a paper in one view.
284
+
285
+ Open plans, experiment files, and notes in the other.
286
+
287
+ ### 6.4 Open a real file
288
+
289
+ Once you see a useful file in Explorer, click it.
290
+
291
+ This moves you from structure into actual project content.
292
+
293
+ Common examples:
294
+
295
+ - Markdown notes
296
+ - plans
297
+ - experiment summaries
298
+ - result reports
299
+ - paper drafts
300
+
301
+ In practice, many users treat Markdown files in the quest as a private local-first notebook for:
302
+
303
+ - notes
304
+ - plans
305
+ - handoffs
306
+ - findings
307
+ - team coordination
308
+
309
+ ### 6.5 Canvas
310
+
311
+ Canvas makes the research map visible.
312
+
313
+ A healthy quest should not feel like one long chat log.
314
+
315
+ Canvas should help you see:
316
+
317
+ - baseline work
318
+ - candidate ideas
319
+ - failed branches
320
+ - successful paths
321
+ - later analysis and writing
322
+
323
+ The graph matters because it shows how the quest grew, not just where it ended.
324
+
325
+ ### 6.6 Click a node in Canvas
326
+
327
+ Do not stop at looking.
328
+
329
+ Click a node to inspect what it actually means.
330
+
331
+ A useful node should lead you toward:
332
+
333
+ - branch summary
334
+ - linked files
335
+ - stage state
336
+ - durable evidence
337
+
338
+ This is how Canvas becomes inspectable instead of decorative.
339
+
340
+ ### 6.7 Details
341
+
342
+ Use `Details` when you want the fastest high-confidence answer to:
343
+
344
+ `What is the current state of this quest right now?`
345
+
346
+ This is usually the first page to open when:
347
+
348
+ - you come back after a break
349
+ - the quest has been running for a while
350
+ - you want summary before intervention
351
+
352
+ ### 6.8 Memory
353
+
354
+ Memory is how the quest keeps growing instead of restarting from zero.
355
+
356
+ Use it to understand:
357
+
358
+ - what reusable lessons were learned
359
+ - which weak paths should not be repeated
360
+ - what stable facts were extracted from prior work
361
+
362
+ Without memory, every round risks becoming disposable.
363
+
364
+ ### 6.9 Copilot / Studio
365
+
366
+ Keep this surface open when you want to stay close to execution.
367
+
368
+ Use it to:
369
+
370
+ - watch the run
371
+ - intervene
372
+ - ask for a summary
373
+ - redirect the route
374
+ - continue the thread later
375
+
376
+ This is where the quest feels collaborative instead of static.
377
+
378
+ ## 7. A practical first operating rhythm
379
+
380
+ Once the quest is running, the most useful rhythm is usually:
381
+
382
+ 1. let the first round move
383
+ 2. open the workspace instead of waiting in chat
384
+ 3. inspect one or two key files
385
+ 4. check Canvas for branching structure
386
+ 5. read Details for current state
387
+ 6. only then decide whether to intervene
388
+
389
+ This avoids two common mistakes:
390
+
391
+ - interrupting too early
392
+ - trusting a summary before checking durable evidence
393
+
394
+ ## 8. Common mistakes
395
+
396
+ ### 8.1 Treating Start Research like casual chat
397
+
398
+ It is not a casual chat box.
399
+
400
+ It is a project contract.
401
+
402
+ ### 8.2 Leaving the goal vague
403
+
404
+ If the goal does not define verification, the first round will be weaker.
405
+
406
+ ### 8.3 Hiding important references inside the main paragraph
407
+
408
+ Use the dedicated baseline and reference fields instead.
409
+
410
+ ### 8.4 Ignoring the generated kickoff prompt
411
+
412
+ This is the cheapest place to catch a misunderstanding.
413
+
414
+ ### 8.5 Treating Canvas as a pretty picture
415
+
416
+ Click nodes and inspect files. Otherwise you are only seeing shape, not evidence.
417
+
418
+ ### 8.6 Waiting in the workspace without reading files
419
+
420
+ The file tree is one of the main truth surfaces of the system.
421
+
422
+ ## 9. What to read next
423
+
424
+ - [02 Start Research Guide](./02_START_RESEARCH_GUIDE.md)
425
+ - [06 Runtime and Canvas](./06_RUNTIME_AND_CANVAS.md)
426
+ - [07 Memory and MCP](./07_MEMORY_AND_MCP.md)
427
+ - [13 Core Architecture Guide](./13_CORE_ARCHITECTURE_GUIDE.md)