@trespies-source/dojo-genesis-plugin 1.0.0

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 (209) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/LICENSE +21 -0
  3. package/README.md +204 -0
  4. package/dist/hooks/after-tool-call/handler.d.ts +4 -0
  5. package/dist/hooks/after-tool-call/handler.d.ts.map +1 -0
  6. package/dist/hooks/after-tool-call/handler.js +37 -0
  7. package/dist/hooks/after-tool-call/handler.js.map +1 -0
  8. package/dist/hooks/agent-end/handler.d.ts +4 -0
  9. package/dist/hooks/agent-end/handler.d.ts.map +1 -0
  10. package/dist/hooks/agent-end/handler.js +16 -0
  11. package/dist/hooks/agent-end/handler.js.map +1 -0
  12. package/dist/hooks/before-agent-start/handler.d.ts +4 -0
  13. package/dist/hooks/before-agent-start/handler.d.ts.map +1 -0
  14. package/dist/hooks/before-agent-start/handler.js +81 -0
  15. package/dist/hooks/before-agent-start/handler.js.map +1 -0
  16. package/dist/index.d.ts +18 -0
  17. package/dist/index.d.ts.map +1 -0
  18. package/dist/index.js +35 -0
  19. package/dist/index.js.map +1 -0
  20. package/dist/src/commands/archive.d.ts +4 -0
  21. package/dist/src/commands/archive.d.ts.map +1 -0
  22. package/dist/src/commands/archive.js +20 -0
  23. package/dist/src/commands/archive.js.map +1 -0
  24. package/dist/src/commands/init.d.ts +4 -0
  25. package/dist/src/commands/init.d.ts.map +1 -0
  26. package/dist/src/commands/init.js +57 -0
  27. package/dist/src/commands/init.js.map +1 -0
  28. package/dist/src/commands/list.d.ts +4 -0
  29. package/dist/src/commands/list.d.ts.map +1 -0
  30. package/dist/src/commands/list.js +9 -0
  31. package/dist/src/commands/list.js.map +1 -0
  32. package/dist/src/commands/router.d.ts +3 -0
  33. package/dist/src/commands/router.d.ts.map +1 -0
  34. package/dist/src/commands/router.js +83 -0
  35. package/dist/src/commands/router.js.map +1 -0
  36. package/dist/src/commands/skill-invoke.d.ts +4 -0
  37. package/dist/src/commands/skill-invoke.d.ts.map +1 -0
  38. package/dist/src/commands/skill-invoke.js +26 -0
  39. package/dist/src/commands/skill-invoke.js.map +1 -0
  40. package/dist/src/commands/status.d.ts +4 -0
  41. package/dist/src/commands/status.d.ts.map +1 -0
  42. package/dist/src/commands/status.js +42 -0
  43. package/dist/src/commands/status.js.map +1 -0
  44. package/dist/src/commands/switch.d.ts +4 -0
  45. package/dist/src/commands/switch.d.ts.map +1 -0
  46. package/dist/src/commands/switch.js +20 -0
  47. package/dist/src/commands/switch.js.map +1 -0
  48. package/dist/src/orchestration/tool-registry.d.ts +18 -0
  49. package/dist/src/orchestration/tool-registry.d.ts.map +1 -0
  50. package/dist/src/orchestration/tool-registry.js +153 -0
  51. package/dist/src/orchestration/tool-registry.js.map +1 -0
  52. package/dist/src/skills/catalog.d.ts +9 -0
  53. package/dist/src/skills/catalog.d.ts.map +1 -0
  54. package/dist/src/skills/catalog.js +251 -0
  55. package/dist/src/skills/catalog.js.map +1 -0
  56. package/dist/src/state/manager.d.ts +19 -0
  57. package/dist/src/state/manager.d.ts.map +1 -0
  58. package/dist/src/state/manager.js +114 -0
  59. package/dist/src/state/manager.js.map +1 -0
  60. package/dist/src/state/migrations.d.ts +3 -0
  61. package/dist/src/state/migrations.d.ts.map +1 -0
  62. package/dist/src/state/migrations.js +8 -0
  63. package/dist/src/state/migrations.js.map +1 -0
  64. package/dist/src/state/types.d.ts +62 -0
  65. package/dist/src/state/types.d.ts.map +1 -0
  66. package/dist/src/state/types.js +2 -0
  67. package/dist/src/state/types.js.map +1 -0
  68. package/dist/src/ui/chat-formatter.d.ts +11 -0
  69. package/dist/src/ui/chat-formatter.d.ts.map +1 -0
  70. package/dist/src/ui/chat-formatter.js +39 -0
  71. package/dist/src/ui/chat-formatter.js.map +1 -0
  72. package/dist/src/utils/file-ops.d.ts +6 -0
  73. package/dist/src/utils/file-ops.d.ts.map +1 -0
  74. package/dist/src/utils/file-ops.js +38 -0
  75. package/dist/src/utils/file-ops.js.map +1 -0
  76. package/dist/src/utils/markdown.d.ts +2 -0
  77. package/dist/src/utils/markdown.d.ts.map +1 -0
  78. package/dist/src/utils/markdown.js +11 -0
  79. package/dist/src/utils/markdown.js.map +1 -0
  80. package/dist/src/utils/validation.d.ts +7 -0
  81. package/dist/src/utils/validation.d.ts.map +1 -0
  82. package/dist/src/utils/validation.js +29 -0
  83. package/dist/src/utils/validation.js.map +1 -0
  84. package/dist/tests/__mocks__/openclaw-types.d.ts +54 -0
  85. package/dist/tests/__mocks__/openclaw-types.d.ts.map +1 -0
  86. package/dist/tests/__mocks__/openclaw-types.js +29 -0
  87. package/dist/tests/__mocks__/openclaw-types.js.map +1 -0
  88. package/hooks/after-tool-call/HOOK.md +7 -0
  89. package/hooks/after-tool-call/handler.ts +41 -0
  90. package/hooks/agent-end/HOOK.md +7 -0
  91. package/hooks/agent-end/handler.ts +18 -0
  92. package/hooks/before-agent-start/HOOK.md +7 -0
  93. package/hooks/before-agent-start/handler.ts +133 -0
  94. package/openclaw.plugin.json +19 -0
  95. package/package.json +61 -0
  96. package/skills/agent-teaching/SKILL.md +583 -0
  97. package/skills/agent-teaching/claw.json +12 -0
  98. package/skills/compression-ritual/SKILL.md +136 -0
  99. package/skills/compression-ritual/claw.json +12 -0
  100. package/skills/context-ingestion/SKILL.md +109 -0
  101. package/skills/context-ingestion/claw.json +12 -0
  102. package/skills/decision-propagation/SKILL.md +130 -0
  103. package/skills/decision-propagation/claw.json +12 -0
  104. package/skills/documentation-audit/SKILL.md +146 -0
  105. package/skills/documentation-audit/claw.json +12 -0
  106. package/skills/era-architecture/SKILL.md +166 -0
  107. package/skills/era-architecture/claw.json +12 -0
  108. package/skills/file-management/SKILL.md +127 -0
  109. package/skills/file-management/claw.json +12 -0
  110. package/skills/frontend-from-backend/SKILL.md +127 -0
  111. package/skills/frontend-from-backend/claw.json +12 -0
  112. package/skills/handoff-protocol/SKILL.md +168 -0
  113. package/skills/handoff-protocol/claw.json +12 -0
  114. package/skills/health-audit/SKILL.md +123 -0
  115. package/skills/health-audit/claw.json +12 -0
  116. package/skills/implementation-prompt/SKILL.md +361 -0
  117. package/skills/implementation-prompt/claw.json +12 -0
  118. package/skills/iterative-scouting/SKILL.md +106 -0
  119. package/skills/iterative-scouting/claw.json +12 -0
  120. package/skills/memory-garden/SKILL.md +470 -0
  121. package/skills/memory-garden/claw.json +12 -0
  122. package/skills/multi-surface-strategy/SKILL.md +288 -0
  123. package/skills/multi-surface-strategy/claw.json +12 -0
  124. package/skills/parallel-tracks/SKILL.md +152 -0
  125. package/skills/parallel-tracks/claw.json +12 -0
  126. package/skills/patient-learning-protocol/SKILL.md +438 -0
  127. package/skills/patient-learning-protocol/claw.json +12 -0
  128. package/skills/planning-with-files/SKILL.md +139 -0
  129. package/skills/planning-with-files/claw.json +12 -0
  130. package/skills/pre-implementation-checklist/SKILL.md +156 -0
  131. package/skills/pre-implementation-checklist/claw.json +12 -0
  132. package/skills/process-extraction/SKILL.md +148 -0
  133. package/skills/process-extraction/claw.json +12 -0
  134. package/skills/process-extraction/references/process_example_template.md +40 -0
  135. package/skills/product-positioning/SKILL.md +293 -0
  136. package/skills/product-positioning/claw.json +12 -0
  137. package/skills/project-exploration/SKILL.md +168 -0
  138. package/skills/project-exploration/claw.json +12 -0
  139. package/skills/release-specification/SKILL.md +645 -0
  140. package/skills/release-specification/claw.json +12 -0
  141. package/skills/repo-context-sync/SKILL.md +362 -0
  142. package/skills/repo-context-sync/claw.json +12 -0
  143. package/skills/repo-context-sync/references/file_hierarchy_patterns.md +186 -0
  144. package/skills/repo-context-sync/references/zenflow_repo_patterns.md +328 -0
  145. package/skills/repo-context-sync/scripts/context_mapper.py +251 -0
  146. package/skills/repo-context-sync/scripts/diff_tracker.py +187 -0
  147. package/skills/repo-context-sync/scripts/smart_clone.sh +52 -0
  148. package/skills/repo-context-sync/templates/context_summary.md +58 -0
  149. package/skills/repo-status/SKILL.md +240 -0
  150. package/skills/repo-status/claw.json +12 -0
  151. package/skills/repo-status/references/semantic-clusters.md +159 -0
  152. package/skills/repo-status/references/status-template.md +214 -0
  153. package/skills/research-modes/SKILL.md +515 -0
  154. package/skills/research-modes/claw.json +12 -0
  155. package/skills/research-synthesis/SKILL.md +110 -0
  156. package/skills/research-synthesis/claw.json +12 -0
  157. package/skills/retrospective/SKILL.md +152 -0
  158. package/skills/retrospective/claw.json +12 -0
  159. package/skills/seed-extraction/SKILL.md +419 -0
  160. package/skills/seed-extraction/claw.json +12 -0
  161. package/skills/seed-library/SKILL.md +424 -0
  162. package/skills/seed-library/claw.json +12 -0
  163. package/skills/seed-library/references/seed_catalog.md +171 -0
  164. package/skills/seed-library/scripts/apply_seed.py +129 -0
  165. package/skills/seed-library/scripts/suggest_seeds.py +183 -0
  166. package/skills/seed-library/seeds/01_three_tiered_governance.md +90 -0
  167. package/skills/seed-library/seeds/02_harness_trace.md +135 -0
  168. package/skills/seed-library/seeds/03_context_iceberg.md +120 -0
  169. package/skills/seed-library/seeds/04_agent_connect.md +106 -0
  170. package/skills/seed-library/seeds/05_go_live_bundles.md +40 -0
  171. package/skills/seed-library/seeds/06_cost_guard.md +40 -0
  172. package/skills/seed-library/seeds/07_safety_switch.md +41 -0
  173. package/skills/seed-library/seeds/08_implicit_perspective_extraction.md +41 -0
  174. package/skills/seed-library/seeds/09_mode_based_complexity_gating.md +46 -0
  175. package/skills/seed-library/seeds/10_shared_infrastructure.md +75 -0
  176. package/skills/seed-library/seeds/11_voice_before_structure.md +74 -0
  177. package/skills/seed-library/seeds/12_pointer_directories.md +81 -0
  178. package/skills/seed-library/seeds/13_granular_visibility.md +82 -0
  179. package/skills/seed-library/seeds/meta_governance_multiplies_velocity.md +43 -0
  180. package/skills/seed-to-skill-converter/SKILL.md +113 -0
  181. package/skills/seed-to-skill-converter/claw.json +12 -0
  182. package/skills/semantic-clusters/SKILL.md +246 -0
  183. package/skills/semantic-clusters/claw.json +12 -0
  184. package/skills/semantic-clusters/references/verb-catalog.md +267 -0
  185. package/skills/skill-audit-upgrade/SKILL.md +427 -0
  186. package/skills/skill-audit-upgrade/claw.json +12 -0
  187. package/skills/skill-creation/LICENSE.txt +202 -0
  188. package/skills/skill-creation/SKILL.md +252 -0
  189. package/skills/skill-creation/claw.json +12 -0
  190. package/skills/skill-creation/references/output-patterns.md +82 -0
  191. package/skills/skill-creation/references/progressive-disclosure-patterns.md +79 -0
  192. package/skills/skill-creation/references/workflows.md +28 -0
  193. package/skills/skill-creation/scripts/init_skill.py +305 -0
  194. package/skills/skill-creation/scripts/quick_validate.py +134 -0
  195. package/skills/skill-maintenance/SKILL.md +413 -0
  196. package/skills/skill-maintenance/claw.json +12 -0
  197. package/skills/spec-constellation-to-prompt-suite/SKILL.md +174 -0
  198. package/skills/spec-constellation-to-prompt-suite/claw.json +12 -0
  199. package/skills/status-template/SKILL.md +211 -0
  200. package/skills/status-template/claw.json +12 -0
  201. package/skills/status-template/references/complete-template.md +191 -0
  202. package/skills/status-writing/SKILL.md +161 -0
  203. package/skills/status-writing/claw.json +12 -0
  204. package/skills/strategic-scout/SKILL.md +163 -0
  205. package/skills/strategic-scout/claw.json +12 -0
  206. package/skills/strategic-to-tactical-workflow/SKILL.md +391 -0
  207. package/skills/strategic-to-tactical-workflow/claw.json +12 -0
  208. package/skills/workspace-navigation/SKILL.md +622 -0
  209. package/skills/workspace-navigation/claw.json +12 -0
