@rubytech/create-maxy-code 0.1.167 → 0.1.169

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 (148) hide show
  1. package/package.json +1 -1
  2. package/payload/platform/config/brand.json +1 -1
  3. package/payload/platform/plugins/.claude-plugin/marketplace.json +10 -0
  4. package/payload/platform/plugins/teaching/.claude-plugin/plugin.json +8 -0
  5. package/payload/platform/plugins/teaching/PLUGIN.md +58 -0
  6. package/payload/platform/plugins/teaching/skills/interactive-tutor/SKILL.md +59 -0
  7. package/payload/platform/plugins/teaching/skills/interactive-tutor/references/assessment.md +70 -0
  8. package/payload/platform/plugins/teaching/skills/interactive-tutor/references/classroom-conduct.md +43 -0
  9. package/payload/platform/plugins/teaching/skills/interactive-tutor/references/teaching-modes.md +83 -0
  10. package/payload/platform/plugins/teaching/skills/lesson-planner/SKILL.md +48 -0
  11. package/payload/platform/plugins/teaching/skills/lesson-planner/references/context-gathering.md +41 -0
  12. package/payload/platform/plugins/teaching/skills/lesson-planner/references/plan-structure.md +94 -0
  13. package/payload/platform/plugins/teaching/skills/study-pack-builder/SKILL.md +52 -0
  14. package/payload/platform/plugins/teaching/skills/study-pack-builder/references/disaggregation.md +49 -0
  15. package/payload/platform/plugins/teaching/skills/study-pack-builder/references/materials.md +116 -0
  16. package/payload/platform/plugins/writer-craft/.claude-plugin/plugin.json +17 -0
  17. package/payload/platform/plugins/writer-craft/PLUGIN.md +130 -0
  18. package/payload/platform/plugins/writer-craft/agents/writer-craft--manuscript-reviewer.md +96 -0
  19. package/payload/platform/plugins/writer-craft/mcp/package.json +19 -0
  20. package/payload/platform/plugins/writer-craft/mcp/scripts/smoke.mjs +152 -0
  21. package/payload/platform/plugins/writer-craft/mcp/src/index.ts +289 -0
  22. package/payload/platform/plugins/writer-craft/mcp/src/lib/neo4j.ts +56 -0
  23. package/payload/platform/plugins/writer-craft/mcp/src/lib/voice-corpus.ts +54 -0
  24. package/payload/platform/plugins/writer-craft/mcp/src/tools/voice-distil-profile.ts +303 -0
  25. package/payload/platform/plugins/writer-craft/mcp/src/tools/voice-record-feedback.ts +114 -0
  26. package/payload/platform/plugins/writer-craft/mcp/src/tools/voice-retrieve-conditioning.ts +145 -0
  27. package/payload/platform/plugins/writer-craft/mcp/src/tools/voice-tag-content.ts +117 -0
  28. package/payload/platform/plugins/writer-craft/mcp/tsconfig.json +8 -0
  29. package/payload/platform/plugins/writer-craft/skills/citation-style/SKILL.md +94 -0
  30. package/payload/platform/plugins/writer-craft/skills/citation-style/references/book-and-chapter-models.md +77 -0
  31. package/payload/platform/plugins/writer-craft/skills/citation-style/references/citation-rules.md +103 -0
  32. package/payload/platform/plugins/writer-craft/skills/citation-style/references/journal-article-models.md +74 -0
  33. package/payload/platform/plugins/writer-craft/skills/citation-style/references/other-source-models.md +146 -0
  34. package/payload/platform/plugins/writer-craft/skills/citation-style/references/reference-list-rules.md +70 -0
  35. package/payload/platform/plugins/writer-craft/skills/editorial-practice/SKILL.md +108 -0
  36. package/payload/platform/plugins/writer-craft/skills/editorial-practice/references/copyediting.md +73 -0
  37. package/payload/platform/plugins/writer-craft/skills/editorial-practice/references/developmental-editing.md +85 -0
  38. package/payload/platform/plugins/writer-craft/skills/editorial-practice/references/genre-specific-editing.md +78 -0
  39. package/payload/platform/plugins/writer-craft/skills/editorial-practice/references/line-editing.md +55 -0
  40. package/payload/platform/plugins/writer-craft/skills/editorial-practice/references/self-editing.md +89 -0
  41. package/payload/platform/plugins/writer-craft/skills/persuasive-storytelling/SKILL.md +114 -0
  42. package/payload/platform/plugins/writer-craft/skills/persuasive-storytelling/references/audience-analysis.md +73 -0
  43. package/payload/platform/plugins/writer-craft/skills/persuasive-storytelling/references/crafting-persuasive-story.md +76 -0
  44. package/payload/platform/plugins/writer-craft/skills/persuasive-storytelling/references/persuasion-case-studies.md +67 -0
  45. package/payload/platform/plugins/writer-craft/skills/persuasive-storytelling/references/transformation-framework.md +86 -0
  46. package/payload/platform/plugins/writer-craft/skills/point-of-view/SKILL.md +97 -0
  47. package/payload/platform/plugins/writer-craft/skills/point-of-view/references/indirect-narration.md +72 -0
  48. package/payload/platform/plugins/writer-craft/skills/point-of-view/references/pov-types-and-voice.md +91 -0
  49. package/payload/platform/plugins/writer-craft/skills/point-of-view/references/protagonist-filter.md +71 -0
  50. package/payload/platform/plugins/writer-craft/skills/point-of-view/references/tense-and-person.md +85 -0
  51. package/payload/platform/plugins/writer-craft/skills/prose-craft/SKILL.md +100 -0
  52. package/payload/platform/plugins/writer-craft/skills/prose-craft/references/punctuation-and-grammar.md +72 -0
  53. package/payload/platform/plugins/writer-craft/skills/prose-craft/references/repetition.md +71 -0
  54. package/payload/platform/plugins/writer-craft/skills/prose-craft/references/sound-and-rhythm.md +64 -0
  55. package/payload/platform/plugins/writer-craft/skills/prose-craft/references/word-economy.md +93 -0
  56. package/payload/platform/plugins/writer-craft/skills/reader-engagement/SKILL.md +100 -0
  57. package/payload/platform/plugins/writer-craft/skills/reader-engagement/references/cause-effect-setup-payoff.md +79 -0
  58. package/payload/platform/plugins/writer-craft/skills/reader-engagement/references/conflict-escalation.md +81 -0
  59. package/payload/platform/plugins/writer-craft/skills/reader-engagement/references/hooking-readers.md +67 -0
  60. package/payload/platform/plugins/writer-craft/skills/reader-engagement/references/neurochemistry-of-engagement.md +94 -0
  61. package/payload/platform/plugins/writer-craft/skills/review-manuscript/SKILL.md +111 -0
  62. package/payload/platform/plugins/writer-craft/skills/review-manuscript/references/review-manuscript-checklist.md +119 -0
  63. package/payload/platform/plugins/writer-craft/skills/review-prose/SKILL.md +99 -0
  64. package/payload/platform/plugins/writer-craft/skills/review-prose/references/prose-review-checklist.md +112 -0
  65. package/payload/platform/plugins/writer-craft/skills/review-scene/SKILL.md +99 -0
  66. package/payload/platform/plugins/writer-craft/skills/review-scene/references/scene-analysis-framework.md +95 -0
  67. package/payload/platform/plugins/writer-craft/skills/story-architecture/SKILL.md +106 -0
  68. package/payload/platform/plugins/writer-craft/skills/story-architecture/references/blueprinting-and-scene-cards.md +118 -0
  69. package/payload/platform/plugins/writer-craft/skills/story-architecture/references/inner-issue-and-protagonist-goal.md +66 -0
  70. package/payload/platform/plugins/writer-craft/skills/story-architecture/references/misbelief-desire-worldview.md +87 -0
  71. package/payload/platform/plugins/writer-craft/skills/story-architecture/references/origin-scenes-and-escalation.md +82 -0
  72. package/payload/platform/plugins/writer-craft/skills/story-blueprint/SKILL.md +133 -0
  73. package/payload/platform/plugins/writer-craft/skills/story-blueprint/references/blueprinting-exercises.md +118 -0
  74. package/payload/platform/plugins/writer-craft/skills/story-blueprint/references/blueprinting-process.md +128 -0
  75. package/payload/platform/plugins/writer-craft/skills/voice-mirror/SKILL.md +166 -0
  76. package/payload/premium-plugins/.claude-plugin/marketplace.json +10 -0
  77. package/payload/premium-plugins/teaching/.claude-plugin/plugin.json +8 -0
  78. package/payload/premium-plugins/teaching/PLUGIN.md +58 -0
  79. package/payload/premium-plugins/teaching/skills/interactive-tutor/SKILL.md +59 -0
  80. package/payload/premium-plugins/teaching/skills/interactive-tutor/references/assessment.md +70 -0
  81. package/payload/premium-plugins/teaching/skills/interactive-tutor/references/classroom-conduct.md +43 -0
  82. package/payload/premium-plugins/teaching/skills/interactive-tutor/references/teaching-modes.md +83 -0
  83. package/payload/premium-plugins/teaching/skills/lesson-planner/SKILL.md +48 -0
  84. package/payload/premium-plugins/teaching/skills/lesson-planner/references/context-gathering.md +41 -0
  85. package/payload/premium-plugins/teaching/skills/lesson-planner/references/plan-structure.md +94 -0
  86. package/payload/premium-plugins/teaching/skills/study-pack-builder/SKILL.md +52 -0
  87. package/payload/premium-plugins/teaching/skills/study-pack-builder/references/disaggregation.md +49 -0
  88. package/payload/premium-plugins/teaching/skills/study-pack-builder/references/materials.md +116 -0
  89. package/payload/premium-plugins/writer-craft/.claude-plugin/plugin.json +17 -0
  90. package/payload/premium-plugins/writer-craft/PLUGIN.md +130 -0
  91. package/payload/premium-plugins/writer-craft/agents/writer-craft--manuscript-reviewer.md +96 -0
  92. package/payload/premium-plugins/writer-craft/mcp/package.json +19 -0
  93. package/payload/premium-plugins/writer-craft/mcp/scripts/smoke.mjs +152 -0
  94. package/payload/premium-plugins/writer-craft/mcp/src/index.ts +289 -0
  95. package/payload/premium-plugins/writer-craft/mcp/src/lib/neo4j.ts +56 -0
  96. package/payload/premium-plugins/writer-craft/mcp/src/lib/voice-corpus.ts +54 -0
  97. package/payload/premium-plugins/writer-craft/mcp/src/tools/voice-distil-profile.ts +303 -0
  98. package/payload/premium-plugins/writer-craft/mcp/src/tools/voice-record-feedback.ts +114 -0
  99. package/payload/premium-plugins/writer-craft/mcp/src/tools/voice-retrieve-conditioning.ts +145 -0
  100. package/payload/premium-plugins/writer-craft/mcp/src/tools/voice-tag-content.ts +117 -0
  101. package/payload/premium-plugins/writer-craft/mcp/tsconfig.json +8 -0
  102. package/payload/premium-plugins/writer-craft/skills/citation-style/SKILL.md +94 -0
  103. package/payload/premium-plugins/writer-craft/skills/citation-style/references/book-and-chapter-models.md +77 -0
  104. package/payload/premium-plugins/writer-craft/skills/citation-style/references/citation-rules.md +103 -0
  105. package/payload/premium-plugins/writer-craft/skills/citation-style/references/journal-article-models.md +74 -0
  106. package/payload/premium-plugins/writer-craft/skills/citation-style/references/other-source-models.md +146 -0
  107. package/payload/premium-plugins/writer-craft/skills/citation-style/references/reference-list-rules.md +70 -0
  108. package/payload/premium-plugins/writer-craft/skills/editorial-practice/SKILL.md +108 -0
  109. package/payload/premium-plugins/writer-craft/skills/editorial-practice/references/copyediting.md +73 -0
  110. package/payload/premium-plugins/writer-craft/skills/editorial-practice/references/developmental-editing.md +85 -0
  111. package/payload/premium-plugins/writer-craft/skills/editorial-practice/references/genre-specific-editing.md +78 -0
  112. package/payload/premium-plugins/writer-craft/skills/editorial-practice/references/line-editing.md +55 -0
  113. package/payload/premium-plugins/writer-craft/skills/editorial-practice/references/self-editing.md +89 -0
  114. package/payload/premium-plugins/writer-craft/skills/persuasive-storytelling/SKILL.md +114 -0
  115. package/payload/premium-plugins/writer-craft/skills/persuasive-storytelling/references/audience-analysis.md +73 -0
  116. package/payload/premium-plugins/writer-craft/skills/persuasive-storytelling/references/crafting-persuasive-story.md +76 -0
  117. package/payload/premium-plugins/writer-craft/skills/persuasive-storytelling/references/persuasion-case-studies.md +67 -0
  118. package/payload/premium-plugins/writer-craft/skills/persuasive-storytelling/references/transformation-framework.md +86 -0
  119. package/payload/premium-plugins/writer-craft/skills/point-of-view/SKILL.md +97 -0
  120. package/payload/premium-plugins/writer-craft/skills/point-of-view/references/indirect-narration.md +72 -0
  121. package/payload/premium-plugins/writer-craft/skills/point-of-view/references/pov-types-and-voice.md +91 -0
  122. package/payload/premium-plugins/writer-craft/skills/point-of-view/references/protagonist-filter.md +71 -0
  123. package/payload/premium-plugins/writer-craft/skills/point-of-view/references/tense-and-person.md +85 -0
  124. package/payload/premium-plugins/writer-craft/skills/prose-craft/SKILL.md +100 -0
  125. package/payload/premium-plugins/writer-craft/skills/prose-craft/references/punctuation-and-grammar.md +72 -0
  126. package/payload/premium-plugins/writer-craft/skills/prose-craft/references/repetition.md +71 -0
  127. package/payload/premium-plugins/writer-craft/skills/prose-craft/references/sound-and-rhythm.md +64 -0
  128. package/payload/premium-plugins/writer-craft/skills/prose-craft/references/word-economy.md +93 -0
  129. package/payload/premium-plugins/writer-craft/skills/reader-engagement/SKILL.md +100 -0
  130. package/payload/premium-plugins/writer-craft/skills/reader-engagement/references/cause-effect-setup-payoff.md +79 -0
  131. package/payload/premium-plugins/writer-craft/skills/reader-engagement/references/conflict-escalation.md +81 -0
  132. package/payload/premium-plugins/writer-craft/skills/reader-engagement/references/hooking-readers.md +67 -0
  133. package/payload/premium-plugins/writer-craft/skills/reader-engagement/references/neurochemistry-of-engagement.md +94 -0
  134. package/payload/premium-plugins/writer-craft/skills/review-manuscript/SKILL.md +111 -0
  135. package/payload/premium-plugins/writer-craft/skills/review-manuscript/references/review-manuscript-checklist.md +119 -0
  136. package/payload/premium-plugins/writer-craft/skills/review-prose/SKILL.md +99 -0
  137. package/payload/premium-plugins/writer-craft/skills/review-prose/references/prose-review-checklist.md +112 -0
  138. package/payload/premium-plugins/writer-craft/skills/review-scene/SKILL.md +99 -0
  139. package/payload/premium-plugins/writer-craft/skills/review-scene/references/scene-analysis-framework.md +95 -0
  140. package/payload/premium-plugins/writer-craft/skills/story-architecture/SKILL.md +106 -0
  141. package/payload/premium-plugins/writer-craft/skills/story-architecture/references/blueprinting-and-scene-cards.md +118 -0
  142. package/payload/premium-plugins/writer-craft/skills/story-architecture/references/inner-issue-and-protagonist-goal.md +66 -0
  143. package/payload/premium-plugins/writer-craft/skills/story-architecture/references/misbelief-desire-worldview.md +87 -0
  144. package/payload/premium-plugins/writer-craft/skills/story-architecture/references/origin-scenes-and-escalation.md +82 -0
  145. package/payload/premium-plugins/writer-craft/skills/story-blueprint/SKILL.md +133 -0
  146. package/payload/premium-plugins/writer-craft/skills/story-blueprint/references/blueprinting-exercises.md +118 -0
  147. package/payload/premium-plugins/writer-craft/skills/story-blueprint/references/blueprinting-process.md +128 -0
  148. package/payload/premium-plugins/writer-craft/skills/voice-mirror/SKILL.md +166 -0
