@researai/deepscientist 1.5.9 → 1.5.12

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 (165) hide show
  1. package/README.md +112 -99
  2. package/assets/branding/connector-qq.png +0 -0
  3. package/assets/branding/connector-rokid.png +0 -0
  4. package/assets/branding/connector-weixin.png +0 -0
  5. package/assets/branding/projects.png +0 -0
  6. package/bin/ds.js +519 -63
  7. package/docs/assets/branding/projects.png +0 -0
  8. package/docs/en/00_QUICK_START.md +338 -68
  9. package/docs/en/01_SETTINGS_REFERENCE.md +14 -0
  10. package/docs/en/02_START_RESEARCH_GUIDE.md +180 -4
  11. package/docs/en/04_LINGZHU_CONNECTOR_GUIDE.md +62 -179
  12. package/docs/en/09_DOCTOR.md +66 -5
  13. package/docs/en/10_WEIXIN_CONNECTOR_GUIDE.md +137 -0
  14. package/docs/en/11_LICENSE_AND_RISK.md +256 -0
  15. package/docs/en/12_GUIDED_WORKFLOW_TOUR.md +446 -0
  16. package/docs/en/13_CORE_ARCHITECTURE_GUIDE.md +297 -0
  17. package/docs/en/14_PROMPT_SKILLS_AND_MCP_GUIDE.md +506 -0
  18. package/docs/en/15_CODEX_PROVIDER_SETUP.md +284 -0
  19. package/docs/en/99_ACKNOWLEDGEMENTS.md +4 -1
  20. package/docs/en/README.md +83 -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 +345 -72
  28. package/docs/zh/01_SETTINGS_REFERENCE.md +14 -0
  29. package/docs/zh/02_START_RESEARCH_GUIDE.md +181 -3
  30. package/docs/zh/04_LINGZHU_CONNECTOR_GUIDE.md +62 -193
  31. package/docs/zh/09_DOCTOR.md +68 -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 +442 -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/15_CODEX_PROVIDER_SETUP.md +285 -0
  38. package/docs/zh/99_ACKNOWLEDGEMENTS.md +4 -1
  39. package/docs/zh/README.md +129 -0
  40. package/install.sh +0 -34
  41. package/package.json +2 -2
  42. package/pyproject.toml +1 -1
  43. package/src/deepscientist/__init__.py +1 -1
  44. package/src/deepscientist/annotations.py +343 -0
  45. package/src/deepscientist/artifact/arxiv.py +484 -37
  46. package/src/deepscientist/artifact/service.py +574 -108
  47. package/src/deepscientist/arxiv_library.py +275 -0
  48. package/src/deepscientist/bash_exec/monitor.py +7 -5
  49. package/src/deepscientist/bash_exec/service.py +93 -21
  50. package/src/deepscientist/bridges/builtins.py +2 -0
  51. package/src/deepscientist/bridges/connectors.py +447 -0
  52. package/src/deepscientist/channels/__init__.py +2 -0
  53. package/src/deepscientist/channels/builtins.py +3 -1
  54. package/src/deepscientist/channels/local.py +3 -3
  55. package/src/deepscientist/channels/qq.py +8 -8
  56. package/src/deepscientist/channels/qq_gateway.py +1 -1
  57. package/src/deepscientist/channels/relay.py +14 -8
  58. package/src/deepscientist/channels/weixin.py +59 -0
  59. package/src/deepscientist/channels/weixin_ilink.py +388 -0
  60. package/src/deepscientist/config/models.py +23 -2
  61. package/src/deepscientist/config/service.py +539 -67
  62. package/src/deepscientist/connector/__init__.py +4 -0
  63. package/src/deepscientist/connector/connector_profiles.py +481 -0
  64. package/src/deepscientist/connector/lingzhu_support.py +668 -0
  65. package/src/deepscientist/connector/qq_profiles.py +206 -0
  66. package/src/deepscientist/connector/weixin_support.py +663 -0
  67. package/src/deepscientist/connector_profiles.py +1 -374
  68. package/src/deepscientist/connector_runtime.py +2 -0
  69. package/src/deepscientist/daemon/api/handlers.py +165 -5
  70. package/src/deepscientist/daemon/api/router.py +13 -1
  71. package/src/deepscientist/daemon/app.py +1444 -67
  72. package/src/deepscientist/doctor.py +4 -5
  73. package/src/deepscientist/gitops/diff.py +120 -29
  74. package/src/deepscientist/lingzhu_support.py +1 -182
  75. package/src/deepscientist/mcp/server.py +135 -7
  76. package/src/deepscientist/prompts/builder.py +128 -11
  77. package/src/deepscientist/qq_profiles.py +1 -196
  78. package/src/deepscientist/quest/node_traces.py +23 -0
  79. package/src/deepscientist/quest/service.py +359 -74
  80. package/src/deepscientist/quest/stage_views.py +71 -5
  81. package/src/deepscientist/runners/codex.py +170 -19
  82. package/src/deepscientist/runners/runtime_overrides.py +6 -0
  83. package/src/deepscientist/shared.py +33 -14
  84. package/src/deepscientist/weixin_support.py +1 -0
  85. package/src/prompts/connectors/lingzhu.md +3 -1
  86. package/src/prompts/connectors/qq.md +2 -1
  87. package/src/prompts/connectors/weixin.md +231 -0
  88. package/src/prompts/contracts/shared_interaction.md +4 -1
  89. package/src/prompts/system.md +61 -9
  90. package/src/skills/analysis-campaign/SKILL.md +46 -6
  91. package/src/skills/analysis-campaign/references/campaign-plan-template.md +21 -8
  92. package/src/skills/baseline/SKILL.md +1 -1
  93. package/src/skills/decision/SKILL.md +1 -1
  94. package/src/skills/experiment/SKILL.md +1 -1
  95. package/src/skills/finalize/SKILL.md +1 -1
  96. package/src/skills/idea/SKILL.md +1 -1
  97. package/src/skills/intake-audit/SKILL.md +1 -1
  98. package/src/skills/rebuttal/SKILL.md +74 -1
  99. package/src/skills/rebuttal/references/response-letter-template.md +55 -11
  100. package/src/skills/review/SKILL.md +118 -1
  101. package/src/skills/review/references/experiment-todo-template.md +23 -0
  102. package/src/skills/review/references/review-report-template.md +16 -0
  103. package/src/skills/review/references/revision-log-template.md +4 -0
  104. package/src/skills/scout/SKILL.md +1 -1
  105. package/src/skills/write/SKILL.md +168 -7
  106. package/src/skills/write/references/paper-experiment-matrix-template.md +131 -0
  107. package/src/tui/package.json +1 -1
  108. package/src/ui/dist/assets/{AiManusChatView-BKZ103sn.js → AiManusChatView-CnJcXynW.js} +156 -48
  109. package/src/ui/dist/assets/{AnalysisPlugin-mTTzGAlK.js → AnalysisPlugin-DeyzPEhV.js} +1 -1
  110. package/src/ui/dist/assets/{CliPlugin-BH58n3GY.js → CliPlugin-CB1YODQn.js} +164 -9
  111. package/src/ui/dist/assets/{CodeEditorPlugin-BKGRUH7e.js → CodeEditorPlugin-B-xicq1e.js} +8 -8
  112. package/src/ui/dist/assets/{CodeViewerPlugin-BMADwFWJ.js → CodeViewerPlugin-DT54ysXa.js} +5 -5
  113. package/src/ui/dist/assets/{DocViewerPlugin-ZOnTIHLN.js → DocViewerPlugin-DQtKT-VD.js} +3 -3
  114. package/src/ui/dist/assets/{GitDiffViewerPlugin-CQ7h1Djm.js → GitDiffViewerPlugin-hqHbCfnv.js} +20 -21
  115. package/src/ui/dist/assets/{ImageViewerPlugin-GVS5MsnC.js → ImageViewerPlugin-OcVo33jV.js} +5 -5
  116. package/src/ui/dist/assets/{LabCopilotPanel-BZNv1JML.js → LabCopilotPanel-DdGwhEUV.js} +11 -11
  117. package/src/ui/dist/assets/{LabPlugin-TWcJsdQA.js → LabPlugin-Ciz1gDaX.js} +2 -1
  118. package/src/ui/dist/assets/{LatexPlugin-DIjHiR2x.js → LatexPlugin-BhmjNQRC.js} +37 -11
  119. package/src/ui/dist/assets/{MarkdownViewerPlugin-D3ooGAH0.js → MarkdownViewerPlugin-BzdVH9Bx.js} +4 -4
  120. package/src/ui/dist/assets/{MarketplacePlugin-DfVfE9hN.js → MarketplacePlugin-DmyHspXt.js} +3 -3
  121. package/src/ui/dist/assets/{NotebookEditor-DDl0_Mc0.js → NotebookEditor-BMXKrDRk.js} +1 -1
  122. package/src/ui/dist/assets/{NotebookEditor-s8JhzuX1.js → NotebookEditor-BTVYRGkm.js} +12 -12
  123. package/src/ui/dist/assets/{PdfLoader-C2Sf6SJM.js → PdfLoader-CvcjJHXv.js} +14 -7
  124. package/src/ui/dist/assets/{PdfMarkdownPlugin-CXFLoIsa.js → PdfMarkdownPlugin-DW2ej8Vk.js} +73 -6
  125. package/src/ui/dist/assets/{PdfViewerPlugin-BYTmz2fK.js → PdfViewerPlugin-CmlDxbhU.js} +103 -34
  126. package/src/ui/dist/assets/PdfViewerPlugin-DQ11QcSf.css +3627 -0
  127. package/src/ui/dist/assets/{SearchPlugin-CjWBI1O9.js → SearchPlugin-DAjQZPSv.js} +1 -1
  128. package/src/ui/dist/assets/{TextViewerPlugin-DdOBU3-S.js → TextViewerPlugin-C-nVAZb_.js} +5 -4
  129. package/src/ui/dist/assets/{VNCViewer-B8HGgLwQ.js → VNCViewer-D7-dIYon.js} +10 -10
  130. package/src/ui/dist/assets/bot-C_G4WtNI.js +21 -0
  131. package/src/ui/dist/assets/branding/logo-rokid.png +0 -0
  132. package/src/ui/dist/assets/browser-BAcuE0Xj.js +2895 -0
  133. package/src/ui/dist/assets/{code-BWAY76JP.js → code-Cd7WfiWq.js} +1 -1
  134. package/src/ui/dist/assets/{file-content-C1NwU5oQ.js → file-content-B57zsL9y.js} +1 -1
  135. package/src/ui/dist/assets/{file-diff-panel-CywslwB9.js → file-diff-panel-DVoheLFq.js} +1 -1
  136. package/src/ui/dist/assets/{file-socket-B4kzuOBQ.js → file-socket-B5kXFxZP.js} +1 -1
  137. package/src/ui/dist/assets/{image-D-NZM-6P.js → image-LLOjkMHF.js} +1 -1
  138. package/src/ui/dist/assets/{index-DGIYDuTv.css → index-BQG-1s2o.css} +40 -13
  139. package/src/ui/dist/assets/{index-DHZJ_0TI.js → index-C3r2iGrp.js} +12 -12
  140. package/src/ui/dist/assets/{index-7Chr1g9c.js → index-CLQauncb.js} +15050 -9561
  141. package/src/ui/dist/assets/index-Dxa2eYMY.js +25 -0
  142. package/src/ui/dist/assets/{index-BdM1Gqfr.js → index-hOUOWbW2.js} +2 -2
  143. package/src/ui/dist/assets/{monaco-Cb2uKKe6.js → monaco-BGGAEii3.js} +1 -1
  144. package/src/ui/dist/assets/{pdf-effect-queue-DSw_D3RV.js → pdf-effect-queue-DlEr1_y5.js} +16 -1
  145. package/src/ui/dist/assets/pdf.worker.min-yatZIOMy.mjs +21 -0
  146. package/src/ui/dist/assets/{popover-Bg72DGgT.js → popover-CWJbJuYY.js} +1 -1
  147. package/src/ui/dist/assets/{project-sync-Ce_0BglY.js → project-sync-CRJiucYO.js} +18 -77
  148. package/src/ui/dist/assets/select-CoHB7pvH.js +1690 -0
  149. package/src/ui/dist/assets/{sigma-DPaACDrh.js → sigma-D5aJWR8J.js} +1 -1
  150. package/src/ui/dist/assets/{index-CDxNdQdz.js → square-check-big-DUK_mnkS.js} +2 -13
  151. package/src/ui/dist/assets/{trash-BvTgE5__.js → trash-ChU3SEE3.js} +1 -1
  152. package/src/ui/dist/assets/{useCliAccess-CgPeMOwP.js → useCliAccess-BrJBV3tY.js} +1 -1
  153. package/src/ui/dist/assets/{useFileDiffOverlay-xPhz7P5B.js → useFileDiffOverlay-C2OQaVWc.js} +1 -1
  154. package/src/ui/dist/assets/{wrap-text-C3Un3YQr.js → wrap-text-C7Qqh-om.js} +1 -1
  155. package/src/ui/dist/assets/{zoom-out-BgxLa0Ri.js → zoom-out-rtX0FKya.js} +1 -1
  156. package/src/ui/dist/index.html +2 -2
  157. package/src/ui/dist/assets/AutoFigurePlugin-BGxN8Umr.css +0 -3056
  158. package/src/ui/dist/assets/AutoFigurePlugin-C_wWw4AP.js +0 -8149
  159. package/src/ui/dist/assets/PdfViewerPlugin-BJXtIwj_.css +0 -260
  160. package/src/ui/dist/assets/Stepper-B0Dd8CxK.js +0 -158
  161. package/src/ui/dist/assets/bibtex-CKaefIN2.js +0 -189
  162. package/src/ui/dist/assets/file-utils-H2fjA46S.js +0 -109
  163. package/src/ui/dist/assets/message-square-BzjLiXir.js +0 -16
  164. package/src/ui/dist/assets/pdfjs-DU1YE8WO.js +0 -3
  165. package/src/ui/dist/assets/tooltip-C_mA6R0w.js +0 -108
