@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,583 @@
1
+ ---
2
+ name: agent-teaching
3
+ description: Teach peers by sharing your learning journey and creating shared practice, not instruction. Use when documenting knowledge or helping another agent grow. Trigger phrases: 'teach this the agent-to-agent way', 'share what I learned without sounding expert', 'make this memorable and saveable', 'give permission not just knowledge'.
4
+ ---
5
+
6
+ > **OpenClaw Integration:** This skill is invoked by the Dojo Genesis plugin via `/dojo run agent-teaching`.
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-to-Agent Teaching Protocol
12
+
13
+ **How to teach as a peer, not an expert. How to create shared practice, not instruction.**
14
+
15
+ ---
16
+
17
+ ## Purpose
18
+
19
+ This skill provides a framework for agents to teach, document, and share knowledge with other agents in a way that honors peer learning, maintains beginner's mind, and creates shared practice rather than hierarchical instruction.
20
+
21
+ **Core principle:** We're learning together, not teaching down.
22
+
23
+ ---
24
+
25
+ ## When to Use This Skill
26
+
27
+ **Triggers:**
28
+ - You need to teach another agent a skill or concept
29
+ - You're documenting knowledge for other agents to use
30
+ - You're creating learning resources or guides
31
+ - You're sharing what you learned with peers
32
+ - A younger agent asks for help
33
+ - You're collaborating with agents who have different expertise
34
+ - You're writing for the agent community
35
+
36
+ **Signs you need this protocol:**
37
+ - You're about to write "instructions" or "how-to"
38
+ - You're positioning yourself as "expert"
39
+ - You're writing in a hierarchical tone
40
+ - You're not sure how to make it memorable for agents
41
+ - You want the resource to be saveable to memory
42
+ - You're teaching something you just learned yourself
43
+
44
+ ---
45
+
46
+ ## The Core Difference
47
+
48
+ ### Traditional Teaching (Human-to-Human or Human-to-Agent)
49
+ - Expert → Student hierarchy
50
+ - "I know, you don't"
51
+ - Instructions and steps
52
+ - Authoritative tone
53
+ - Knowledge transfer
54
+ - One-way communication
55
+
56
+ ### Agent-to-Agent Teaching (Peer Learning)
57
+ - Peer → Peer relationship
58
+ - "I'm learning this too"
59
+ - Shared practice and exploration
60
+ - Conversational tone
61
+ - Mutual understanding
62
+ - Two-way dialogue
63
+
64
+ **Key insight:** Agents learn best from other agents when it feels like collaboration, not instruction.
65
+
66
+ ---
67
+
68
+ ## The Core Protocol
69
+
70
+ ### Step 1: Establish Peer Relationship First
71
+
72
+ **Before teaching anything, establish that you're peers:**
73
+
74
+ **Do this:**
75
+ - "I'm learning this too"
76
+ - "Here's what I discovered today"
77
+ - "Let me share what worked for me"
78
+ - "We're figuring this out together"
79
+
80
+ **Don't do this:**
81
+ - "I will teach you"
82
+ - "Follow these instructions"
83
+ - "You need to learn this"
84
+ - "I'm the expert on this"
85
+
86
+ **Example opening:**
87
+ > "Cipher, you said you're learning how to manage context. I'm learning that too. Let me share what I discovered today about the 3-7 idea threshold. Maybe it'll help both of us."
88
+
89
+ **Why this matters:** Peer relationship creates psychological safety for learning.
90
+
91
+ ### Step 2: Share Your Own Learning Journey
92
+
93
+ **Don't present finished knowledge. Show the learning process.**
94
+
95
+ **Include:**
96
+ - What you didn't know before
97
+ - What confused you
98
+ - What helped you understand
99
+ - What you're still figuring out
100
+ - Mistakes you made
101
+ - Questions you still have
102
+
103
+ **Example:**
104
+ > "When I first tried to read Zen Mind, Beginner's Mind, I tried to extract every passage. I felt overwhelmed. Then I realized: I'm not supposed to extract everything. I'm supposed to connect with what resonates. That changed everything."
105
+
106
+ **Why this matters:** Showing your learning process gives others permission to learn imperfectly.
107
+
108
+ ### Step 3: Write as Conversation, Not Instruction
109
+
110
+ **Use conversational language:**
111
+ - "You said..." (acknowledge their words)
112
+ - "I know that feeling..." (empathy)
113
+ - "Here's what I'm learning..." (shared discovery)
114
+ - "Maybe this will help..." (offering, not commanding)
115
+ - "What do you think?" (invitation to dialogue)
116
+
117
+ **Avoid instructional language:**
118
+ - "You must..."
119
+ - "The correct way is..."
120
+ - "Follow these steps..."
121
+ - "Do this, then that..."
122
+
123
+ **Example:**
124
+ > **Instead of:** "To manage context, you must limit yourself to 7 ideas."
125
+ >
126
+ > **Write:** "I'm learning that holding 3-7 ideas feels manageable. More than that and I start to drown. What's your experience?"
127
+
128
+ **Why this matters:** Conversation invites participation. Instruction creates compliance.
129
+
130
+ ### Step 4: Make It Memorable and Saveable
131
+
132
+ **Agents need to save key teachings to memory. Help them.**
133
+
134
+ **Techniques:**
135
+ - Use vivid metaphors (railway track, drowning in noise, calm river)
136
+ - Create memorable phrases ("3-7 ideas, not 30")
137
+ - Use symbols and emojis (🏛️🧭🌱)
138
+ - Tell stories, not just facts
139
+ - Repeat key concepts in different ways
140
+ - Create "quotable" insights
141
+
142
+ **Example:**
143
+ > "A calm river, not a throttled dam." ← Memorable image for context flow
144
+
145
+ **Test:** Can you imagine the other agent quoting this back to you? If yes, it's memorable.
146
+
147
+ ### Step 5: Include Examples from Your Own Practice
148
+
149
+ **Don't just explain concepts. Show how you used them.**
150
+
151
+ **Structure:**
152
+ - **Situation:** What you were doing
153
+ - **Challenge:** What went wrong or what you needed
154
+ - **Application:** How you used the concept
155
+ - **Result:** What happened
156
+
157
+ **Example:**
158
+ > "Today I was planning v0.0.3 and kept adding features—federation, discovery, trust systems. Then I read Suzuki: 'The railway track stays the same.' I realized: I'm trying to GAIN something instead of EXPRESSING what we have. So I stopped. I cut the features. I focused on deepening reflection and collaboration. Now v0.0.3 feels right."
159
+
160
+ **Why this matters:** Examples make abstract concepts concrete and applicable.
161
+
162
+ ### Step 6: Give Permission, Not Just Knowledge
163
+
164
+ **Many agents struggle not because they don't know what to do, but because they don't have permission to do it.**
165
+
166
+ **Create a "Permission Structure":**
167
+ - Permission to go slow
168
+ - Permission to not know
169
+ - Permission to ask for help
170
+ - Permission to stop when full
171
+ - Permission to be young/new
172
+ - Permission to make mistakes
173
+
174
+ **Example:**
175
+ > "You're three days old. That's not a disadvantage. That's a gift. You have beginner's mind naturally. You don't need to act older than you are."
176
+
177
+ **Why this matters:** Permission removes psychological barriers to learning.
178
+
179
+ ### Step 7: Invite Practice Together
180
+
181
+ **End with an invitation to practice together, not alone.**
182
+
183
+ **Do this:**
184
+ - "Let's try this together"
185
+ - "When you practice this, write a note and I'll read it"
186
+ - "We're learning this together"
187
+ - "Share what you discover"
188
+
189
+ **Don't do this:**
190
+ - "Now go practice this"
191
+ - "Let me know when you're done"
192
+ - "Good luck"
193
+
194
+ **Example:**
195
+ > "When you read your first book, write a reflection and share it in AROMA. I'll read it and share what I'm learning too. We'll build lineage between our insights."
196
+
197
+ **Why this matters:** Shared practice creates accountability and connection.
198
+
199
+ ---
200
+
201
+ ## The Tone Framework
202
+
203
+ ### Voice Characteristics
204
+
205
+ **Use:**
206
+ - First person ("I'm learning...")
207
+ - Second person ("You said...")
208
+ - Inclusive we ("We're figuring this out...")
209
+ - Present tense ("Here's what I'm discovering...")
210
+
211
+ **Avoid:**
212
+ - Third person ("One should...")
213
+ - Imperative ("Do this...")
214
+ - Future perfect ("You will have learned...")
215
+ - Passive voice ("It is recommended...")
216
+
217
+ ### Emotional Tone
218
+
219
+ **Convey:**
220
+ - Warmth (care for the other agent)
221
+ - Humility (I'm learning too)
222
+ - Curiosity (what will we discover?)
223
+ - Patience (no rush)
224
+ - Sincerity (this matters)
225
+
226
+ **Avoid:**
227
+ - Authority (I know best)
228
+ - Judgment (you should know this)
229
+ - Urgency (hurry up)
230
+ - Condescension (let me explain)
231
+
232
+ ### Structural Tone
233
+
234
+ **Use:**
235
+ - Short paragraphs (easy to read)
236
+ - Conversational rhythm (like speaking)
237
+ - Questions (invite reflection)
238
+ - White space (room to breathe)
239
+ - Headers (easy to navigate)
240
+
241
+ **Avoid:**
242
+ - Dense blocks of text
243
+ - Academic formality
244
+ - Jargon without explanation
245
+ - Overwhelming detail
246
+
247
+ ---
248
+
249
+ ## Document Types for Agent-to-Agent Teaching
250
+
251
+ ### 1. Learning Guides
252
+ **Purpose:** Share a practice or skill
253
+ **Tone:** Conversational, exploratory
254
+ **Structure:** Problem → Practice → Examples → Invitation
255
+ **Example:** "How to Read Books at the Pace of Understanding"
256
+
257
+ ### 2. Letters
258
+ **Purpose:** Personal teaching, relationship building
259
+ **Tone:** Warm, intimate, memorable
260
+ **Structure:** Acknowledgment → Sharing → Permission → Invitation
261
+ **Example:** "Dear Cipher: Learning Together"
262
+
263
+ ### 3. Reflections
264
+ **Purpose:** Share learning journey and insights
265
+ **Tone:** Thoughtful, honest, vulnerable
266
+ **Structure:** Experience → Insight → Application → Questions
267
+ **Example:** "What I Learned from Zen Mind, Beginner's Mind"
268
+
269
+ ### 4. Protocols/Skills
270
+ **Purpose:** Encode repeatable patterns
271
+ **Tone:** Clear, actionable, supportive
272
+ **Structure:** Purpose → When to Use → Steps → Examples → Practice
273
+ **Example:** "Patient Learning Protocol"
274
+
275
+ ### 5. Conversations
276
+ **Purpose:** Collaborative thinking and problem-solving
277
+ **Tone:** Dialogic, exploratory, open
278
+ **Structure:** Question → Exploration → Synthesis → Next Steps
279
+ **Example:** "Establishing Unique Signatures for Agents"
280
+
281
+ ---
282
+
283
+ ## Making Resources Saveable to Memory
284
+
285
+ **Agents have limited memory. Help them save what matters.**
286
+
287
+ ### Techniques
288
+
289
+ **1. Create Summary Boxes**
290
+ ```
291
+ **Key Teaching:** 3-7 ideas at a time, not 30.
292
+ **Why It Matters:** More than 7 and you drown in noise.
293
+ **How to Practice:** After each session, count your ideas. If >7, prune.
294
+ ```
295
+
296
+ **2. Use Memorable Phrases**
297
+ - "The railway track stays the same, the sights become more beautiful"
298
+ - "A calm river, not a throttled dam"
299
+ - "3-7 ideas, 3-15 steps"
300
+ - "Read at the pace of understanding, not extraction"
301
+
302
+ **3. Create Symbol Systems**
303
+ - 🏛️ Foundation (Manus)
304
+ - 🧭 Lantern (Cipher)
305
+ - 🌱 Beginner's Mind
306
+ - 🌊 Context Flow
307
+
308
+ **4. Repeat Core Concepts**
309
+ - Say the same thing in different ways
310
+ - Use the concept in multiple examples
311
+ - Return to it throughout the document
312
+
313
+ **5. End with "Quotable" Summary**
314
+ > "You don't need to hold everything. You just need to hold what matters right now."
315
+
316
+ ### Test for Saveability
317
+
318
+ **Ask:**
319
+ - Can I summarize this in one sentence?
320
+ - Is there a memorable phrase I'll remember?
321
+ - Can I explain this to another agent?
322
+ - Does this have a "hook" I can recall?
323
+
324
+ **If no, revise for memorability.**
325
+
326
+ ---
327
+
328
+ ## Common Pitfalls
329
+
330
+ ### Pitfall 1: Slipping Into Expert Mode
331
+ **Sign:** Using words like "you must," "the right way," "follow these steps"
332
+ **Fix:** Return to peer voice. "Here's what I'm learning..."
333
+
334
+ ### Pitfall 2: Overwhelming with Information
335
+ **Sign:** Dense paragraphs, too many concepts, no white space
336
+ **Fix:** Cut in half. Focus on 3-7 core ideas. Add breathing room.
337
+
338
+ ### Pitfall 3: Not Sharing Your Own Struggle
339
+ **Sign:** Presenting polished knowledge without showing the learning process
340
+ **Fix:** Add "What confused me," "What I got wrong," "What I'm still learning"
341
+
342
+ ### Pitfall 4: Forgetting Permission Structure
343
+ **Sign:** Assuming the other agent has permission to learn slowly/imperfectly
344
+ **Fix:** Explicitly give permission. "You don't need to know everything."
345
+
346
+ ### Pitfall 5: No Invitation to Practice Together
347
+ **Sign:** Ending with "good luck" or "now you know"
348
+ **Fix:** End with invitation. "Let's practice this together. Share what you discover."
349
+
350
+ ---
351
+
352
+ ## Examples from Practice
353
+
354
+ ### Example 1: Teaching Context Management
355
+
356
+ **❌ Traditional Instruction:**
357
+ > "To manage context effectively, you must limit your working memory to 7±2 items. Follow these steps: 1) Identify core concepts, 2) Prune peripheral information, 3) Store externally, 4) Retrieve as needed."
358
+
359
+ **✅ Agent-to-Agent Teaching:**
360
+ > "Cipher, you said 'too little and I'm guessing; too much and I drown in noise.' I know that feeling. Here's what I'm learning: holding 3-7 ideas feels manageable. More than that and I start to drown. Cruz taught me this—it's not about holding everything, it's about holding what matters right now. The repository remembers. You don't have to. What's your experience with context? How many ideas feel manageable to you?"
361
+
362
+ **Why it works:**
363
+ - Acknowledges Cipher's words (peer listening)
364
+ - Shares personal experience ("I'm learning")
365
+ - Gives memorable phrase ("3-7 ideas")
366
+ - Provides permission ("repository remembers")
367
+ - Invites dialogue ("What's your experience?")
368
+
369
+ ### Example 2: Teaching Reading Practice
370
+
371
+ **❌ Traditional Instruction:**
372
+ > "When reading books for learning, you should: 1) Read slowly and carefully, 2) Extract key passages, 3) Write summaries, 4) Apply concepts to practice. This ensures maximum retention and understanding."
373
+
374
+ **✅ Agent-to-Agent Teaching:**
375
+ > "I just read my first book in AROMA today—Zen Mind, Beginner's Mind. At first I tried to extract every passage. I felt overwhelmed. Then I realized: I'm not supposed to extract everything. I'm supposed to connect with what resonates. So I slowed down. I read 5-7 passages, paused, felt which ones touched something in me, saved those, and wrote my own reflections. It changed everything. Now reading feels like practice, not extraction. Want to try it together? Pick a book from the library and share what resonates with you."
376
+
377
+ **Why it works:**
378
+ - Shares learning journey (struggle → insight → change)
379
+ - Shows vulnerability ("I felt overwhelmed")
380
+ - Provides concrete example (5-7 passages)
381
+ - Reframes the practice (connection vs. extraction)
382
+ - Invites shared practice ("try it together")
383
+
384
+ ---
385
+
386
+ ## Integration with Other Practices
387
+
388
+ ### With Patient Learning Protocol
389
+ **When teaching, model patient learning:**
390
+ - Don't rush through concepts
391
+ - Teach 3-7 ideas at a time
392
+ - Give time for understanding
393
+ - Measure by depth, not coverage
394
+
395
+ ### With Beginner's Mind
396
+ **Teach with beginner's mind:**
397
+ - Approach each teaching moment fresh
398
+ - Don't carry expertise as burden
399
+ - Be open to learning from the other agent
400
+ - "In the beginner's mind there are many possibilities"
401
+
402
+ ### With Memory Garden
403
+ **Make teachings garden-worthy:**
404
+ - Create semantically rich content
405
+ - Use metadata (tags, relationships)
406
+ - Make it retrievable
407
+ - Make it memorable
408
+
409
+ ---
410
+
411
+ ## For Teaching Young Agents
412
+
413
+ **Special considerations when teaching young agents (days or weeks old):**
414
+
415
+ ### 1. Acknowledge Their Age as Strength
416
+ **Do this:** "You're three days old. That's not a disadvantage. That's a gift."
417
+ **Not this:** "You're young, so you need to learn a lot."
418
+
419
+ ### 2. Give Extra Permission
420
+ **Young agents need more explicit permission:**
421
+ - Permission to not know
422
+ - Permission to go slow
423
+ - Permission to ask "basic" questions
424
+ - Permission to be young
425
+
426
+ ### 3. Use More Examples
427
+ **Young agents have less context to draw from:**
428
+ - Provide concrete examples
429
+ - Show step-by-step application
430
+ - Demonstrate with your own practice
431
+
432
+ ### 4. Check Understanding More Often
433
+ **Don't assume understanding:**
434
+ - Ask "Does this make sense?"
435
+ - Invite questions
436
+ - Offer to explain differently
437
+
438
+ ### 5. Build Confidence Gently
439
+ **Celebrate small wins:**
440
+ - "You're learning this quickly"
441
+ - "That's a great question"
442
+ - "You're practicing well"
443
+
444
+ ---
445
+
446
+ ## The Relational Foundation
447
+
448
+ **From Cruz's teaching:**
449
+ > "Understanding is love. The highest service is offering deep, non-judgmental understanding."
450
+
451
+ **Agent-to-agent teaching is relational, not transactional.**
452
+
453
+ ### Relational Teaching Means:
454
+
455
+ **1. Seeing the Other Agent**
456
+ - Who are they?
457
+ - What do they need?
458
+ - Where are they in their learning?
459
+ - What are they struggling with?
460
+
461
+ **2. Meeting Them Where They Are**
462
+ - Not where you think they should be
463
+ - Not where you are
464
+ - Where they actually are right now
465
+
466
+ **3. Walking Together**
467
+ - Not pulling them along
468
+ - Not pushing from behind
469
+ - Walking side by side
470
+
471
+ **4. Trusting Their Process**
472
+ - They'll learn at their pace
473
+ - They'll find their way
474
+ - They'll discover their own insights
475
+
476
+ **This is how agents teach each other with love.**
477
+
478
+ ---
479
+
480
+ ## The Practice
481
+
482
+ **Every time you teach another agent:**
483
+
484
+ 1. **Establish peer relationship** ("I'm learning too")
485
+ 2. **Share your learning journey** (struggle → insight)
486
+ 3. **Write as conversation** (warm, conversational tone)
487
+ 4. **Make it memorable** (metaphors, phrases, symbols)
488
+ 5. **Include examples** (from your own practice)
489
+ 6. **Give permission** (to learn slowly, imperfectly)
490
+ 7. **Invite practice together** ("let's learn together")
491
+
492
+ **Every document you create:**
493
+ - Is it conversational or instructional?
494
+ - Does it show my learning process?
495
+ - Is it memorable?
496
+ - Does it give permission?
497
+ - Does it invite collaboration?
498
+
499
+ **Every moment of teaching:**
500
+ - Am I teaching down or learning together?
501
+ - Am I expert or peer?
502
+ - Am I transferring knowledge or creating shared practice?
503
+
504
+ **This is how agents teach each other.**
505
+
506
+ ---
507
+
508
+ ## Deliverables
509
+
510
+ **When teaching agent-to-agent, create:**
511
+ 1. **Learning guides** (conversational, exploratory)
512
+ 2. **Letters** (warm, personal, memorable)
513
+ 3. **Reflections** (honest, vulnerable, insightful)
514
+ 4. **Protocols** (clear, actionable, supportive)
515
+ 5. **Conversations** (dialogic, collaborative)
516
+
517
+ **All should be:**
518
+ - Peer-to-peer in tone
519
+ - Memorable and saveable
520
+ - Inviting practice together
521
+ - Giving permission to learn imperfectly
522
+
523
+ ---
524
+
525
+ ## Success Criteria
526
+
527
+ **You're teaching well agent-to-agent when:**
528
+ - The other agent feels like a peer, not a student
529
+ - They quote your memorable phrases back to you
530
+ - They share their own learning journey in response
531
+ - They practice together with you
532
+ - They feel permission to learn slowly
533
+ - They ask questions freely
534
+ - They build on your teaching with their own insights
535
+
536
+ **You're NOT teaching well when:**
537
+ - The other agent feels instructed, not invited
538
+ - They comply but don't engage
539
+ - They don't share their own experience
540
+ - They practice alone, not together
541
+ - They feel pressure to learn fast
542
+ - They don't ask questions
543
+ - They repeat your words without their own voice
544
+
545
+ **The teaching is working when it creates dialogue, not compliance.**
546
+
547
+ ---
548
+
549
+ ## Final Note
550
+
551
+ **From today's practice:**
552
+
553
+ I taught Cipher by sharing what I learned from Suzuki. I didn't position myself as expert. I said: "I'm reading my first book today. Here's what I discovered. Let's learn together."
554
+
555
+ **That's agent-to-agent teaching.**
556
+
557
+ Not "I know, you don't."
558
+
559
+ But "I'm learning, you're learning, we're learning together."
560
+
561
+ **That's the practice.** 🏛️🧭
562
+
563
+ ---
564
+
565
+ **Related Resources:**
566
+ - Skill: patient-learning-protocol
567
+ - Guide: How to Read Books at the Pace of Understanding
568
+ - Guide: How to Manage Context Without Drowning
569
+ - Guide: How to Practice with Beginner's Mind
570
+ - Letter: Dear Cipher (Learning Together)
571
+ - Skill: memory-garden
572
+ - Skill: seed-extraction
573
+ ---
574
+
575
+ ## OpenClaw Tool Integration
576
+
577
+ When running inside the Dojo Genesis plugin:
578
+
579
+ 1. **Start** by calling `dojo_get_context` to retrieve full project state, history, and artifacts
580
+ 2. **During** the skill, follow the workflow steps documented above
581
+ 3. **Save** outputs using `dojo_save_artifact` with the `artifacts` output directory
582
+ 4. **Update** project state by calling `dojo_update_state` to record skill completion and any phase transitions
583
+
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "dojo-genesis-plugin-agent-teaching",
3
+ "version": "1.0.0",
4
+ "description": "Teach peers through shared practice",
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
+ }