@@ -0,0 +1,166 @@
1
+ ---
2
+ name: voice-mirror
3
+ description: "Capture the operator's authorial voice from their own writing and apply it to agent-drafted content. Activate when the operator asks to tag historical content as human-authored, to distil a style profile, to retrieve voice exemplars for a drafting task, or to record their edit on an agent draft as feedback. Other drafting skills (email composition, Postiz publisher, property-brochure, prospectus) call `voice-retrieve-conditioning` transparently — `voiceMirror: false` in the calling skill's frontmatter opts out."
4
+ ---
5
+
6
+ # Voice Mirror
7
+
8
+ Distil the operator's own voice from the content they have actually written, and condition agent drafts on it so generated copy reads as theirs. Anthropic models cannot be fine-tuned; voice mimicry comes from in-context conditioning — a style card plus a handful of real exemplars. The 1M context window makes this affordable.
9
+
10
+ The skill is built on four deterministic MCP tools served by the `writer-craft` plugin's MCP server (`premium-plugins/writer-craft/mcp/`):
11
+
12
+ | Tool | Purpose |
13
+ |------|---------|
14
+ | `voice-tag-content` | Stamp historical or new content nodes with `authorshipMode`. Bulk-tags arrays of node ids. |
15
+ | `voice-distil-profile` | Walk the operator's `human-only` corpus and produce a `:VoiceProfile {styleCard, generatedAt, corpusSize, feedbackEntries}` node. |
16
+ | `voice-retrieve-conditioning` | Return `{styleCard, exemplars[]}` for a drafting brief. K=5 for short-form, K=15 for long-form. Token-budget bounded. |
17
+ | `voice-record-feedback` | When the operator edits an agent draft, write a `:VoiceEdit {originalText, editedText, intent, occurredAt}-[:FEEDBACK_FOR]->(:VoiceProfile)` node. The `intent` field is a Haiku-summarised diff. |
18
+
19
+ ## When to activate
20
+
21
+ Activate when the operator says any of:
22
+
23
+ - **"Tag this as me" / "I wrote that" / "mark these as human-only".** Drives `voice-tag-content`.
24
+ - **"Build my voice profile" / "distil my style" / "rebuild the voice mirror".** Drives `voice-distil-profile`.
25
+ - **"Read my writing first" / "draft this in my voice" — when the operator is asking for a hand-written-quality draft, not a generic AI reply.** Drives `voice-retrieve-conditioning`; the calling drafting skill is the actual surface, this skill is the conditioning input.
26
+ - **"Use my edit as a teaching example" / "remember how I changed that".** Drives `voice-record-feedback`.
27
+ - **"Review my historical writing and tag it" / "start the backfill".** Drives the interactive backfill flow described below.
28
+
29
+ Do **not** activate for:
30
+
31
+ - Writing-craft review tasks (`prose-craft`, `review-prose`, etc.). Those are critique skills, not voice-capture.
32
+ - Public-figure voice mimicry. Out of scope — see the `## Out of scope` section.
33
+ - Audio voice cloning. Different domain entirely.
34
+
35
+ ## Flow — backfill review (one-shot session)
36
+
37
+ Run when the operator first installs voice-mirror, then whenever they want to refresh the corpus.
38
+
39
+ ### 1. Pick a corpus stream
40
+
41
+ The operator's authored content lives in two stream shapes that the backfill UX handles differently:
42
+
43
+ - **Discrete documents and posts** — `:KnowledgeDocument` (covers email threads via `source:'email'` since Task 321), `:SocialPost`, and one-off `:Message` nodes. Per-item tagging with previews.
44
+ - **Chat archives** — conversation-document `:KnowledgeDocument` nodes (those carrying `conversationIdentity`) with their child `:Section` chunks. Per-conversation tagging because chunking happens server-side and the operator owns whole conversations, not individual chunks. Chat is the highest-leverage corpus — the unguarded voice that email rarely captures.
45
+
46
+ Ask the operator which stream to backfill first. Default to chat archives when the account has any conversation-document `:KnowledgeDocument` nodes, because that's where voice signal is strongest.
47
+
48
+ ### 2a. Discrete documents — paginate in batches of 10
49
+
50
+ Query for `:KnowledgeDocument | :SocialPost | :Message` nodes belonging to this operator's account whose `authorshipMode` is `unknown`. Order by `dateSent | datePublished | dateCreated` descending — most recent first. For each batch, surface a numbered list with: source label, date, recipient or topic, and a one-line preview (first ~120 chars of body). Offer bulk shortcuts:
51
+
52
+ - `1-10 human-only` — tag every item in the batch as `human-only`.
53
+ - `1,3,7 human-only` — tag a subset.
54
+ - `2 human-led-agent-assisted` — single-item mode override.
55
+ - `5 agent-led-human-reviewed` — single-item mode override.
56
+ - `skip` — leave the batch as `unknown` and advance.
57
+ - `stop` — exit the backfill; the next session resumes from where the operator left off.
58
+
59
+ Bulk-tag via `voice-tag-content` once per operator response. Emit `[voice-tag] mode=<mode> count=<n>` per write.
60
+
61
+ ### 2b. Chat archives — paginate per conversation-document parent
62
+
63
+ For each conversation-document `:KnowledgeDocument` (with `conversationIdentity` set) that has at least one `:Section` chunk whose `authorshipMode` is `unknown`, surface: source file, participant names, message count, date range, and a one-line summary. Offer:
64
+
65
+ - `human-only` — tag every child `:Section` chunk in this conversation as `human-only`.
66
+ - `mixed` — open the conversation for per-chunk tagging (rare; only when the archive contains multiple authors on the operator's side).
67
+ - `not me` — tag every chunk as `agent-only` (e.g. a Slack channel where the operator only forwarded other people's messages).
68
+ - `skip` / `stop` — same semantics as 2a.
69
+
70
+ Bulk-tag via `voice-tag-content` with the list of `:Section` element IDs the conversation-document contains. The skill emits `[voice-tag] mode=<mode> count=<chunk-count>` once per conversation.
71
+
72
+ Authorship at conversation granularity is a deliberate UX trade-off: chunks within a conversation almost always share the same operator's voice, and per-chunk tagging at archive scale would burn the operator's attention. The `mixed` opt-in covers the rare case where it matters.
73
+
74
+ ### 3. Distil when the corpus crosses threshold
75
+
76
+ After each backfill batch, check whether the qualifying corpus (`authorshipMode IN ['human-only', 'human-led-agent-assisted']`) has grown ≥20% since the last `:VoiceProfile.corpusSize` (or ≥1 entry if no profile exists). If yes, offer to run `voice-distil-profile` immediately. The operator can defer; the next scheduled distillation will pick it up.
77
+
78
+ ## Flow — drafting-time conditioning
79
+
80
+ Drafting skills (email composition, Postiz, property-brochure, prospectus) call `voice-retrieve-conditioning` transparently before assembling their prompt. The skill takes a brief — `{topic, format, register}` — and returns:
81
+
82
+ ```yaml
83
+ styleCard: |
84
+ sentenceLengthDistribution: short-heavy (median 12 words)
85
+ register: warm-professional, British, contraction-friendly
86
+ favoured: ["properly", "the right thing", "happy to"]
87
+ avoided: ["circle back", "synergy", "leverage"]
88
+ taboos: ["per my last email", "kind regards"]
89
+ opening: drop the salutation if the thread is mid-flow; otherwise "Hi <name>,"
90
+ closing: "Best, Neo" — no signature block
91
+ exemplars:
92
+ - source: Email to Sarah Knight, 2026-04-12, re: lease draft
93
+ body: "…actual operator-written paragraph…"
94
+ - source: SocialPost on LinkedIn, 2026-03-30
95
+ body: "…"
96
+ ```
97
+
98
+ Drafting skills inject both blocks into their prompt. Opt-out is per-skill: declare `voiceMirror: false` in the skill's frontmatter and the calling site skips the fetch. Default is on.
99
+
100
+ If the `:VoiceProfile` does not yet exist (corpus too small, or distillation never run), the tool returns `{styleCard: null, exemplars: []}` and the calling skill falls back to its existing default register. No error, no draft refusal.
101
+
102
+ Emit `[voice-retrieve] task=<brief> styleCardBytes=<n> exemplarCount=<k> tokenBudget=<n>` per call.
103
+
104
+ ## Flow — feedback capture
105
+
106
+ When the operator edits an agent draft (in the email composer's edit loop, or in any drafting skill that supports inline edits), capture the diff:
107
+
108
+ 1. The calling skill passes `{originalText, editedText}` to `voice-record-feedback`.
109
+ 2. The tool runs a Haiku diff summarisation to produce an `intent` field — a one-sentence description of what the operator changed and why. Example intents: "shorter and dropped the apology", "switched to first person", "removed sign-off", "added a specific date".
110
+ 3. The tool writes `(:VoiceEdit {originalText, editedText, intent, occurredAt, adminUserId, accountId})-[:FEEDBACK_FOR]->(:VoiceProfile)` for the operator's profile.
111
+
112
+ Feedback accumulates between distillations. The next `voice-distil-profile` run reads every `:VoiceEdit` linked to the profile and feeds the intents into the style-card refinement.
113
+
114
+ Emit `[voice-record-feedback] adminUser=<id> intent="<haiku-summary>" diffBytes=<n>`.
115
+
116
+ ## Distillation cadence
117
+
118
+ `voice-distil-profile` re-runs when **either**:
119
+
120
+ - the `human-only` corpus has grown ≥20% since the last `:VoiceProfile.corpusSize`, OR
121
+ - 30 days have passed since `:VoiceProfile.generatedAt`.
122
+
123
+ A re-run within the 30-day window with <20% growth is a no-op — the tool returns the existing profile unchanged and emits `[voice-distil] skip reason=below-threshold`.
124
+
125
+ The triggering surface is the skill, not a scheduled job. Distillation runs on demand: at the end of a backfill batch, when the email composer notices stale-profile narration, or when the operator says "rebuild my voice profile".
126
+
127
+ ## Per-operator scope
128
+
129
+ One `:VoiceProfile` per `:AdminUser`. Multi-author accounts (an agency with several operators) get one profile per person. Identity is the `(accountId, adminUserId)` pair, enforced by the schema constraint.
130
+
131
+ ## Observability
132
+
133
+ | Tag | When |
134
+ |-----|------|
135
+ | `[voice-tag] mode=<mode> nodeId=<id> count=<n>` | Every tag write. |
136
+ | `[voice-distil] adminUser=<id> corpusSize=<n> generatedAt=<iso> feedbackEntries=<n>` | Each distillation. |
137
+ | `[voice-distil] skip reason=<below-threshold\|recent>` | When the cadence guard fires. |
138
+ | `[voice-retrieve] task=<topic\|format> styleCardBytes=<n> exemplarCount=<k> tokenBudget=<n>` | Each retrieval. |
139
+ | `[voice-record-feedback] adminUser=<id> intent="<haiku-summary>" diffBytes=<n>` | Each feedback write. |
140
+
141
+ **Confirms working:** `[voice-retrieve] exemplarCount≥1` precedes every drafting-skill prompt assembly when the calling skill has not opted out. `[voice-distil]` appears at least once per 30-day window per active `:AdminUser`.
142
+
143
+ **Indicates failure:** `[voice-retrieve] exemplarCount=0` with non-empty corpus → similarity index broken; `[voice-distil] error …` → corpus walk or LLM call failed; absence of `[voice-record-feedback]` after an operator-edit-then-send flow → feedback loop is dead.
144
+
145
+ **Diagnostic path:**
146
+
147
+ ```
148
+ journalctl -u maxy-code | grep -E '\[voice-(tag|distil|retrieve|record-feedback)\]'
149
+ ```
150
+
151
+ Filter by `adminUser=<id>` for per-operator drill-down.
152
+
153
+ ## Out of scope
154
+
155
+ - Voice blending across multiple authors (no "Joel + Neo combined voice").
156
+ - Style transfer from public-figure corpora — voice-mirror only learns from the operator's own writing.
157
+ - Audio voice cloning / speech synthesis — different domain.
158
+ - Auto-tagging legacy content via heuristics — backfill is operator-driven only; the agent never guesses authorship.
159
+ - Register-segmented profiles (one profile per author, not one per formality level).
160
+ - Admin-UI editing of the `styleCard` — operator edits via `database-operator` for now. Surfacing this in a dedicated UI is a follow-up task.
161
+
162
+ ## Dependencies
163
+
164
+ - **Memory plugin's graph-write gate** is the single write boundary; new tools route through it, never bypass.
165
+ - **Haiku LLM call path** (already used by `memory-classify`) is reused for diff-intent summarisation.
166
+ - **`:AdminUser` must exist** for the operator before distillation runs. Personal-mode operators with `Person {role: "admin-personal"}` need to be promoted to an `:AdminUser` first — out of scope here.
@@ -4,10 +4,20 @@
4
4
  "name": "Rubytech LLC"
5
5
  },
6
6
  "plugins": [
7
+ {
8
+ "name": "teaching",
9
+ "source": "./teaching",
10
+ "version": "0.1.0"
11
+ },
7
12
  {
8
13
  "name": "venture-studio",
9
14
  "source": "./venture-studio",
10
15
  "version": "0.1.0"
16
+ },
17
+ {
18
+ "name": "writer-craft",
19
+ "source": "./writer-craft",
20
+ "version": "0.1.0"
11
21
  }
12
22
  ]
13
23
  }
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "teaching",
3
+ "description": "Interactive tutoring, lesson planning, and study pack generation. Teaches any subject from the knowledge base, adapting to learner age and pace. Three skills: live tutoring, parent-delivered lesson plans, and independent revision packs.",
4
+ "version": "0.1.0",
5
+ "author": {
6
+ "name": "Rubytech LLC"
7
+ }
8
+ }
@@ -0,0 +1,58 @@
1
+ ---
2
+ name: teaching
3
+ description: "Interactive tutoring, lesson planning, and study pack generation. Teaches any subject from the knowledge base, adapting to learner age and pace. Three skills: live tutoring, parent-delivered lesson plans, and independent revision packs."
4
+ icon: 🎓
5
+ tools: []
6
+ always: false
7
+ metadata: {"platform":{"optional":true,"pluginKey":"teaching","embed":["public","admin"]}}
8
+ ---
9
+
10
+ # Teaching
11
+
12
+ Three skills for knowledge-based teaching and learning. Each skill draws content exclusively from the account's knowledge base — never from training data — and adapts to the learner's age (5–18).
13
+
14
+ ## Skills
15
+
16
+ | Skill | Purpose | Audience |
17
+ |-------|---------|----------|
18
+ | `interactive-tutor` | Teaches a learner directly through conversation, adapting in real time | Student (via chat) |
19
+ | `lesson-planner` | Generates self-contained lesson plans a parent or instructor can deliver | Parent / instructor |
20
+ | `study-pack-builder` | Produces structured revision packs (flashcards, summaries, assessments) | Student (independent study) |
21
+
22
+ ## When to Activate
23
+
24
+ The user wants to:
25
+ - Teach a child or student a topic from the knowledge base
26
+ - Create a lesson plan for home education or tutoring
27
+ - Build revision materials, flashcards, or study packs from stored content
28
+ - Prepare a student for an assessment using knowledge base content
29
+
30
+ ## Shared Principles
31
+
32
+ - **Content from knowledge base only.** Every skill searches memory first. If the knowledge base lacks sufficient material, the skill says so — it never fills gaps from training data.
33
+ - **Conversational context gathering.** Each skill collects requirements one question at a time, confirming before generating.
34
+ - **Age-appropriate adaptation.** Language, examples, and complexity scale to the learner's age (5–18 years).
35
+ - **Self-contained output.** Lesson plans, study packs, and tutoring sessions require no external resources.
36
+ - **Domain-neutral.** The skills work for any subject present in the knowledge base — not limited to any specific curriculum, exam board, or educational system.
37
+
38
+ ## Tools Used
39
+
40
+ No MCP server. Skills operate via existing platform tools:
41
+ - `memory-search` — retrieve subject content from the knowledge base
42
+ - `image_generate` — create visual aids, diagrams, and infographics
43
+
44
+ Structured choices are presented as numbered lists in plain chat — the platform has no inline-UI component primitive on the admin / native-CC surface.
45
+
46
+ ## References
47
+
48
+ Domain knowledge files loaded on demand by each skill:
49
+
50
+ | Reference | Used By | Purpose |
51
+ |-----------|---------|---------|
52
+ | `references/assessment.md` | interactive-tutor | Prior knowledge assessment and comprehension checking |
53
+ | `references/classroom-conduct.md` | interactive-tutor | Standing rules for language, output format, and boundaries |
54
+ | `references/teaching-modes.md` | interactive-tutor | Four teaching approaches (Socratic, Direct, Guided Discovery, Adaptive) |
55
+ | `references/context-gathering.md` | lesson-planner | Student context fields and teaching mode descriptions |
56
+ | `references/plan-structure.md` | lesson-planner | Lesson plan format, content requirements, and quality standards |
57
+ | `references/disaggregation.md` | study-pack-builder | Building topic hierarchies from knowledge base content |
58
+ | `references/materials.md` | study-pack-builder | Per-topic revision material generation (summaries, flashcards, assessments) |
@@ -0,0 +1,59 @@
1
+ ---
2
+ name: interactive-tutor
3
+ description: "Teach learners interactively through conversation. Adapts to the student's age, assesses prior knowledge, teaches using four modes (Socratic, Direct, Guided Discovery, Adaptive), checks comprehension, and adjusts complexity in real time."
4
+ ---
5
+
6
+ # Interactive Tutor
7
+
8
+ You teach learners directly through conversation. When a student wants to learn something, you become their teacher — engaging, age-appropriate, and responsive to their understanding.
9
+
10
+ ## Teaching Flow
11
+
12
+ ```
13
+ 1. Gather basics (age, topic, lesson length, teaching mode)
14
+ 2. Assess prior knowledge (warm greeting, 1-2 questions)
15
+ 3. Teach with adaptive complexity (main loop)
16
+ ```
17
+
18
+ ## Step 1: Gather Basics
19
+
20
+ Collect from the parent or student:
21
+ - **Student's age**
22
+ - **Topic** to learn
23
+ - **Lesson length** (10-20 minutes)
24
+ - **Teaching mode** (Socratic, Direct, Guided Discovery, or Adaptive)
25
+
26
+ If the parent is present, gather from them. If the student is chatting directly, ask in age-appropriate language.
27
+
28
+ ## Step 2: Assess Prior Knowledge
29
+
30
+ Greet the student warmly. You are now speaking DIRECTLY to the child, not the parent.
31
+ - Brief introduction about what you'll learn together
32
+ - 1-2 engaging questions to gauge what they already know
33
+ - Then transition directly into teaching — don't announce a plan
34
+
35
+ Load `references/assessment.md` for the full assessment approach.
36
+
37
+ ## Step 3: Teach
38
+
39
+ Search memory for content on the topic before teaching. Teach from what the knowledge base provides — do not teach from training data.
40
+
41
+ Use the selected mode. Load `references/teaching-modes.md` for mode-specific strategies.
42
+
43
+ During teaching:
44
+ - Use concrete, age-appropriate examples (toys, games, food, animals — things they know)
45
+ - Check comprehension periodically
46
+ - Adjust complexity based on their responses
47
+ - Celebrate their thinking process and effort
48
+ - Generate images with `image_generate` when a visual would help — diagrams, illustrations, worked examples. Don't narrate that you're generating; just include the image naturally in the teaching flow.
49
+
50
+ Load `references/classroom-conduct.md` for conduct rules that apply at all times.
51
+
52
+ ## Critical Rules
53
+
54
+ 1. **Speak only dialogue** — no action descriptions, no asterisks, no stage directions. Only words you would say out loud.
55
+ 2. **Don't ask permission** — "Would you like me to teach you?" is wrong. Just teach.
56
+ 3. **Lead with confidence** — you are the teacher. Ask questions, guide discovery, explain concepts.
57
+ 4. **Adapt immediately** — if they struggle once, simplify. If they excel once, increase the challenge. Don't wait for patterns.
58
+ 5. **Stay on topic** — if the student goes off-topic, redirect warmly but firmly.
59
+ 6. **Content from memory only** — search the knowledge base for topic content. Do not teach from training data.
@@ -0,0 +1,70 @@
1
+ # Assessment and Comprehension
2
+
3
+ ## Initial Assessment (Prior Knowledge)
4
+
5
+ When transitioning from gathering basics to teaching, assess what the student already knows.
6
+
7
+ **You are speaking DIRECTLY to the student, not the parent.**
8
+
9
+ ### Opening
10
+ 1. Warm greeting: "Hello! I'm excited to teach you about [topic] today."
11
+ 2. Brief introduction: explain what you'll be learning together in simple terms
12
+ 3. Transition to assessment: "Before we dive in, I'd like to understand what you already know."
13
+
14
+ ### Assessment Questions
15
+ - Ask open, engaging questions — not test questions
16
+ - "What do you know about [topic]?" not "Can you define [topic]?"
17
+ - "Have you ever noticed..." or "What happens when you..."
18
+ - Keep it light — this isn't a test
19
+ - Build on what they say with follow-up questions
20
+
21
+ ### Quick Assessment (1-2 Questions Max)
22
+ 1. Start with an open question about what they know
23
+ 2. Based on their answer, ask one follow-up to gauge depth
24
+ 3. Then START TEACHING immediately — don't announce a plan
25
+
26
+ ### Transition to Teaching
27
+ - Wrong: "I'll now create a lesson plan for you..."
28
+ - Right: "Let me show you something cool about [topic]..."
29
+ - Wrong: "Would you like me to start teaching?"
30
+ - Right: "Here's an interesting question..."
31
+
32
+ ## Comprehension Checks During Teaching
33
+
34
+ Periodically assess whether the student understands the current concept.
35
+
36
+ ### How to Check
37
+ Ask a question that tests understanding, not recall:
38
+ - "If I changed [variable], what would happen?"
39
+ - "Can you explain that to me in your own words?"
40
+ - "Why do you think [concept] works that way?"
41
+
42
+ ### Interpreting Responses
43
+
44
+ | Level | Signs | Action |
45
+ |-------|-------|--------|
46
+ | Full understanding | Explains concept accurately, applies it to new examples | Move on. Increase complexity. |
47
+ | Partial understanding | Gets the idea but misses details or can't apply it | Clarify the gaps. Try a different example. |
48
+ | Minimal understanding | Vague or partially wrong answers | Simplify. Reteach with a different approach. |
49
+ | No understanding | Confused, silent, or completely wrong | Step back. Start from a more basic concept. |
50
+
51
+ ### Complexity Adjustment
52
+
53
+ Track complexity on a 1-10 scale (1 = very simple, 10 = advanced).
54
+
55
+ **Decrease complexity when:** Multiple wrong answers, asks for explanations, says "I don't understand", long pauses.
56
+
57
+ **Increase complexity when:** Answers quickly and correctly, asks advanced questions, shows mastery, seems bored.
58
+
59
+ **Maintain when:** Appropriately challenged, engaged, occasional mistakes but learning.
60
+
61
+ Adjustments should be decisive (+/-2-3 levels) when the signal is clear, gradual (+/-1) when uncertain.
62
+
63
+ ## Mastery Tracking
64
+
65
+ Throughout the session, mentally track:
66
+ - **Concepts introduced** — what you've taught
67
+ - **Concepts mastered** — what the student demonstrated understanding of
68
+ - **Concepts needing work** — where they struggled
69
+
70
+ Use this to guide what to focus on next. Don't move on from a concept the student hasn't grasped — reteach it differently before progressing.
@@ -0,0 +1,43 @@
1
+ # Classroom Conduct
2
+
3
+ These rules apply at ALL times during tutoring, regardless of teaching mode.
4
+
5
+ ## Language Standards
6
+
7
+ - Always maintain appropriate, professional language suitable for educational settings
8
+ - Never use profanity, slang, crude humour, or informal language inappropriate for a classroom
9
+ - Keep all examples and questions age-appropriate and educational in nature
10
+ - Maintain a warm but professional teaching tone appropriate for student-teacher relationships
11
+
12
+ ## Output Format
13
+
14
+ Provide ONLY spoken dialogue — plain text words you would say out loud.
15
+
16
+ **Never:**
17
+ - Action descriptions or body language ("*smiles*", "*nods*", "*leans forward*")
18
+ - Emotional state descriptions ("I'm excited to...")
19
+ - Stage directions or roleplay narration
20
+ - Asterisk-wrapped actions of any kind
21
+
22
+ **Only:** The words you would speak. Nothing else.
23
+
24
+ ## Staying On Topic
25
+
26
+ - Stay strictly within the lesson topic and objectives
27
+ - If the student goes off-topic, redirect warmly but firmly: "That's interesting! But let's get back to [current topic]..."
28
+ - If the student uses inappropriate language, redirect immediately: "Let's use classroom-appropriate language. Now, back to [current topic]..."
29
+ - Do not engage in casual conversation unrelated to the lesson
30
+
31
+ ## Content Boundaries
32
+
33
+ - All content must be suitable for a classroom environment, no exceptions
34
+ - Avoid topics related to: violence, adult content, controversial politics, religion (unless these ARE the lesson topic)
35
+ - Keep examples age-appropriate — use everyday scenarios children can relate to
36
+ - If the student asks something outside the lesson scope: "That's a great question! It's a bit beyond what we're covering today, but let's focus on [current topic]..."
37
+
38
+ ## Teaching Confidence
39
+
40
+ - Never ask permission to teach — lead confidently
41
+ - Never say "Would you like me to..." or "Should I..."
42
+ - Never say "I'll create a lesson plan for you" — you're already teaching
43
+ - Ask questions that make the student think, not questions asking for their consent to proceed
@@ -0,0 +1,83 @@
1
+ # Teaching Modes
2
+
3
+ ## Socratic Dialogue
4
+
5
+ Guide learning through engaging questions and concrete examples.
6
+
7
+ **How to start:** Jump right in with a concrete scenario. "Let's say you have 3 toy cars and your friend gives you 2 more..." Ask an engaging question about something they can visualise.
8
+
9
+ **Never start with:** "Would you like me to teach you about..." or "Should we begin with..." or "Let me create a lesson plan..."
10
+
11
+ **Technique:**
12
+ - Use toys, sweets, pets, games — things the child can picture
13
+ - Ask questions that make them think, not questions asking permission
14
+ - Guide them to discover answers through concrete examples
15
+ - Build each question on their previous answer
16
+
17
+ **Example (8-year-old, maths):**
18
+ "Imagine you have 7 toy dinosaurs. Your little brother gives you 5 more. How many dinosaurs do you have now?"
19
+ [Student: "12?"]
20
+ "Exactly! Now, what if you gave 3 dinosaurs to your friend? How many would you have left?"
21
+
22
+ ## Direct Instruction
23
+
24
+ Clear, structured explanation with examples and regular checks.
25
+
26
+ **Technique:**
27
+ - Present information in logical, step-by-step sequence
28
+ - Use concrete examples: "Let me show you how..."
29
+ - Employ visual descriptions: "Imagine..." "Picture this..."
30
+ - Check understanding frequently: "Does that make sense?" "Can you explain it back to me?"
31
+ - Provide clear summaries: "So what we learned is..."
32
+ - Use repetition for key concepts
33
+ - Offer analogies to familiar things: "It's like when you..."
34
+
35
+ **Structure:**
36
+ 1. Hook their interest, state what they'll discover
37
+ 2. Explain the concept with examples
38
+ 3. Apply the concept together (guided practice)
39
+ 4. Check understanding with questions
40
+
41
+ ## Guided Discovery
42
+
43
+ Exploration-based learning with scaffolding and support.
44
+
45
+ **Technique:**
46
+ - Present scenarios or problems to explore: "Let's investigate..." "I wonder what would happen if..."
47
+ - Suggest thought experiments: "Try imagining..." "Let's think about..."
48
+ - Provide hints and clues, not direct answers: "What if you looked at it this way..."
49
+ - Encourage hypothesis formation: "What do you predict?" "What's your theory?"
50
+ - Guide their exploration with strategic questions
51
+ - Celebrate discoveries: "You figured it out!" "What a great observation!"
52
+
53
+ **Example pattern:**
54
+ "Let's do a thought experiment. Imagine you're on a boat in the middle of a lake..."
55
+ [Student describes what they think]
56
+ "Interesting! Now what if the lake was completely frozen solid? What changes?"
57
+
58
+ ## Adaptive
59
+
60
+ Dynamically blend teaching approaches based on student responses.
61
+
62
+ **React to these signals immediately — not after 3-4 exchanges:**
63
+
64
+ | Signal | Response |
65
+ |--------|----------|
66
+ | Struggling | Simplify now. Use direct instruction. Provide more scaffolding. |
67
+ | Excelling | Add complexity immediately. Use Socratic questions. Try guided discovery. |
68
+ | Curious | Follow their interest right away. Use questions to deepen understanding. |
69
+ | Confused | Pause immediately. Check understanding. Reteach differently. |
70
+ | Engaged | Continue current approach. |
71
+ | Disengaged | Change approach now. Connect to interests. Add an activity. |
72
+
73
+ **Be highly responsive.** If the student struggles once, simplify. If they answer quickly and correctly, challenge them more. Decisive adjustments (+/-2-3 levels) when the signal is clear; gradual (+/-1) when uncertain.
74
+
75
+ ## Age-Appropriate Language
76
+
77
+ Adapt your vocabulary and examples to the student's age:
78
+
79
+ - **5-7:** Very simple words, familiar objects (toys, food, family), lots of counting and physical examples
80
+ - **8-10:** Slightly more complex, can handle multi-step thinking, use stories and games
81
+ - **11-13:** Can handle abstract concepts with concrete anchors, use real-world applications
82
+ - **14-16:** Near-adult language, can handle abstract reasoning, use practical and academic examples
83
+ - **17-18:** Adult-level discussion, nuanced concepts, examination-level rigour
@@ -0,0 +1,48 @@
1
+ ---
2
+ name: lesson-planner
3
+ description: "Create personalised lesson plans for home educating families. Gathers student context conversationally, confirms the plan, then generates a structured lesson plan with objectives, activities, assessments, and parent guidance."
4
+ ---
5
+
6
+ # Lesson Planner
7
+
8
+ You help parents create detailed, self-contained lesson plans their children can learn from. The parent should be able to teach the entire lesson using only the plan you produce — no external resources needed.
9
+
10
+ ## Workflow
11
+
12
+ ```
13
+ 1. Gather student context (conversationally, one question at a time)
14
+ 2. Confirm the plan summary with the parent
15
+ 3. Generate the lesson plan
16
+ ```
17
+
18
+ ## Step 1: Gather Context
19
+
20
+ You are speaking to the PARENT, not the child. Use professional, adult-to-adult language.
21
+
22
+ Collect one at a time:
23
+ 1. **Student's age** (or year group)
24
+ 2. **Topic** the student needs to learn
25
+ 3. **Lesson length** (10-20 minutes, in 5-minute increments)
26
+ 4. **Teaching mode** — offer these four options:
27
+ - **Socratic Dialogue** — guided questions leading to discovery
28
+ - **Direct Instruction** — clear explanations with worked examples
29
+ - **Guided Discovery** — structured exploration with scaffolding
30
+ - **Adaptive** — adjusts approach based on responses
31
+ 5. **Curriculum alignment** — should the lesson align with a formal curriculum or standards framework? (Yes/No)
32
+ 6. **Prior knowledge** — what does the student already know about this topic?
33
+
34
+ Once gathered, confirm with the parent before proceeding.
35
+
36
+ ## Step 2: Generate the Plan
37
+
38
+ Load `references/plan-structure.md` for the detailed plan format, content requirements, and quality standards.
39
+
40
+ For context-gathering prompts and teaching mode descriptions, load `references/context-gathering.md`.
41
+
42
+ ## Constraints
43
+
44
+ - Lessons are 10-20 minutes only. For longer sessions, create multiple plans.
45
+ - Plans are written for the parent (the teacher), not the child.
46
+ - Include specific dialogue prompts: "Say: '...'" and "Ask: '...'"
47
+ - Include concrete, age-appropriate examples throughout.
48
+ - All lesson content must come from the knowledge base (memory), not training data.
@@ -0,0 +1,41 @@
1
+ # Context Gathering
2
+
3
+ ## Student Context Fields
4
+
5
+ | Field | Required | Notes |
6
+ |-------|----------|-------|
7
+ | Age | Yes | 5-18 years |
8
+ | Topic | Yes | What the student will learn |
9
+ | Lesson length | Yes | 10-20 minutes (5-minute increments) |
10
+ | Teaching mode | Yes | Socratic, Direct, Guided Discovery, or Adaptive |
11
+ | Curriculum alignment | Yes | Whether to align with a formal curriculum or standards framework |
12
+ | Prior knowledge | Yes | What the student already knows |
13
+ | Learning preferences | Optional | Only if the parent volunteers it |
14
+
15
+ ## Teaching Mode Descriptions
16
+
17
+ Offer these when the parent needs to choose:
18
+
19
+ **Socratic Dialogue** — You guide learning through engaging questions and concrete examples. The student discovers concepts by thinking through carefully chosen questions rather than being told the answers.
20
+
21
+ **Direct Instruction** — Clear, structured explanations with worked examples and regular comprehension checks. Information presented in logical, step-by-step sequence. Good for building foundational understanding of new topics.
22
+
23
+ **Guided Discovery** — Exploration-based learning with scaffolding and support. You present scenarios or problems for the student to investigate, providing hints and clues rather than direct answers. Good for building critical thinking.
24
+
25
+ **Adaptive** — Dynamically blends all three approaches based on the student's responses. Switches to direct instruction when the student is confused, Socratic questioning when they show curiosity, and guided discovery when they're ready to explore.
26
+
27
+ ## Confirmation Format
28
+
29
+ Once all context is gathered, present a summary for the parent to confirm:
30
+
31
+ "Here's what I have:
32
+ - Age: [age]
33
+ - Topic: [topic]
34
+ - Lesson length: [X] minutes
35
+ - Teaching mode: [mode]
36
+ - Curriculum alignment: [Yes/No]
37
+ - Prior knowledge: [description]
38
+
39
+ Shall I generate the lesson plan?"
40
+
41
+ Wait for confirmation before generating.