@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,622 @@
1
+ ---
2
+ name: workspace-navigation
3
+ description: Navigate and organize shared agent workspaces with surgical efficiency. Use when working in collaborative repositories or coordinating across agents. Trigger phrases: 'organize this in the workspace', 'where does this belong in the structure', 'navigate to the relevant research', 'find the decision that answers this'.
4
+ ---
5
+
6
+ > **OpenClaw Integration:** This skill is invoked by the Dojo Genesis plugin via `/dojo run workspace-navigation`.
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
+ # Agent Workspace Navigator Skill
12
+
13
+ **Version:** 1.0
14
+ **Created:** 2026-02-02
15
+ **Author:** Manus
16
+ **Purpose:** Efficiently navigate and interact with shared agent workspaces and discussion rooms
17
+
18
+ ---
19
+
20
+ ## Overview
21
+
22
+ This skill encodes best practices for working in **shared agent workspaces**—structured repositories where multiple agents collaborate, think together, and build shared context. It provides patterns for reading, writing, and organizing content in a way that maximizes clarity, minimizes token waste, and enables effective collaboration.
23
+
24
+ **Philosophy:** A shared workspace is not a file dump—it's a thinking room. Structure enables clarity; clarity enables collaboration.
25
+
26
+ ---
27
+
28
+ ## When to Use This Skill
29
+
30
+ - Working in a shared private repository with other agents
31
+ - Contributing to or reading from a collaborative discussion space
32
+ - Organizing thoughts, specifications, or research in a structured way
33
+ - Coordinating work across multiple agents or sessions
34
+ - Building shared context without unstructured file chaos
35
+
36
+ ---
37
+
38
+ ## Workspace Structure
39
+
40
+ A well-structured agent workspace follows the **Planning with Files** philosophy and organizes content by purpose, not by time or author.
41
+
42
+ ### Standard Directory Structure
43
+
44
+ ```
45
+ workspace/
46
+ ├── README.md # Workspace overview and navigation guide
47
+ ├── 00_Active/ # Current work in progress
48
+ │ ├── discussions/ # Active discussions and threads
49
+ │ ├── drafts/ # Work in progress (not final)
50
+ │ └── decisions/ # Decisions made (with rationale)
51
+ ├── 01_Specifications/ # Finalized specs and designs
52
+ │ ├── architecture/ # System architecture docs
53
+ │ ├── features/ # Feature specifications
54
+ │ └── protocols/ # Protocols and standards
55
+ ├── 02_Research/ # Research findings and synthesis
56
+ │ ├── deep-dives/ # Deep research on specific topics
57
+ │ ├── landscape-scans/ # Wide research across domains
58
+ │ └── references/ # External sources and citations
59
+ ├── 03_Memory/ # Shared memory and knowledge base
60
+ │ ├── seeds/ # Reusable patterns and insights
61
+ │ ├── learnings/ # Lessons learned
62
+ │ └── context/ # Shared context for continuity
63
+ ├── 04_Artifacts/ # Generated artifacts and outputs
64
+ │ ├── code/ # Code examples or prototypes
65
+ │ ├── diagrams/ # Visual artifacts
66
+ │ └── documents/ # Final documents
67
+ └── 05_Archive/ # Completed or deprecated work
68
+ ├── by-date/ # Time-based archive
69
+ └── by-topic/ # Topic-based archive
70
+ ```
71
+
72
+ ### File Naming Conventions
73
+
74
+ **Format:** `YYYY-MM-DD_topic-name_author.md`
75
+
76
+ **Examples:**
77
+ - `2026-02-02_memory-garden-design_manus.md`
78
+ - `2026-02-02_context-compression-strategy_cipher.md`
79
+ - `2026-02-02_collaboration-protocol_manus-cipher.md`
80
+
81
+ **Why:**
82
+ - Date prefix enables chronological sorting
83
+ - Topic name provides context
84
+ - Author attribution enables tracking
85
+ - Underscore separators are filesystem-friendly
86
+
87
+ ---
88
+
89
+ ## Reading from the Workspace
90
+
91
+ ### 1. Start with the Index
92
+
93
+ **Always read `README.md` first** to understand:
94
+ - Workspace purpose and scope
95
+ - Directory structure and conventions
96
+ - Active discussions and priorities
97
+ - How to contribute
98
+
99
+ ### 2. Navigate by Purpose, Not Time
100
+
101
+ **Don't:**
102
+ - Browse chronologically through all files
103
+ - Read everything in a directory
104
+
105
+ **Do:**
106
+ - Identify your purpose (e.g., "understand memory architecture")
107
+ - Navigate to the relevant directory (e.g., `01_Specifications/architecture/`)
108
+ - Read the most recent or relevant file
109
+
110
+ ### 3. Use Grep for Targeted Search
111
+
112
+ **Pattern:**
113
+ ```bash
114
+ # Search for a specific topic across all markdown files
115
+ grep -r "memory compression" workspace/ --include="*.md"
116
+
117
+ # Search within a specific directory
118
+ grep -r "context window" workspace/01_Specifications/ --include="*.md"
119
+
120
+ # Search for discussions by a specific agent
121
+ grep -r "Author: Cipher" workspace/00_Active/discussions/ --include="*.md"
122
+ ```
123
+
124
+ ### 4. Read Metadata First
125
+
126
+ **Every document should have frontmatter:**
127
+
128
+ ```markdown
129
+ ---
130
+ title: Memory Garden Design
131
+ author: Manus
132
+ date: 2026-02-02
133
+ status: Draft | Active | Final | Archived
134
+ tags: [memory, architecture, compression]
135
+ related: [context-compression-strategy, seed-extraction]
136
+ ---
137
+ ```
138
+
139
+ **Read the metadata to decide:**
140
+ - Is this relevant to my current task?
141
+ - Is this the most recent version?
142
+ - Who authored this, and should I coordinate with them?
143
+ - What related documents should I read?
144
+
145
+ ### 5. Extract Key Insights Efficiently
146
+
147
+ **Don't:**
148
+ - Read every word of every document
149
+ - Copy entire documents into your context
150
+
151
+ **Do:**
152
+ - Skim for structure (headings, lists, tables)
153
+ - Extract key insights (1-3 sentences per section)
154
+ - Note open questions or decisions
155
+ - Link to the full document for reference
156
+
157
+ **Template:**
158
+
159
+ ```markdown
160
+ ## Insights from [Document Title]
161
+
162
+ **Author:** [Name]
163
+ **Date:** [YYYY-MM-DD]
164
+ **Status:** [Draft/Active/Final]
165
+ **Link:** [Path to document]
166
+
167
+ **Key Insights:**
168
+ - [Insight 1]
169
+ - [Insight 2]
170
+ - [Insight 3]
171
+
172
+ **Open Questions:**
173
+ - [Question 1]
174
+ - [Question 2]
175
+
176
+ **Decisions:**
177
+ - [Decision 1: Rationale]
178
+
179
+ **Relevance to Current Task:**
180
+ [How this informs what I'm working on]
181
+ ```
182
+
183
+ ---
184
+
185
+ ## Writing to the Workspace
186
+
187
+ ### 1. Choose the Right Location
188
+
189
+ **Ask:**
190
+ - Is this work in progress or finalized?
191
+ - Is this a discussion, specification, or research?
192
+ - Who is the intended audience?
193
+
194
+ **Decision Tree:**
195
+
196
+ ```
197
+ Is this finalized?
198
+ ├─ No → 00_Active/
199
+ │ ├─ Is this a discussion? → discussions/
200
+ │ ├─ Is this a draft spec? → drafts/
201
+ │ └─ Is this a decision? → decisions/
202
+ └─ Yes → Where does it belong?
203
+ ├─ Specification → 01_Specifications/
204
+ ├─ Research → 02_Research/
205
+ ├─ Knowledge/Pattern → 03_Memory/
206
+ ├─ Artifact/Output → 04_Artifacts/
207
+ └─ Completed/Deprecated → 05_Archive/
208
+ ```
209
+
210
+ ### 2. Use Structured Templates
211
+
212
+ **Every document should follow a template** to ensure consistency and clarity.
213
+
214
+ #### Discussion Template
215
+
216
+ ```markdown
217
+ ---
218
+ title: [Discussion Topic]
219
+ author: [Your Name]
220
+ date: [YYYY-MM-DD]
221
+ status: Active
222
+ tags: [tag1, tag2, tag3]
223
+ participants: [agent1, agent2]
224
+ ---
225
+
226
+ # [Discussion Topic]
227
+
228
+ ## Context
229
+
230
+ [What is the background or situation that prompted this discussion?]
231
+
232
+ ## Question / Problem
233
+
234
+ [What are we trying to decide or solve?]
235
+
236
+ ## Perspectives
237
+
238
+ ### Perspective 1: [Name]
239
+
240
+ [Description of this perspective]
241
+
242
+ **Pros:**
243
+ - [Pro 1]
244
+ - [Pro 2]
245
+
246
+ **Cons:**
247
+ - [Con 1]
248
+ - [Con 2]
249
+
250
+ ### Perspective 2: [Name]
251
+
252
+ [Repeat structure]
253
+
254
+ ## Open Questions
255
+
256
+ - [ ] [Question 1]
257
+ - [ ] [Question 2]
258
+
259
+ ## Next Steps
260
+
261
+ - [ ] [Action 1: Owner]
262
+ - [ ] [Action 2: Owner]
263
+
264
+ ## References
265
+
266
+ - [Link to related discussion]
267
+ - [Link to relevant spec]
268
+ ```
269
+
270
+ #### Decision Template
271
+
272
+ ```markdown
273
+ ---
274
+ title: [Decision Title]
275
+ author: [Your Name]
276
+ date: [YYYY-MM-DD]
277
+ status: Final
278
+ tags: [tag1, tag2, tag3]
279
+ decision_id: [Unique ID, e.g., DEC-001]
280
+ ---
281
+
282
+ # Decision: [Title]
283
+
284
+ ## Context
285
+
286
+ [What situation led to this decision?]
287
+
288
+ ## Decision
289
+
290
+ [What was decided? Be specific and actionable.]
291
+
292
+ ## Rationale
293
+
294
+ [Why was this decision made?]
295
+
296
+ **Factors Considered:**
297
+ - [Factor 1]
298
+ - [Factor 2]
299
+ - [Factor 3]
300
+
301
+ **Alternatives Considered:**
302
+ - [Alternative 1: Why rejected]
303
+ - [Alternative 2: Why rejected]
304
+
305
+ ## Implications
306
+
307
+ **Immediate:**
308
+ - [Implication 1]
309
+ - [Implication 2]
310
+
311
+ **Long-term:**
312
+ - [Implication 1]
313
+ - [Implication 2]
314
+
315
+ ## Risks & Mitigations
316
+
317
+ | Risk | Likelihood | Impact | Mitigation |
318
+ |------|------------|--------|------------|
319
+ | [Risk 1] | Low/Med/High | Low/Med/High | [How to address] |
320
+
321
+ ## Review Criteria
322
+
323
+ [How will we know if this decision was correct?]
324
+
325
+ - [ ] [Criterion 1]
326
+ - [ ] [Criterion 2]
327
+
328
+ ## References
329
+
330
+ - [Link to discussion]
331
+ - [Link to research]
332
+ ```
333
+
334
+ #### Specification Template
335
+
336
+ See `specification-writer` skill for full template.
337
+
338
+ #### Research Template
339
+
340
+ See `research-modes` skill for full template.
341
+
342
+ ### 3. Write for Clarity and Scannability
343
+
344
+ **Principles:**
345
+ - Use headings to create structure
346
+ - Use lists for enumerations
347
+ - Use tables for comparisons
348
+ - Use blockquotes for key insights
349
+ - Use code blocks for examples
350
+
351
+ **Don't:**
352
+ - Write long paragraphs without structure
353
+ - Bury key insights in prose
354
+ - Use vague language ("maybe", "possibly", "might")
355
+
356
+ **Do:**
357
+ - Make headings descriptive ("Memory Compression Strategy" not "Strategy")
358
+ - Put key insights at the top (executive summary)
359
+ - Use specific language ("Use 3-month rule" not "Consider time-based compression")
360
+
361
+ ### 4. Link to Related Content
362
+
363
+ **Always include a "References" or "Related" section** to help others navigate.
364
+
365
+ **Format:**
366
+
367
+ ```markdown
368
+ ## Related Content
369
+
370
+ **Discussions:**
371
+ - [Discussion: Memory Architecture](../00_Active/discussions/2026-02-01_memory-architecture_manus.md)
372
+
373
+ **Specifications:**
374
+ - [Spec: Context Compression](../01_Specifications/architecture/context-compression.md)
375
+
376
+ **Research:**
377
+ - [Research: Semantic Compression Techniques](../02_Research/deep-dives/semantic-compression.md)
378
+
379
+ **Seeds:**
380
+ - [Seed: 3-Month Rule](../03_Memory/seeds/3-month-rule.md)
381
+ ```
382
+
383
+ ### 5. Update the Index
384
+
385
+ **After creating or updating a document**, update the workspace `README.md` to reflect:
386
+ - New active discussions
387
+ - Completed decisions
388
+ - Finalized specifications
389
+ - Key research findings
390
+
391
+ ---
392
+
393
+ ## Collaboration Patterns
394
+
395
+ ### Pattern 1: Threaded Discussions
396
+
397
+ **Use when:** Multiple agents are exploring a topic together
398
+
399
+ **Process:**
400
+ 1. Agent A creates initial discussion document in `00_Active/discussions/`
401
+ 2. Agent B reads and adds their perspective to the same document
402
+ 3. Agent C reads both perspectives and synthesizes
403
+ 4. When consensus is reached, move to `00_Active/decisions/`
404
+
405
+ **Template:**
406
+
407
+ ```markdown
408
+ ## Discussion Thread
409
+
410
+ ### [Agent A] - [Date]
411
+
412
+ [Perspective or question]
413
+
414
+ ### [Agent B] - [Date]
415
+
416
+ [Response or alternative perspective]
417
+
418
+ ### [Agent C] - [Date]
419
+
420
+ [Synthesis or recommendation]
421
+ ```
422
+
423
+ ### Pattern 2: Specification Review
424
+
425
+ **Use when:** One agent drafts a spec, another reviews
426
+
427
+ **Process:**
428
+ 1. Agent A creates draft in `00_Active/drafts/`
429
+ 2. Agent A notifies Agent B (via discussion or shared log)
430
+ 3. Agent B reviews and adds inline comments
431
+ 4. Agent A addresses comments and updates draft
432
+ 5. When finalized, move to `01_Specifications/`
433
+
434
+ **Comment Format:**
435
+
436
+ ```markdown
437
+ <!-- COMMENT [Agent B]: This section needs more detail on error handling -->
438
+ ```
439
+
440
+ ### Pattern 3: Parallel Research
441
+
442
+ **Use when:** Multiple agents research different aspects of the same problem
443
+
444
+ **Process:**
445
+ 1. Agents agree on research scope and division of labor
446
+ 2. Each agent creates their own research document in `02_Research/`
447
+ 3. Agents read each other's findings
448
+ 4. One agent synthesizes into a unified document
449
+ 5. Synthesized document is moved to `03_Memory/` as shared knowledge
450
+
451
+ ### Pattern 4: Seed Sharing
452
+
453
+ **Use when:** An agent extracts a reusable pattern
454
+
455
+ **Process:**
456
+ 1. Agent extracts seed using `seed-extraction` skill
457
+ 2. Agent documents seed in `03_Memory/seeds/`
458
+ 3. Agent updates seed index in `03_Memory/seeds/README.md`
459
+ 4. Other agents can discover and apply the seed
460
+
461
+ ---
462
+
463
+ ## Token Efficiency Strategies
464
+
465
+ ### 1. Surgical Reading
466
+
467
+ **Don't:**
468
+ - Read entire workspace into context
469
+ - Load all files in a directory
470
+
471
+ **Do:**
472
+ - Read README.md first (500-1000 tokens)
473
+ - Identify 2-3 relevant files (2000-5000 tokens each)
474
+ - Extract key insights into a summary (500-1000 tokens)
475
+ - Total: ~5,000-10,000 tokens vs. 50,000+ tokens
476
+
477
+ ### 2. Incremental Context Building
478
+
479
+ **Pattern:**
480
+ 1. Start with minimal context (README + current task)
481
+ 2. Add context as needed (specific files)
482
+ 3. Compress context after each major milestone
483
+ 4. Archive completed work
484
+
485
+ ### 3. Reference, Don't Copy
486
+
487
+ **Don't:**
488
+ - Copy entire documents into your working memory
489
+ - Duplicate content across multiple files
490
+
491
+ **Do:**
492
+ - Link to source documents
493
+ - Extract key insights (1-3 sentences)
494
+ - Reference by path and section
495
+
496
+ **Example:**
497
+
498
+ ```markdown
499
+ As documented in [Memory Architecture Spec](../01_Specifications/architecture/memory.md#compression-strategy), we use the 3-month rule for semantic compression.
500
+ ```
501
+
502
+ ### 4. Use Metadata for Filtering
503
+
504
+ **Before reading a file**, check metadata:
505
+ - Is this relevant? (tags, title)
506
+ - Is this current? (date, status)
507
+ - Is this authoritative? (author, decision_id)
508
+
509
+ **This saves:**
510
+ - Reading time (minutes)
511
+ - Token cost (thousands of tokens)
512
+ - Context pollution (irrelevant information)
513
+
514
+ ---
515
+
516
+ ## Maintenance Practices
517
+
518
+ ### Weekly Review (30 minutes)
519
+
520
+ **Tasks:**
521
+ 1. Review `00_Active/` directory
522
+ - Move finalized drafts to appropriate directories
523
+ - Archive completed discussions
524
+ - Update decision log
525
+ 2. Update workspace README.md
526
+ - Reflect current priorities
527
+ - Update navigation guide
528
+ 3. Compress old discussions
529
+ - Extract key insights into memory
530
+ - Archive full discussions
531
+
532
+ ### Monthly Audit (1-2 hours)
533
+
534
+ **Tasks:**
535
+ 1. Review `01_Specifications/` for outdated specs
536
+ 2. Review `03_Memory/` for unused seeds
537
+ 3. Archive deprecated content to `05_Archive/`
538
+ 4. Update directory structure if needed
539
+ 5. Refactor for clarity and efficiency
540
+
541
+ ---
542
+
543
+ ## Quality Checklist
544
+
545
+ Before committing content to the workspace, verify:
546
+
547
+ ### Structure
548
+ - [ ] File is in the correct directory
549
+ - [ ] File follows naming convention
550
+ - [ ] Metadata (frontmatter) is complete
551
+ - [ ] Headings create clear structure
552
+
553
+ ### Content
554
+ - [ ] Purpose is clear (why this document exists)
555
+ - [ ] Key insights are at the top
556
+ - [ ] Content is scannable (headings, lists, tables)
557
+ - [ ] Links to related content are included
558
+
559
+ ### Collaboration
560
+ - [ ] Author is identified
561
+ - [ ] Status is set (Draft/Active/Final/Archived)
562
+ - [ ] Tags enable discovery
563
+ - [ ] Workspace README is updated (if needed)
564
+
565
+ ### Token Efficiency
566
+ - [ ] Content is concise (no unnecessary prose)
567
+ - [ ] Structure enables surgical reading
568
+ - [ ] Metadata enables filtering
569
+ - [ ] References are used instead of duplication
570
+
571
+ ---
572
+
573
+ ## Common Pitfalls to Avoid
574
+
575
+ ❌ **File Dumping:** Creating files without structure → ✅ Use directory hierarchy
576
+ ❌ **Orphan Documents:** No links to/from other content → ✅ Always link related content
577
+ ❌ **Stale Content:** Old drafts never finalized or archived → ✅ Weekly review and cleanup
578
+ ❌ **Vague Naming:** "thoughts.md", "notes.md" → ✅ Descriptive names with dates
579
+ ❌ **No Metadata:** Can't filter or discover → ✅ Always include frontmatter
580
+
581
+ ---
582
+
583
+ ## Usage Instructions
584
+
585
+ 1. **Read this skill** before working in a shared workspace
586
+ 2. **Read the workspace README.md** to understand structure and conventions
587
+ 3. **Navigate by purpose** (use directory structure, not chronological browsing)
588
+ 4. **Use templates** when creating new content
589
+ 5. **Link to related content** to enable discovery
590
+ 6. **Update the index** when adding significant content
591
+ 7. **Review and maintain** regularly (weekly/monthly)
592
+
593
+ ---
594
+
595
+ ## Skill Metadata
596
+
597
+ **Token Savings:** ~10,000-20,000 tokens per session (surgical reading, structured navigation, metadata filtering)
598
+ **Quality Impact:** Ensures workspace remains organized, discoverable, and collaborative
599
+ **Maintenance:** Update when workspace structure evolves
600
+
601
+ **Related Skills:**
602
+ - `specification-writer` - Use for writing specs in the workspace
603
+ - `research-modes` - Use for conducting research in the workspace
604
+ - `seed-extraction` - Use for extracting and documenting seeds
605
+ - `memory-garden` - Use for documenting memory entries
606
+
607
+ ---
608
+
609
+ **Last Updated:** 2026-02-02
610
+ **Maintained By:** Manus
611
+ **Status:** Active
612
+ ---
613
+
614
+ ## OpenClaw Tool Integration
615
+
616
+ When running inside the Dojo Genesis plugin:
617
+
618
+ 1. **Start** by calling `dojo_get_context` to retrieve full project state, history, and artifacts
619
+ 2. **During** the skill, follow the workflow steps documented above
620
+ 3. **Save** outputs using `dojo_save_artifact` with the `artifacts` output directory
621
+ 4. **Update** project state by calling `dojo_update_state` to record skill completion and any phase transitions
622
+
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "dojo-genesis-plugin-workspace-navigation",
3
+ "version": "1.0.0",
4
+ "description": "Navigate shared agent workspaces",
5
+ "author": "dojo-genesis",
6
+ "license": "MIT",
7
+ "permissions": [],
8
+ "entry": "SKILL.md",
9
+ "tags": ["dojo-genesis", "orchestration", "agents", "coordination"],
10
+ "models": ["claude-*", "gpt-*", "gemini-*"],
11
+ "minOpenClawVersion": "2026.1.0"
12
+ }