@@ -0,0 +1,515 @@
1
+ ---
2
+ name: research-modes
3
+ description: Conduct deep and wide research using structured approaches for investigating topics and synthesizing findings. Use when making informed decisions, exploring problem spaces, evaluating complex systems, or planning features. Trigger phrases: 'research this topic deeply', 'do a wide scan of the landscape', 'explore the competitive space', 'investigate and synthesize', 'understand before deciding'.
4
+ ---
5
+
6
+ > **OpenClaw Integration:** This skill is invoked by the Dojo Genesis plugin via `/dojo run research-modes`.
7
+ > The agent receives project context automatically via the `before_agent_start` hook.
8
+ > Use `dojo_get_context` for full state, `dojo_save_artifact` to persist outputs,
9
+ > and `dojo_update_state` to record phase transitions and decisions.
10
+
11
+ # Research Modes Skill
12
+
13
+ **Version:** 1.0
14
+ **Created:** 2026-02-02
15
+ **Author:** Manus
16
+ **Purpose:** Structured approaches for deep and wide research tasks
17
+
18
+ ---
19
+
20
+ ## Overview
21
+
22
+ This skill encodes two complementary research modes: **Deep Research** (focused, comprehensive investigation of a specific topic) and **Wide Research** (broad scan across multiple topics to identify patterns and opportunities). Use this skill to conduct efficient, high-quality research that produces actionable insights.
23
+
24
+ **Philosophy:** Research is not about collecting information—it's about building understanding and making decisions.
25
+
26
+ ---
27
+
28
+ ## When to Use This Skill
29
+
30
+ - Planning a new feature or system architecture
31
+ - Investigating a technical problem or design challenge
32
+ - Exploring competitive landscape or market trends
33
+ - Synthesizing learnings from multiple sources
34
+ - Making informed decisions based on evidence
35
+
36
+ ---
37
+
38
+ ## Research Mode Selection
39
+
40
+ ### Deep Research Mode
41
+
42
+ **Use when:**
43
+ - You need comprehensive understanding of a specific topic
44
+ - The decision depends on technical details
45
+ - You're evaluating a complex system or architecture
46
+ - You need to become an "expert" in a narrow domain
47
+
48
+ **Characteristics:**
49
+ - Focused scope (1-3 related topics)
50
+ - Multiple sources per topic (5-10+)
51
+ - Deep analysis and synthesis
52
+ - Produces detailed report or specification
53
+
54
+ **Timeline:** 2-8 hours
55
+
56
+ ### Wide Research Mode
57
+
58
+ **Use when:**
59
+ - You're exploring a new problem space
60
+ - You need to identify patterns across multiple domains
61
+ - You're scouting for inspiration or best practices
62
+ - You want to understand the landscape before diving deep
63
+
64
+ **Characteristics:**
65
+ - Broad scope (10-50+ topics)
66
+ - Few sources per topic (1-3)
67
+ - Pattern recognition and clustering
68
+ - Produces landscape map or opportunity matrix
69
+
70
+ **Timeline:** 1-4 hours
71
+
72
+ ---
73
+
74
+ ## Deep Research Mode
75
+
76
+ ### Phase 1: Define Scope (15-30 minutes)
77
+
78
+ **Questions to answer:**
79
+ 1. What is the core question I'm trying to answer?
80
+ 2. What decision will this research inform?
81
+ 3. What level of detail do I need?
82
+ 4. What are the boundaries (in scope vs. out of scope)?
83
+ 5. What success criteria will I use?
84
+
85
+ **Output:** Research brief (1-2 paragraphs)
86
+
87
+ **Template:**
88
+
89
+ ```markdown
90
+ ## Research Brief
91
+
92
+ **Question:** [The core question]
93
+
94
+ **Decision:** [What this research will inform]
95
+
96
+ **Scope:**
97
+ - In scope: [Topics, domains, or questions to explore]
98
+ - Out of scope: [Topics to explicitly exclude]
99
+
100
+ **Success Criteria:**
101
+ - [ ] [Criterion 1]
102
+ - [ ] [Criterion 2]
103
+ - [ ] [Criterion 3]
104
+
105
+ **Timeline:** [Expected duration]
106
+ ```
107
+
108
+ ### Phase 2: Source Discovery (30-60 minutes)
109
+
110
+ **Methods:**
111
+ - Search for academic papers, technical documentation, blog posts
112
+ - Identify authoritative sources (official docs, research labs, industry leaders)
113
+ - Look for case studies, implementations, and real-world examples
114
+ - Check GitHub repositories, open-source projects, and code examples
115
+
116
+ **Quality Filters:**
117
+ - Recency (prefer sources from last 2-3 years unless historical context is needed)
118
+ - Authority (prefer official docs, peer-reviewed papers, recognized experts)
119
+ - Relevance (directly addresses the research question)
120
+ - Depth (provides technical details, not just overviews)
121
+
122
+ **Output:** Source list (10-20 sources)
123
+
124
+ **Template:**
125
+
126
+ ```markdown
127
+ ## Sources
128
+
129
+ ### Primary Sources (Authoritative)
130
+ 1. [Title] - [Author/Organization] - [Year] - [URL]
131
+ - **Why:** [Relevance to research question]
132
+ - **Key Claims:** [What this source argues]
133
+
134
+ ### Secondary Sources (Supporting)
135
+ [Repeat structure]
136
+
137
+ ### Code Examples / Implementations
138
+ [Repeat structure]
139
+ ```
140
+
141
+ ### Phase 3: Deep Reading & Note-Taking (1-3 hours)
142
+
143
+ **Process:**
144
+ 1. Read each source with the research question in mind
145
+ 2. Extract key insights, claims, and evidence
146
+ 3. Note disagreements or contradictions between sources
147
+ 4. Identify patterns and themes
148
+ 5. Flag open questions or gaps
149
+
150
+ **Note-Taking Structure:**
151
+
152
+ ```markdown
153
+ ## Notes: [Source Title]
154
+
155
+ **Main Argument:** [1-2 sentences]
156
+
157
+ **Key Insights:**
158
+ - [Insight 1]
159
+ - [Insight 2]
160
+ - [Insight 3]
161
+
162
+ **Evidence:**
163
+ - [Data point, study, or example]
164
+
165
+ **Disagreements:**
166
+ - [How this contradicts other sources]
167
+
168
+ **Open Questions:**
169
+ - [What this source doesn't address]
170
+
171
+ **Quotes:**
172
+ > "[Exact quote]" (Page X)
173
+
174
+ **Relevance:** [How this informs the research question]
175
+ ```
176
+
177
+ ### Phase 4: Synthesis & Analysis (1-2 hours)
178
+
179
+ **Questions to answer:**
180
+ 1. What are the major themes or patterns?
181
+ 2. What do most sources agree on?
182
+ 3. Where do sources disagree, and why?
183
+ 4. What are the tradeoffs or tensions?
184
+ 5. What gaps remain in the knowledge?
185
+
186
+ **Output:** Synthesis document
187
+
188
+ **Template:**
189
+
190
+ ```markdown
191
+ ## Research Synthesis: [Topic]
192
+
193
+ **Research Question:** [The core question]
194
+
195
+ ---
196
+
197
+ ### Executive Summary
198
+
199
+ [2-3 paragraphs summarizing the key findings and recommendations]
200
+
201
+ ---
202
+
203
+ ### Key Findings
204
+
205
+ #### Finding 1: [Theme or Pattern]
206
+
207
+ **Evidence:**
208
+ - [Source 1] claims [X]
209
+ - [Source 2] supports this with [Y]
210
+ - [Source 3] provides example: [Z]
211
+
212
+ **Confidence:** High | Medium | Low
213
+
214
+ **Implication:** [What this means for the decision]
215
+
216
+ #### Finding 2: [Theme or Pattern]
217
+
218
+ [Repeat structure]
219
+
220
+ ---
221
+
222
+ ### Tradeoffs & Tensions
223
+
224
+ | Dimension | Option A | Option B | Recommendation |
225
+ |-----------|----------|----------|----------------|
226
+ | [Criterion] | [Pro/Con] | [Pro/Con] | [Which and why] |
227
+
228
+ ---
229
+
230
+ ### Open Questions
231
+
232
+ - [ ] [Question that needs further research]
233
+ - [ ] [Uncertainty or ambiguity]
234
+
235
+ ---
236
+
237
+ ### Recommendations
238
+
239
+ 1. **[Recommendation 1]:** [Action to take based on findings]
240
+ - **Rationale:** [Why this is the best choice]
241
+ - **Risk:** [What could go wrong]
242
+ - **Mitigation:** [How to address the risk]
243
+
244
+ 2. **[Recommendation 2]:** [Repeat structure]
245
+
246
+ ---
247
+
248
+ ### References
249
+
250
+ 1. [Source 1]
251
+ 2. [Source 2]
252
+ [...]
253
+ ```
254
+
255
+ ### Phase 5: Validation (30-60 minutes)
256
+
257
+ **Questions to ask:**
258
+ 1. Did I answer the research question?
259
+ 2. Are my recommendations actionable?
260
+ 3. Did I consider counterarguments?
261
+ 4. Are there gaps in my reasoning?
262
+ 5. Would someone else reach the same conclusion?
263
+
264
+ **Validation Methods:**
265
+ - Review against success criteria
266
+ - Check for confirmation bias (did I only seek supporting evidence?)
267
+ - Test recommendations against edge cases
268
+ - Share with a peer for feedback (if available)
269
+
270
+ ---
271
+
272
+ ## Wide Research Mode
273
+
274
+ ### Phase 1: Define Landscape (15-30 minutes)
275
+
276
+ **Questions to answer:**
277
+ 1. What problem space am I exploring?
278
+ 2. What are the boundaries of this landscape?
279
+ 3. What am I looking for (patterns, tools, approaches)?
280
+ 4. How will I know when I've covered enough ground?
281
+
282
+ **Output:** Landscape brief (1-2 paragraphs)
283
+
284
+ **Template:**
285
+
286
+ ```markdown
287
+ ## Landscape Brief
288
+
289
+ **Problem Space:** [The domain or challenge]
290
+
291
+ **Goal:** [What I'm trying to discover]
292
+
293
+ **Boundaries:**
294
+ - [Dimension 1: e.g., technical vs. non-technical]
295
+ - [Dimension 2: e.g., open-source vs. commercial]
296
+ - [Dimension 3: e.g., mature vs. emerging]
297
+
298
+ **Success Criteria:**
299
+ - [ ] [Covered X categories]
300
+ - [ ] [Identified Y patterns]
301
+ - [ ] [Found Z opportunities]
302
+ ```
303
+
304
+ ### Phase 2: Rapid Scanning (1-2 hours)
305
+
306
+ **Process:**
307
+ 1. Search broadly across the problem space
308
+ 2. Skim sources quickly (5-10 minutes per source)
309
+ 3. Extract 1-3 key insights per source
310
+ 4. Tag sources by category, theme, or approach
311
+ 5. Move on quickly (don't get stuck in details)
312
+
313
+ **Output:** Tagged source list (20-50 sources)
314
+
315
+ **Template:**
316
+
317
+ ```markdown
318
+ ## Sources
319
+
320
+ ### [Category 1]
321
+ 1. [Title] - [URL]
322
+ - **Key Insight:** [1 sentence]
323
+ - **Tags:** #[tag1] #[tag2]
324
+
325
+ ### [Category 2]
326
+ [Repeat structure]
327
+ ```
328
+
329
+ ### Phase 3: Pattern Recognition (30-60 minutes)
330
+
331
+ **Questions to answer:**
332
+ 1. What categories or clusters emerge?
333
+ 2. What approaches are most common?
334
+ 3. What innovations or outliers stand out?
335
+ 4. What gaps or opportunities exist?
336
+
337
+ **Output:** Landscape map
338
+
339
+ **Template:**
340
+
341
+ ```markdown
342
+ ## Landscape Map: [Problem Space]
343
+
344
+ ### Categories Identified
345
+
346
+ 1. **[Category 1]:** [Description]
347
+ - **Examples:** [Source 1], [Source 2], [Source 3]
348
+ - **Characteristics:** [Common traits]
349
+ - **Maturity:** Emerging | Growing | Mature
350
+
351
+ 2. **[Category 2]:** [Repeat structure]
352
+
353
+ ---
354
+
355
+ ### Patterns Observed
356
+
357
+ #### Pattern 1: [Name]
358
+
359
+ **Description:** [What this pattern is]
360
+
361
+ **Evidence:**
362
+ - [Source 1] does [X]
363
+ - [Source 2] does [Y]
364
+ - [Source 3] does [Z]
365
+
366
+ **Implication:** [What this suggests]
367
+
368
+ #### Pattern 2: [Repeat structure]
369
+
370
+ ---
371
+
372
+ ### Outliers & Innovations
373
+
374
+ - **[Source/Approach]:** [What makes this unique]
375
+
376
+ ---
377
+
378
+ ### Gaps & Opportunities
379
+
380
+ - **Gap 1:** [What's missing in the landscape]
381
+ - **Opportunity:** [How this could be addressed]
382
+
383
+ - **Gap 2:** [Repeat structure]
384
+ ```
385
+
386
+ ### Phase 4: Opportunity Matrix (30-60 minutes)
387
+
388
+ **Process:**
389
+ 1. Identify potential approaches or solutions
390
+ 2. Evaluate each on key dimensions (effort, impact, risk, novelty)
391
+ 3. Plot on a 2x2 matrix (e.g., effort vs. impact)
392
+ 4. Prioritize based on goals
393
+
394
+ **Output:** Opportunity matrix
395
+
396
+ **Template:**
397
+
398
+ ```markdown
399
+ ## Opportunity Matrix
400
+
401
+ | Approach | Effort | Impact | Risk | Novelty | Priority |
402
+ |----------|--------|--------|------|---------|----------|
403
+ | [Approach 1] | Low/Med/High | Low/Med/High | Low/Med/High | Low/Med/High | 1-5 |
404
+ | [Approach 2] | [Repeat] | [Repeat] | [Repeat] | [Repeat] | [Repeat] |
405
+
406
+ ---
407
+
408
+ ### Top 3 Opportunities
409
+
410
+ 1. **[Approach 1]:** [Why this is promising]
411
+ - **Next Step:** [What to do to explore this further]
412
+
413
+ 2. **[Approach 2]:** [Repeat structure]
414
+
415
+ 3. **[Approach 3]:** [Repeat structure]
416
+ ```
417
+
418
+ ---
419
+
420
+ ## Hybrid Research Mode
421
+
422
+ **Use when:**
423
+ - You need both breadth and depth
424
+ - The problem space is large and complex
425
+ - You're making a high-stakes decision
426
+
427
+ **Process:**
428
+ 1. Start with **Wide Research** (2-4 hours)
429
+ 2. Identify 2-3 promising areas
430
+ 3. Conduct **Deep Research** on each area (2-4 hours per area)
431
+ 4. Synthesize findings across all areas
432
+ 5. Make recommendation
433
+
434
+ **Timeline:** 1-2 days
435
+
436
+ ---
437
+
438
+ ## Research Quality Checklist
439
+
440
+ Before finalizing research, verify:
441
+
442
+ ### Scope & Focus
443
+ - [ ] Research question is clearly defined
444
+ - [ ] Scope boundaries are explicit
445
+ - [ ] Success criteria are measurable
446
+
447
+ ### Source Quality
448
+ - [ ] Sources are authoritative and recent
449
+ - [ ] Multiple perspectives are represented
450
+ - [ ] Contradictions are acknowledged
451
+ - [ ] Bias is considered
452
+
453
+ ### Analysis Depth
454
+ - [ ] Key findings are supported by evidence
455
+ - [ ] Tradeoffs and tensions are identified
456
+ - [ ] Open questions are flagged
457
+ - [ ] Recommendations are actionable
458
+
459
+ ### Synthesis
460
+ - [ ] Patterns are clearly articulated
461
+ - [ ] Insights are connected to the research question
462
+ - [ ] Gaps and opportunities are identified
463
+ - [ ] Next steps are defined
464
+
465
+ ---
466
+
467
+ ## Common Pitfalls to Avoid
468
+
469
+ ❌ **Scope Creep:** Starting focused, ending scattered → ✅ Define boundaries upfront
470
+ ❌ **Confirmation Bias:** Only seeking supporting evidence → ✅ Actively seek counterarguments
471
+ ❌ **Analysis Paralysis:** Reading forever, never synthesizing → ✅ Set time limits
472
+ ❌ **Surface Skimming:** Reading titles, not content → ✅ Take structured notes
473
+ ❌ **No Synthesis:** Collecting info, not building understanding → ✅ Answer the research question
474
+
475
+ ---
476
+
477
+ ## Usage Instructions
478
+
479
+ 1. **Read this skill** before starting research
480
+ 2. **Choose the right mode** (Deep, Wide, or Hybrid)
481
+ 3. **Define scope** clearly (research brief or landscape brief)
482
+ 4. **Follow the phase structure** for your chosen mode
483
+ 5. **Take structured notes** using the templates
484
+ 6. **Synthesize findings** into actionable insights
485
+ 7. **Validate** against success criteria
486
+
487
+ ---
488
+
489
+ ## Skill Metadata
490
+
491
+ **Token Savings:** ~2,000-4,000 tokens per research session (structured approach prevents re-reading and wandering)
492
+ **Quality Impact:** Ensures research is focused, comprehensive, and actionable
493
+ **Maintenance:** Update when new research patterns emerge
494
+
495
+ **Related Skills:**
496
+ - `specification-writer` - Research informs specifications
497
+ - `seed-extraction` - Extract seeds from research findings
498
+ - `memory-garden` - Document research in memory for future reference
499
+
500
+ ---
501
+
502
+ **Last Updated:** 2026-02-02
503
+ **Maintained By:** Manus
504
+ **Status:** Active
505
+ ---
506
+
507
+ ## OpenClaw Tool Integration
508
+
509
+ When running inside the Dojo Genesis plugin:
510
+
511
+ 1. **Start** by calling `dojo_get_context` to retrieve full project state, history, and artifacts
512
+ 2. **During** the skill, follow the workflow steps documented above
513
+ 3. **Save** outputs using `dojo_save_artifact` with the `artifacts` output directory
514
+ 4. **Update** project state by calling `dojo_update_state` to record skill completion and any phase transitions
515
+
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "dojo-genesis-plugin-research-modes",
3
+ "version": "1.0.0",
4
+ "description": "Deep and wide research with structured approaches",
5
+ "author": "dojo-genesis",
6
+ "license": "MIT",
7
+ "permissions": [],
8
+ "entry": "SKILL.md",
9
+ "tags": ["dojo-genesis", "orchestration", "research", "analysis"],
10
+ "models": ["claude-*", "gpt-*", "gemini-*"],
11
+ "minOpenClawVersion": "2026.1.0"
12
+ }
@@ -0,0 +1,110 @@
1
+ ---
2
+ name: research-synthesis
3
+ description: Synthesize multiple research files into actionable insights through cross-referencing and pattern identification. Use when you have 3+ sources on a topic, need a literature review, consolidating notes from multiple sources, or understanding topics from multiple angles. Trigger phrases: 'synthesize these research files', 'find patterns across sources', 'consolidate these notes', 'create a literature review', 'understand by synthesizing'.
4
+ ---
5
+
6
+ > **OpenClaw Integration:** This skill is invoked by the Dojo Genesis plugin via `/dojo run research-synthesis`.
7
+ > The agent receives project context automatically via the `before_agent_start` hook.
8
+ > Use `dojo_get_context` for full state, `dojo_save_artifact` to persist outputs,
9
+ > and `dojo_update_state` to record phase transitions and decisions.
10
+
11
+ # Research Synthesis Engine
12
+
13
+ **Version:** 1.0
14
+ **Created:** 2026-02-08
15
+ **Author:** Manus AI
16
+ **Purpose:** To turn raw research into a coherent understanding of a topic, identifying patterns, contradictions, and key recommendations.
17
+
18
+ ---
19
+
20
+ ## I. The Philosophy: From Information to Insight
21
+
22
+ This skill transforms the act of research from a process of information gathering to a process of insight generation. By systematically cataloging, cross-referencing, and synthesizing multiple sources, it uncovers patterns and contradictions that are not visible from any single source, leading to a deeper, more actionable understanding.
23
+
24
+ ---
25
+
26
+ ## II. When to Use This Skill
27
+
28
+ - **When you have 3 or more research files** on a single topic.
29
+ - **When you need to create a literature review** or a competitive analysis.
30
+ - **When you want to consolidate notes** from multiple meetings or interviews.
31
+ - **When the `planning-with-files` meta-skill routes to this mode.**
32
+
33
+ ---
34
+
35
+ ## III. The Workflow
36
+
37
+ This is a 5-step workflow for synthesizing multiple research files.
38
+
39
+ ### Step 1: File Ingestion and Cataloging
40
+
41
+ **Goal:** Read all uploaded research files and create a structured catalog.
42
+
43
+ 1. **Read Files:** Use the `file` tool to read each uploaded file (use `view` for PDFs).
44
+ 2. **Extract Metadata:** Identify author, date, and key topics for each file.
45
+ 3. **Create Catalog:** Create an internal catalog document listing all files and their metadata.
46
+
47
+ ### Step 2: Cross-Referencing and Pattern Identification
48
+
49
+ **Goal:** Identify patterns, contradictions, and connections across all files.
50
+
51
+ 1. **Identify Themes:** Read through the catalog to identify recurring themes.
52
+ 2. **Note Convergence:** Where do the sources agree?
53
+ 3. **Note Divergence:** Where do the sources disagree or contradict each other?
54
+ 4. **Identify Gaps:** What topics are mentioned in one source but not others?
55
+ 5. **Create Cross-Reference Matrix:** Create an internal matrix to map themes to sources.
56
+
57
+ ### Step 3: Synthesis Document Creation
58
+
59
+ **Goal:** Create a unified synthesis document that integrates findings from all files.
60
+
61
+ 1. **Organize by Themes:** Structure the document by the themes identified in Step 2 (not by individual files).
62
+ 2. **Summarize Evidence:** For each theme, summarize the convergent evidence and highlight contradictions.
63
+ 3. **Provide Key Insights:** For each theme, provide a key insight that is not obvious from any single source.
64
+ 4. **Include Actionable Recommendations:** Provide a list of concrete next steps based on the synthesis.
65
+ 5. **Cite Sources:** Include citations to the specific files that support each claim.
66
+
67
+ ### Step 4: Validation and Refinement
68
+
69
+ **Goal:** Ensure the synthesis is accurate, complete, and actionable.
70
+
71
+ 1. **Review for Accuracy:** Check that all claims are supported by the source files.
72
+ 2. **Check for Completeness:** Ensure all major themes and contradictions are covered.
73
+ 3. **Verify Actionability:** Ensure that recommendations are concrete and can be implemented.
74
+
75
+ ### Step 5: Delivery
76
+
77
+ **Goal:** Deliver the synthesis to the user with clear next steps.
78
+
79
+ 1. **Send Synthesis:** Use the `message` tool to send the synthesis document as an attachment.
80
+ 2. **Summarize:** Briefly summarize the key insights and recommendations.
81
+ 3. **Offer Deeper Dive:** Offer to answer questions or explore specific themes in more detail.
82
+
83
+ ---
84
+
85
+ ## IV. Best Practices
86
+
87
+ - **Organize by Themes, Not by Files:** Synthesis requires integration, not just summarization.
88
+ - **Contradictions Are Valuable:** Highlight disagreements between sources—they often reveal the most interesting insights.
89
+ - **Actionable Recommendations Are the Goal:** A synthesis should lead to action.
90
+ - **Cite Your Sources:** Every claim in the synthesis should be traceable to a specific source file.
91
+
92
+ ---
93
+
94
+ ## V. Quality Checklist
95
+
96
+ - [ ] Is the synthesis organized by themes, not by individual files?
97
+ - [ ] Does the synthesis highlight both convergent evidence and contradictions?
98
+ - [ ] Does the synthesis provide actionable recommendations?
99
+ - [ ] Does the synthesis cite the source files for its claims?
100
+ ---
101
+
102
+ ## OpenClaw Tool Integration
103
+
104
+ When running inside the Dojo Genesis plugin:
105
+
106
+ 1. **Start** by calling `dojo_get_context` to retrieve full project state, history, and artifacts
107
+ 2. **During** the skill, follow the workflow steps documented above
108
+ 3. **Save** outputs using `dojo_save_artifact` with the `artifacts` output directory
109
+ 4. **Update** project state by calling `dojo_update_state` to record skill completion and any phase transitions
110
+
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "dojo-genesis-plugin-research-synthesis",
3
+ "version": "1.0.0",
4
+ "description": "Synthesize multiple sources into actionable insights",
5
+ "author": "dojo-genesis",
6
+ "license": "MIT",
7
+ "permissions": [],
8
+ "entry": "SKILL.md",
9
+ "tags": ["dojo-genesis", "orchestration", "research", "analysis"],
10
+ "models": ["claude-*", "gpt-*", "gemini-*"],
11
+ "minOpenClawVersion": "2026.1.0"
12
+ }