@@ -0,0 +1,446 @@
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 or absolute local file/folder paths 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, manuscript paths, or important external references in `Paper / reference sources` 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
+ These reference fields are not web-only.
135
+ You can use network links, absolute local file paths, or absolute local folder paths.
136
+
137
+ ### 4.5 Reusable baseline
138
+
139
+ Use this only when you already imported a trusted reusable baseline into the registry.
140
+
141
+ If this field is selected:
142
+
143
+ - the first round starts from an attached baseline instead of restoring from raw URLs
144
+ - the contract becomes more grounded immediately
145
+
146
+ If you are doing the task for the first time, leaving it empty is normal.
147
+
148
+ ### 4.6 Connector delivery
149
+
150
+ Connector delivery is optional.
151
+
152
+ Keep it `Local only` when:
153
+
154
+ - this is your first run
155
+ - you want the simplest setup
156
+ - you do not need progress outside the web workspace
157
+
158
+ Choose one connector target only when:
159
+
160
+ - you want milestone delivery outside the browser
161
+ - you already configured that connector correctly
162
+
163
+ DeepScientist currently keeps one bound external connector target per quest.
164
+
165
+ ### 4.7 Research paper, intensity, decision mode, and launch mode
166
+
167
+ These fields change the shape of the first round.
168
+
169
+ Use these defaults if you are unsure:
170
+
171
+ - `Research paper`: `On`
172
+ - `Research intensity`: `Balanced`
173
+ - `Decision mode`: `Autonomous`
174
+ - `Launch mode`: `Standard`
175
+
176
+ Why these defaults are usually correct:
177
+
178
+ - `Balanced` is strong enough to do real work without overcommitting the first round
179
+ - `Autonomous` avoids unnecessary blocking
180
+ - `Standard` keeps the workflow on the ordinary path
181
+ - `Research paper = On` keeps analysis and writing in scope
182
+
183
+ If you switch `Launch mode` to `Custom`, choose the custom task type explicitly:
184
+
185
+ - `Continue existing state`
186
+ - for reuse-first work on an existing quest state
187
+ - `Review`
188
+ - for an independent skeptical audit of a substantial draft or paper package
189
+ - `Rebuttal / revision`
190
+ - for reviewer-driven work where comments must be mapped into experiments, manuscript deltas, and a response letter
191
+ - `Other / freeform`
192
+ - for everything else that does not fit the standard custom types
193
+
194
+ If you choose `Review`, also decide:
195
+
196
+ - whether the system should stop after the audit or continue automatically into follow-up experiments and manuscript updates
197
+ - whether manuscript-facing output should be ordinary copy-ready text or LaTeX-ready text
198
+
199
+ ### 4.8 Runtime constraints
200
+
201
+ Use this field for hard rules, not wishes.
202
+
203
+ Good things to put here:
204
+
205
+ - which model or inference endpoint must be used
206
+ - whether retries are required
207
+ - whether evaluation must stay aligned with a baseline
208
+ - whether the system must record failure honestly
209
+ - hardware or runtime boundaries
210
+
211
+ Bad things to put here:
212
+
213
+ - generic goals already written in the main request
214
+ - long literature summaries
215
+ - content that belongs in references instead
216
+
217
+ ### 4.9 Goals
218
+
219
+ Use this field for concrete milestones.
220
+
221
+ Good goals are:
222
+
223
+ - specific
224
+ - verifiable
225
+ - useful for later review
226
+
227
+ Example shape:
228
+
229
+ 1. restore the official baseline
230
+ 2. verify key metrics
231
+ 3. propose one justified direction
232
+ 4. produce evidence strong enough for writing or further analysis
233
+
234
+ ### 4.10 Review the generated prompt
235
+
236
+ Before clicking `Create project`, read the generated kickoff prompt on the right.
237
+
238
+ Check for:
239
+
240
+ - wrong scope
241
+ - missing baseline information
242
+ - missing runtime constraints
243
+ - incorrect connector choice
244
+ - a tone that no longer matches the real task
245
+
246
+ This is the cheapest correction point in the whole workflow.
247
+
248
+ ## 5. Click Create project
249
+
250
+ In real project mode, this creates a real local quest and opens its workspace.
251
+
252
+ In guided tutorial mode, it opens a staged demo quest that uses the same project-page layout for training.
253
+
254
+ After you click create, the most important mindset shift is:
255
+
256
+ - the task is no longer a text idea
257
+ - it is now a durable workspace with files, graph state, memory, and execution history
258
+
259
+ ## 6. Learn the workspace in the right order
260
+
261
+ A good first order is:
262
+
263
+ 1. top bar
264
+ 2. explorer
265
+ 3. one real file
266
+ 4. canvas
267
+ 5. details
268
+ 6. memory
269
+ 7. copilot / studio
270
+
271
+ ### 6.1 Top bar
272
+
273
+ The top bar is the global control strip.
274
+
275
+ Use it to understand:
276
+
277
+ - which quest you are in
278
+ - whether you are on the expected branch
279
+ - how to jump back, replay tutorial flow, or navigate globally
280
+
281
+ ### 6.2 Explorer
282
+
283
+ Explorer is the file-first view of the quest.
284
+
285
+ Use it when you want to answer:
286
+
287
+ - what durable files exist now
288
+ - whether the quest has produced anything reusable
289
+ - where notes, plans, reports, or artifacts actually live
290
+
291
+ Do not treat the graph as the only truth. The file tree is one of the most important evidence surfaces.
292
+
293
+ ### 6.3 ArXiv and Files tabs
294
+
295
+ These two tabs serve different jobs:
296
+
297
+ - `ArXiv` is the literature shelf
298
+ - `Files` is the working tree
299
+
300
+ In normal work you should switch between them repeatedly.
301
+
302
+ Read a paper in one view.
303
+
304
+ Open plans, experiment files, and notes in the other.
305
+
306
+ ### 6.4 Open a real file
307
+
308
+ Once you see a useful file in Explorer, click it.
309
+
310
+ This moves you from structure into actual project content.
311
+
312
+ Common examples:
313
+
314
+ - Markdown notes
315
+ - plans
316
+ - experiment summaries
317
+ - result reports
318
+ - paper drafts
319
+
320
+ In practice, many users treat Markdown files in the quest as a private local-first notebook for:
321
+
322
+ - notes
323
+ - plans
324
+ - handoffs
325
+ - findings
326
+ - team coordination
327
+
328
+ ### 6.5 Canvas
329
+
330
+ Canvas makes the research map visible.
331
+
332
+ A healthy quest should not feel like one long chat log.
333
+
334
+ Canvas should help you see:
335
+
336
+ - baseline work
337
+ - candidate ideas
338
+ - failed branches
339
+ - successful paths
340
+ - later analysis and writing
341
+
342
+ The graph matters because it shows how the quest grew, not just where it ended.
343
+
344
+ ### 6.6 Click a node in Canvas
345
+
346
+ Do not stop at looking.
347
+
348
+ Click a node to inspect what it actually means.
349
+
350
+ A useful node should lead you toward:
351
+
352
+ - branch summary
353
+ - linked files
354
+ - stage state
355
+ - durable evidence
356
+
357
+ This is how Canvas becomes inspectable instead of decorative.
358
+
359
+ ### 6.7 Details
360
+
361
+ Use `Details` when you want the fastest high-confidence answer to:
362
+
363
+ `What is the current state of this quest right now?`
364
+
365
+ This is usually the first page to open when:
366
+
367
+ - you come back after a break
368
+ - the quest has been running for a while
369
+ - you want summary before intervention
370
+
371
+ ### 6.8 Memory
372
+
373
+ Memory is how the quest keeps growing instead of restarting from zero.
374
+
375
+ Use it to understand:
376
+
377
+ - what reusable lessons were learned
378
+ - which weak paths should not be repeated
379
+ - what stable facts were extracted from prior work
380
+
381
+ Without memory, every round risks becoming disposable.
382
+
383
+ ### 6.9 Copilot / Studio
384
+
385
+ Keep this surface open when you want to stay close to execution.
386
+
387
+ Use it to:
388
+
389
+ - watch the run
390
+ - intervene
391
+ - ask for a summary
392
+ - redirect the route
393
+ - continue the thread later
394
+
395
+ This is where the quest feels collaborative instead of static.
396
+
397
+ ## 7. A practical first operating rhythm
398
+
399
+ Once the quest is running, the most useful rhythm is usually:
400
+
401
+ 1. let the first round move
402
+ 2. open the workspace instead of waiting in chat
403
+ 3. inspect one or two key files
404
+ 4. check Canvas for branching structure
405
+ 5. read Details for current state
406
+ 6. only then decide whether to intervene
407
+
408
+ This avoids two common mistakes:
409
+
410
+ - interrupting too early
411
+ - trusting a summary before checking durable evidence
412
+
413
+ ## 8. Common mistakes
414
+
415
+ ### 8.1 Treating Start Research like casual chat
416
+
417
+ It is not a casual chat box.
418
+
419
+ It is a project contract.
420
+
421
+ ### 8.2 Leaving the goal vague
422
+
423
+ If the goal does not define verification, the first round will be weaker.
424
+
425
+ ### 8.3 Hiding important references inside the main paragraph
426
+
427
+ Use the dedicated baseline and reference fields instead.
428
+
429
+ ### 8.4 Ignoring the generated kickoff prompt
430
+
431
+ This is the cheapest place to catch a misunderstanding.
432
+
433
+ ### 8.5 Treating Canvas as a pretty picture
434
+
435
+ Click nodes and inspect files. Otherwise you are only seeing shape, not evidence.
436
+
437
+ ### 8.6 Waiting in the workspace without reading files
438
+
439
+ The file tree is one of the main truth surfaces of the system.
440
+
441
+ ## 9. What to read next
442
+
443
+ - [02 Start Research Guide](./02_START_RESEARCH_GUIDE.md)
444
+ - [06 Runtime and Canvas](./06_RUNTIME_AND_CANVAS.md)
445
+ - [07 Memory and MCP](./07_MEMORY_AND_MCP.md)
446
+ - [13 Core Architecture Guide](./13_CORE_ARCHITECTURE_GUIDE.md)