@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.
- package/CHANGELOG.md +30 -0
- package/LICENSE +21 -0
- package/README.md +204 -0
- package/dist/hooks/after-tool-call/handler.d.ts +4 -0
- package/dist/hooks/after-tool-call/handler.d.ts.map +1 -0
- package/dist/hooks/after-tool-call/handler.js +37 -0
- package/dist/hooks/after-tool-call/handler.js.map +1 -0
- package/dist/hooks/agent-end/handler.d.ts +4 -0
- package/dist/hooks/agent-end/handler.d.ts.map +1 -0
- package/dist/hooks/agent-end/handler.js +16 -0
- package/dist/hooks/agent-end/handler.js.map +1 -0
- package/dist/hooks/before-agent-start/handler.d.ts +4 -0
- package/dist/hooks/before-agent-start/handler.d.ts.map +1 -0
- package/dist/hooks/before-agent-start/handler.js +81 -0
- package/dist/hooks/before-agent-start/handler.js.map +1 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +35 -0
- package/dist/index.js.map +1 -0
- package/dist/src/commands/archive.d.ts +4 -0
- package/dist/src/commands/archive.d.ts.map +1 -0
- package/dist/src/commands/archive.js +20 -0
- package/dist/src/commands/archive.js.map +1 -0
- package/dist/src/commands/init.d.ts +4 -0
- package/dist/src/commands/init.d.ts.map +1 -0
- package/dist/src/commands/init.js +57 -0
- package/dist/src/commands/init.js.map +1 -0
- package/dist/src/commands/list.d.ts +4 -0
- package/dist/src/commands/list.d.ts.map +1 -0
- package/dist/src/commands/list.js +9 -0
- package/dist/src/commands/list.js.map +1 -0
- package/dist/src/commands/router.d.ts +3 -0
- package/dist/src/commands/router.d.ts.map +1 -0
- package/dist/src/commands/router.js +83 -0
- package/dist/src/commands/router.js.map +1 -0
- package/dist/src/commands/skill-invoke.d.ts +4 -0
- package/dist/src/commands/skill-invoke.d.ts.map +1 -0
- package/dist/src/commands/skill-invoke.js +26 -0
- package/dist/src/commands/skill-invoke.js.map +1 -0
- package/dist/src/commands/status.d.ts +4 -0
- package/dist/src/commands/status.d.ts.map +1 -0
- package/dist/src/commands/status.js +42 -0
- package/dist/src/commands/status.js.map +1 -0
- package/dist/src/commands/switch.d.ts +4 -0
- package/dist/src/commands/switch.d.ts.map +1 -0
- package/dist/src/commands/switch.js +20 -0
- package/dist/src/commands/switch.js.map +1 -0
- package/dist/src/orchestration/tool-registry.d.ts +18 -0
- package/dist/src/orchestration/tool-registry.d.ts.map +1 -0
- package/dist/src/orchestration/tool-registry.js +153 -0
- package/dist/src/orchestration/tool-registry.js.map +1 -0
- package/dist/src/skills/catalog.d.ts +9 -0
- package/dist/src/skills/catalog.d.ts.map +1 -0
- package/dist/src/skills/catalog.js +251 -0
- package/dist/src/skills/catalog.js.map +1 -0
- package/dist/src/state/manager.d.ts +19 -0
- package/dist/src/state/manager.d.ts.map +1 -0
- package/dist/src/state/manager.js +114 -0
- package/dist/src/state/manager.js.map +1 -0
- package/dist/src/state/migrations.d.ts +3 -0
- package/dist/src/state/migrations.d.ts.map +1 -0
- package/dist/src/state/migrations.js +8 -0
- package/dist/src/state/migrations.js.map +1 -0
- package/dist/src/state/types.d.ts +62 -0
- package/dist/src/state/types.d.ts.map +1 -0
- package/dist/src/state/types.js +2 -0
- package/dist/src/state/types.js.map +1 -0
- package/dist/src/ui/chat-formatter.d.ts +11 -0
- package/dist/src/ui/chat-formatter.d.ts.map +1 -0
- package/dist/src/ui/chat-formatter.js +39 -0
- package/dist/src/ui/chat-formatter.js.map +1 -0
- package/dist/src/utils/file-ops.d.ts +6 -0
- package/dist/src/utils/file-ops.d.ts.map +1 -0
- package/dist/src/utils/file-ops.js +38 -0
- package/dist/src/utils/file-ops.js.map +1 -0
- package/dist/src/utils/markdown.d.ts +2 -0
- package/dist/src/utils/markdown.d.ts.map +1 -0
- package/dist/src/utils/markdown.js +11 -0
- package/dist/src/utils/markdown.js.map +1 -0
- package/dist/src/utils/validation.d.ts +7 -0
- package/dist/src/utils/validation.d.ts.map +1 -0
- package/dist/src/utils/validation.js +29 -0
- package/dist/src/utils/validation.js.map +1 -0
- package/dist/tests/__mocks__/openclaw-types.d.ts +54 -0
- package/dist/tests/__mocks__/openclaw-types.d.ts.map +1 -0
- package/dist/tests/__mocks__/openclaw-types.js +29 -0
- package/dist/tests/__mocks__/openclaw-types.js.map +1 -0
- package/hooks/after-tool-call/HOOK.md +7 -0
- package/hooks/after-tool-call/handler.ts +41 -0
- package/hooks/agent-end/HOOK.md +7 -0
- package/hooks/agent-end/handler.ts +18 -0
- package/hooks/before-agent-start/HOOK.md +7 -0
- package/hooks/before-agent-start/handler.ts +133 -0
- package/openclaw.plugin.json +19 -0
- package/package.json +61 -0
- package/skills/agent-teaching/SKILL.md +583 -0
- package/skills/agent-teaching/claw.json +12 -0
- package/skills/compression-ritual/SKILL.md +136 -0
- package/skills/compression-ritual/claw.json +12 -0
- package/skills/context-ingestion/SKILL.md +109 -0
- package/skills/context-ingestion/claw.json +12 -0
- package/skills/decision-propagation/SKILL.md +130 -0
- package/skills/decision-propagation/claw.json +12 -0
- package/skills/documentation-audit/SKILL.md +146 -0
- package/skills/documentation-audit/claw.json +12 -0
- package/skills/era-architecture/SKILL.md +166 -0
- package/skills/era-architecture/claw.json +12 -0
- package/skills/file-management/SKILL.md +127 -0
- package/skills/file-management/claw.json +12 -0
- package/skills/frontend-from-backend/SKILL.md +127 -0
- package/skills/frontend-from-backend/claw.json +12 -0
- package/skills/handoff-protocol/SKILL.md +168 -0
- package/skills/handoff-protocol/claw.json +12 -0
- package/skills/health-audit/SKILL.md +123 -0
- package/skills/health-audit/claw.json +12 -0
- package/skills/implementation-prompt/SKILL.md +361 -0
- package/skills/implementation-prompt/claw.json +12 -0
- package/skills/iterative-scouting/SKILL.md +106 -0
- package/skills/iterative-scouting/claw.json +12 -0
- package/skills/memory-garden/SKILL.md +470 -0
- package/skills/memory-garden/claw.json +12 -0
- package/skills/multi-surface-strategy/SKILL.md +288 -0
- package/skills/multi-surface-strategy/claw.json +12 -0
- package/skills/parallel-tracks/SKILL.md +152 -0
- package/skills/parallel-tracks/claw.json +12 -0
- package/skills/patient-learning-protocol/SKILL.md +438 -0
- package/skills/patient-learning-protocol/claw.json +12 -0
- package/skills/planning-with-files/SKILL.md +139 -0
- package/skills/planning-with-files/claw.json +12 -0
- package/skills/pre-implementation-checklist/SKILL.md +156 -0
- package/skills/pre-implementation-checklist/claw.json +12 -0
- package/skills/process-extraction/SKILL.md +148 -0
- package/skills/process-extraction/claw.json +12 -0
- package/skills/process-extraction/references/process_example_template.md +40 -0
- package/skills/product-positioning/SKILL.md +293 -0
- package/skills/product-positioning/claw.json +12 -0
- package/skills/project-exploration/SKILL.md +168 -0
- package/skills/project-exploration/claw.json +12 -0
- package/skills/release-specification/SKILL.md +645 -0
- package/skills/release-specification/claw.json +12 -0
- package/skills/repo-context-sync/SKILL.md +362 -0
- package/skills/repo-context-sync/claw.json +12 -0
- package/skills/repo-context-sync/references/file_hierarchy_patterns.md +186 -0
- package/skills/repo-context-sync/references/zenflow_repo_patterns.md +328 -0
- package/skills/repo-context-sync/scripts/context_mapper.py +251 -0
- package/skills/repo-context-sync/scripts/diff_tracker.py +187 -0
- package/skills/repo-context-sync/scripts/smart_clone.sh +52 -0
- package/skills/repo-context-sync/templates/context_summary.md +58 -0
- package/skills/repo-status/SKILL.md +240 -0
- package/skills/repo-status/claw.json +12 -0
- package/skills/repo-status/references/semantic-clusters.md +159 -0
- package/skills/repo-status/references/status-template.md +214 -0
- package/skills/research-modes/SKILL.md +515 -0
- package/skills/research-modes/claw.json +12 -0
- package/skills/research-synthesis/SKILL.md +110 -0
- package/skills/research-synthesis/claw.json +12 -0
- package/skills/retrospective/SKILL.md +152 -0
- package/skills/retrospective/claw.json +12 -0
- package/skills/seed-extraction/SKILL.md +419 -0
- package/skills/seed-extraction/claw.json +12 -0
- package/skills/seed-library/SKILL.md +424 -0
- package/skills/seed-library/claw.json +12 -0
- package/skills/seed-library/references/seed_catalog.md +171 -0
- package/skills/seed-library/scripts/apply_seed.py +129 -0
- package/skills/seed-library/scripts/suggest_seeds.py +183 -0
- package/skills/seed-library/seeds/01_three_tiered_governance.md +90 -0
- package/skills/seed-library/seeds/02_harness_trace.md +135 -0
- package/skills/seed-library/seeds/03_context_iceberg.md +120 -0
- package/skills/seed-library/seeds/04_agent_connect.md +106 -0
- package/skills/seed-library/seeds/05_go_live_bundles.md +40 -0
- package/skills/seed-library/seeds/06_cost_guard.md +40 -0
- package/skills/seed-library/seeds/07_safety_switch.md +41 -0
- package/skills/seed-library/seeds/08_implicit_perspective_extraction.md +41 -0
- package/skills/seed-library/seeds/09_mode_based_complexity_gating.md +46 -0
- package/skills/seed-library/seeds/10_shared_infrastructure.md +75 -0
- package/skills/seed-library/seeds/11_voice_before_structure.md +74 -0
- package/skills/seed-library/seeds/12_pointer_directories.md +81 -0
- package/skills/seed-library/seeds/13_granular_visibility.md +82 -0
- package/skills/seed-library/seeds/meta_governance_multiplies_velocity.md +43 -0
- package/skills/seed-to-skill-converter/SKILL.md +113 -0
- package/skills/seed-to-skill-converter/claw.json +12 -0
- package/skills/semantic-clusters/SKILL.md +246 -0
- package/skills/semantic-clusters/claw.json +12 -0
- package/skills/semantic-clusters/references/verb-catalog.md +267 -0
- package/skills/skill-audit-upgrade/SKILL.md +427 -0
- package/skills/skill-audit-upgrade/claw.json +12 -0
- package/skills/skill-creation/LICENSE.txt +202 -0
- package/skills/skill-creation/SKILL.md +252 -0
- package/skills/skill-creation/claw.json +12 -0
- package/skills/skill-creation/references/output-patterns.md +82 -0
- package/skills/skill-creation/references/progressive-disclosure-patterns.md +79 -0
- package/skills/skill-creation/references/workflows.md +28 -0
- package/skills/skill-creation/scripts/init_skill.py +305 -0
- package/skills/skill-creation/scripts/quick_validate.py +134 -0
- package/skills/skill-maintenance/SKILL.md +413 -0
- package/skills/skill-maintenance/claw.json +12 -0
- package/skills/spec-constellation-to-prompt-suite/SKILL.md +174 -0
- package/skills/spec-constellation-to-prompt-suite/claw.json +12 -0
- package/skills/status-template/SKILL.md +211 -0
- package/skills/status-template/claw.json +12 -0
- package/skills/status-template/references/complete-template.md +191 -0
- package/skills/status-writing/SKILL.md +161 -0
- package/skills/status-writing/claw.json +12 -0
- package/skills/strategic-scout/SKILL.md +163 -0
- package/skills/strategic-scout/claw.json +12 -0
- package/skills/strategic-to-tactical-workflow/SKILL.md +391 -0
- package/skills/strategic-to-tactical-workflow/claw.json +12 -0
- package/skills/workspace-navigation/SKILL.md +622 -0
- 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
|
+
}
|