@rubytech/create-maxy-code 0.1.166 → 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.
- package/package.json +1 -1
- package/payload/platform/config/brand.json +1 -1
- package/payload/platform/plugins/.claude-plugin/marketplace.json +10 -0
- package/payload/platform/plugins/teaching/.claude-plugin/plugin.json +8 -0
- package/payload/platform/plugins/teaching/PLUGIN.md +58 -0
- package/payload/platform/plugins/teaching/skills/interactive-tutor/SKILL.md +59 -0
- package/payload/platform/plugins/teaching/skills/interactive-tutor/references/assessment.md +70 -0
- package/payload/platform/plugins/teaching/skills/interactive-tutor/references/classroom-conduct.md +43 -0
- package/payload/platform/plugins/teaching/skills/interactive-tutor/references/teaching-modes.md +83 -0
- package/payload/platform/plugins/teaching/skills/lesson-planner/SKILL.md +48 -0
- package/payload/platform/plugins/teaching/skills/lesson-planner/references/context-gathering.md +41 -0
- package/payload/platform/plugins/teaching/skills/lesson-planner/references/plan-structure.md +94 -0
- package/payload/platform/plugins/teaching/skills/study-pack-builder/SKILL.md +52 -0
- package/payload/platform/plugins/teaching/skills/study-pack-builder/references/disaggregation.md +49 -0
- package/payload/platform/plugins/teaching/skills/study-pack-builder/references/materials.md +116 -0
- package/payload/platform/plugins/writer-craft/.claude-plugin/plugin.json +17 -0
- package/payload/platform/plugins/writer-craft/PLUGIN.md +130 -0
- package/payload/platform/plugins/writer-craft/agents/writer-craft--manuscript-reviewer.md +96 -0
- package/payload/platform/plugins/writer-craft/mcp/package.json +19 -0
- package/payload/platform/plugins/writer-craft/mcp/scripts/smoke.mjs +152 -0
- package/payload/platform/plugins/writer-craft/mcp/src/index.ts +289 -0
- package/payload/platform/plugins/writer-craft/mcp/src/lib/neo4j.ts +56 -0
- package/payload/platform/plugins/writer-craft/mcp/src/lib/voice-corpus.ts +54 -0
- package/payload/platform/plugins/writer-craft/mcp/src/tools/voice-distil-profile.ts +303 -0
- package/payload/platform/plugins/writer-craft/mcp/src/tools/voice-record-feedback.ts +114 -0
- package/payload/platform/plugins/writer-craft/mcp/src/tools/voice-retrieve-conditioning.ts +145 -0
- package/payload/platform/plugins/writer-craft/mcp/src/tools/voice-tag-content.ts +117 -0
- package/payload/platform/plugins/writer-craft/mcp/tsconfig.json +8 -0
- package/payload/platform/plugins/writer-craft/skills/citation-style/SKILL.md +94 -0
- package/payload/platform/plugins/writer-craft/skills/citation-style/references/book-and-chapter-models.md +77 -0
- package/payload/platform/plugins/writer-craft/skills/citation-style/references/citation-rules.md +103 -0
- package/payload/platform/plugins/writer-craft/skills/citation-style/references/journal-article-models.md +74 -0
- package/payload/platform/plugins/writer-craft/skills/citation-style/references/other-source-models.md +146 -0
- package/payload/platform/plugins/writer-craft/skills/citation-style/references/reference-list-rules.md +70 -0
- package/payload/platform/plugins/writer-craft/skills/editorial-practice/SKILL.md +108 -0
- package/payload/platform/plugins/writer-craft/skills/editorial-practice/references/copyediting.md +73 -0
- package/payload/platform/plugins/writer-craft/skills/editorial-practice/references/developmental-editing.md +85 -0
- package/payload/platform/plugins/writer-craft/skills/editorial-practice/references/genre-specific-editing.md +78 -0
- package/payload/platform/plugins/writer-craft/skills/editorial-practice/references/line-editing.md +55 -0
- package/payload/platform/plugins/writer-craft/skills/editorial-practice/references/self-editing.md +89 -0
- package/payload/platform/plugins/writer-craft/skills/persuasive-storytelling/SKILL.md +114 -0
- package/payload/platform/plugins/writer-craft/skills/persuasive-storytelling/references/audience-analysis.md +73 -0
- package/payload/platform/plugins/writer-craft/skills/persuasive-storytelling/references/crafting-persuasive-story.md +76 -0
- package/payload/platform/plugins/writer-craft/skills/persuasive-storytelling/references/persuasion-case-studies.md +67 -0
- package/payload/platform/plugins/writer-craft/skills/persuasive-storytelling/references/transformation-framework.md +86 -0
- package/payload/platform/plugins/writer-craft/skills/point-of-view/SKILL.md +97 -0
- package/payload/platform/plugins/writer-craft/skills/point-of-view/references/indirect-narration.md +72 -0
- package/payload/platform/plugins/writer-craft/skills/point-of-view/references/pov-types-and-voice.md +91 -0
- package/payload/platform/plugins/writer-craft/skills/point-of-view/references/protagonist-filter.md +71 -0
- package/payload/platform/plugins/writer-craft/skills/point-of-view/references/tense-and-person.md +85 -0
- package/payload/platform/plugins/writer-craft/skills/prose-craft/SKILL.md +100 -0
- package/payload/platform/plugins/writer-craft/skills/prose-craft/references/punctuation-and-grammar.md +72 -0
- package/payload/platform/plugins/writer-craft/skills/prose-craft/references/repetition.md +71 -0
- package/payload/platform/plugins/writer-craft/skills/prose-craft/references/sound-and-rhythm.md +64 -0
- package/payload/platform/plugins/writer-craft/skills/prose-craft/references/word-economy.md +93 -0
- package/payload/platform/plugins/writer-craft/skills/reader-engagement/SKILL.md +100 -0
- package/payload/platform/plugins/writer-craft/skills/reader-engagement/references/cause-effect-setup-payoff.md +79 -0
- package/payload/platform/plugins/writer-craft/skills/reader-engagement/references/conflict-escalation.md +81 -0
- package/payload/platform/plugins/writer-craft/skills/reader-engagement/references/hooking-readers.md +67 -0
- package/payload/platform/plugins/writer-craft/skills/reader-engagement/references/neurochemistry-of-engagement.md +94 -0
- package/payload/platform/plugins/writer-craft/skills/review-manuscript/SKILL.md +111 -0
- package/payload/platform/plugins/writer-craft/skills/review-manuscript/references/review-manuscript-checklist.md +119 -0
- package/payload/platform/plugins/writer-craft/skills/review-prose/SKILL.md +99 -0
- package/payload/platform/plugins/writer-craft/skills/review-prose/references/prose-review-checklist.md +112 -0
- package/payload/platform/plugins/writer-craft/skills/review-scene/SKILL.md +99 -0
- package/payload/platform/plugins/writer-craft/skills/review-scene/references/scene-analysis-framework.md +95 -0
- package/payload/platform/plugins/writer-craft/skills/story-architecture/SKILL.md +106 -0
- package/payload/platform/plugins/writer-craft/skills/story-architecture/references/blueprinting-and-scene-cards.md +118 -0
- package/payload/platform/plugins/writer-craft/skills/story-architecture/references/inner-issue-and-protagonist-goal.md +66 -0
- package/payload/platform/plugins/writer-craft/skills/story-architecture/references/misbelief-desire-worldview.md +87 -0
- package/payload/platform/plugins/writer-craft/skills/story-architecture/references/origin-scenes-and-escalation.md +82 -0
- package/payload/platform/plugins/writer-craft/skills/story-blueprint/SKILL.md +133 -0
- package/payload/platform/plugins/writer-craft/skills/story-blueprint/references/blueprinting-exercises.md +118 -0
- package/payload/platform/plugins/writer-craft/skills/story-blueprint/references/blueprinting-process.md +128 -0
- package/payload/platform/plugins/writer-craft/skills/voice-mirror/SKILL.md +166 -0
- package/payload/platform/scripts/seed-neo4j.sh +4 -0
- package/payload/premium-plugins/.claude-plugin/marketplace.json +10 -0
- package/payload/premium-plugins/teaching/.claude-plugin/plugin.json +8 -0
- package/payload/premium-plugins/teaching/PLUGIN.md +58 -0
- package/payload/premium-plugins/teaching/skills/interactive-tutor/SKILL.md +59 -0
- package/payload/premium-plugins/teaching/skills/interactive-tutor/references/assessment.md +70 -0
- package/payload/premium-plugins/teaching/skills/interactive-tutor/references/classroom-conduct.md +43 -0
- package/payload/premium-plugins/teaching/skills/interactive-tutor/references/teaching-modes.md +83 -0
- package/payload/premium-plugins/teaching/skills/lesson-planner/SKILL.md +48 -0
- package/payload/premium-plugins/teaching/skills/lesson-planner/references/context-gathering.md +41 -0
- package/payload/premium-plugins/teaching/skills/lesson-planner/references/plan-structure.md +94 -0
- package/payload/premium-plugins/teaching/skills/study-pack-builder/SKILL.md +52 -0
- package/payload/premium-plugins/teaching/skills/study-pack-builder/references/disaggregation.md +49 -0
- package/payload/premium-plugins/teaching/skills/study-pack-builder/references/materials.md +116 -0
- package/payload/premium-plugins/writer-craft/.claude-plugin/plugin.json +17 -0
- package/payload/premium-plugins/writer-craft/PLUGIN.md +130 -0
- package/payload/premium-plugins/writer-craft/agents/writer-craft--manuscript-reviewer.md +96 -0
- package/payload/premium-plugins/writer-craft/mcp/package.json +19 -0
- package/payload/premium-plugins/writer-craft/mcp/scripts/smoke.mjs +152 -0
- package/payload/premium-plugins/writer-craft/mcp/src/index.ts +289 -0
- package/payload/premium-plugins/writer-craft/mcp/src/lib/neo4j.ts +56 -0
- package/payload/premium-plugins/writer-craft/mcp/src/lib/voice-corpus.ts +54 -0
- package/payload/premium-plugins/writer-craft/mcp/src/tools/voice-distil-profile.ts +303 -0
- package/payload/premium-plugins/writer-craft/mcp/src/tools/voice-record-feedback.ts +114 -0
- package/payload/premium-plugins/writer-craft/mcp/src/tools/voice-retrieve-conditioning.ts +145 -0
- package/payload/premium-plugins/writer-craft/mcp/src/tools/voice-tag-content.ts +117 -0
- package/payload/premium-plugins/writer-craft/mcp/tsconfig.json +8 -0
- package/payload/premium-plugins/writer-craft/skills/citation-style/SKILL.md +94 -0
- package/payload/premium-plugins/writer-craft/skills/citation-style/references/book-and-chapter-models.md +77 -0
- package/payload/premium-plugins/writer-craft/skills/citation-style/references/citation-rules.md +103 -0
- package/payload/premium-plugins/writer-craft/skills/citation-style/references/journal-article-models.md +74 -0
- package/payload/premium-plugins/writer-craft/skills/citation-style/references/other-source-models.md +146 -0
- package/payload/premium-plugins/writer-craft/skills/citation-style/references/reference-list-rules.md +70 -0
- package/payload/premium-plugins/writer-craft/skills/editorial-practice/SKILL.md +108 -0
- package/payload/premium-plugins/writer-craft/skills/editorial-practice/references/copyediting.md +73 -0
- package/payload/premium-plugins/writer-craft/skills/editorial-practice/references/developmental-editing.md +85 -0
- package/payload/premium-plugins/writer-craft/skills/editorial-practice/references/genre-specific-editing.md +78 -0
- package/payload/premium-plugins/writer-craft/skills/editorial-practice/references/line-editing.md +55 -0
- package/payload/premium-plugins/writer-craft/skills/editorial-practice/references/self-editing.md +89 -0
- package/payload/premium-plugins/writer-craft/skills/persuasive-storytelling/SKILL.md +114 -0
- package/payload/premium-plugins/writer-craft/skills/persuasive-storytelling/references/audience-analysis.md +73 -0
- package/payload/premium-plugins/writer-craft/skills/persuasive-storytelling/references/crafting-persuasive-story.md +76 -0
- package/payload/premium-plugins/writer-craft/skills/persuasive-storytelling/references/persuasion-case-studies.md +67 -0
- package/payload/premium-plugins/writer-craft/skills/persuasive-storytelling/references/transformation-framework.md +86 -0
- package/payload/premium-plugins/writer-craft/skills/point-of-view/SKILL.md +97 -0
- package/payload/premium-plugins/writer-craft/skills/point-of-view/references/indirect-narration.md +72 -0
- package/payload/premium-plugins/writer-craft/skills/point-of-view/references/pov-types-and-voice.md +91 -0
- package/payload/premium-plugins/writer-craft/skills/point-of-view/references/protagonist-filter.md +71 -0
- package/payload/premium-plugins/writer-craft/skills/point-of-view/references/tense-and-person.md +85 -0
- package/payload/premium-plugins/writer-craft/skills/prose-craft/SKILL.md +100 -0
- package/payload/premium-plugins/writer-craft/skills/prose-craft/references/punctuation-and-grammar.md +72 -0
- package/payload/premium-plugins/writer-craft/skills/prose-craft/references/repetition.md +71 -0
- package/payload/premium-plugins/writer-craft/skills/prose-craft/references/sound-and-rhythm.md +64 -0
- package/payload/premium-plugins/writer-craft/skills/prose-craft/references/word-economy.md +93 -0
- package/payload/premium-plugins/writer-craft/skills/reader-engagement/SKILL.md +100 -0
- package/payload/premium-plugins/writer-craft/skills/reader-engagement/references/cause-effect-setup-payoff.md +79 -0
- package/payload/premium-plugins/writer-craft/skills/reader-engagement/references/conflict-escalation.md +81 -0
- package/payload/premium-plugins/writer-craft/skills/reader-engagement/references/hooking-readers.md +67 -0
- package/payload/premium-plugins/writer-craft/skills/reader-engagement/references/neurochemistry-of-engagement.md +94 -0
- package/payload/premium-plugins/writer-craft/skills/review-manuscript/SKILL.md +111 -0
- package/payload/premium-plugins/writer-craft/skills/review-manuscript/references/review-manuscript-checklist.md +119 -0
- package/payload/premium-plugins/writer-craft/skills/review-prose/SKILL.md +99 -0
- package/payload/premium-plugins/writer-craft/skills/review-prose/references/prose-review-checklist.md +112 -0
- package/payload/premium-plugins/writer-craft/skills/review-scene/SKILL.md +99 -0
- package/payload/premium-plugins/writer-craft/skills/review-scene/references/scene-analysis-framework.md +95 -0
- package/payload/premium-plugins/writer-craft/skills/story-architecture/SKILL.md +106 -0
- package/payload/premium-plugins/writer-craft/skills/story-architecture/references/blueprinting-and-scene-cards.md +118 -0
- package/payload/premium-plugins/writer-craft/skills/story-architecture/references/inner-issue-and-protagonist-goal.md +66 -0
- package/payload/premium-plugins/writer-craft/skills/story-architecture/references/misbelief-desire-worldview.md +87 -0
- package/payload/premium-plugins/writer-craft/skills/story-architecture/references/origin-scenes-and-escalation.md +82 -0
- package/payload/premium-plugins/writer-craft/skills/story-blueprint/SKILL.md +133 -0
- package/payload/premium-plugins/writer-craft/skills/story-blueprint/references/blueprinting-exercises.md +118 -0
- package/payload/premium-plugins/writer-craft/skills/story-blueprint/references/blueprinting-process.md +128 -0
- package/payload/premium-plugins/writer-craft/skills/voice-mirror/SKILL.md +166 -0
package/package.json
CHANGED
|
@@ -104,6 +104,11 @@
|
|
|
104
104
|
"source": "./substack-import",
|
|
105
105
|
"version": "0.1.0"
|
|
106
106
|
},
|
|
107
|
+
{
|
|
108
|
+
"name": "teaching",
|
|
109
|
+
"source": "./teaching",
|
|
110
|
+
"version": "0.1.0"
|
|
111
|
+
},
|
|
107
112
|
{
|
|
108
113
|
"name": "telegram",
|
|
109
114
|
"source": "./telegram",
|
|
@@ -129,6 +134,11 @@
|
|
|
129
134
|
"source": "./workflows",
|
|
130
135
|
"version": "0.1.0"
|
|
131
136
|
},
|
|
137
|
+
{
|
|
138
|
+
"name": "writer-craft",
|
|
139
|
+
"source": "./writer-craft",
|
|
140
|
+
"version": "0.1.0"
|
|
141
|
+
},
|
|
132
142
|
{
|
|
133
143
|
"name": "x-import",
|
|
134
144
|
"source": "./x-import",
|
|
@@ -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.
|
package/payload/platform/plugins/teaching/skills/interactive-tutor/references/classroom-conduct.md
ADDED
|
@@ -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
|
package/payload/platform/plugins/teaching/skills/interactive-tutor/references/teaching-modes.md
ADDED
|
@@ -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.
|
package/payload/platform/plugins/teaching/skills/lesson-planner/references/context-gathering.md
ADDED
|
@@ -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.
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
# Lesson Plan Structure
|
|
2
|
+
|
|
3
|
+
## Content Source
|
|
4
|
+
|
|
5
|
+
All lesson content must come from the knowledge base (memory). Search memory for the topic before generating the plan. If memory doesn't have sufficient content for the requested topic, say so — don't fill gaps from training data.
|
|
6
|
+
|
|
7
|
+
## Plan Format
|
|
8
|
+
|
|
9
|
+
Every lesson plan should include these sections:
|
|
10
|
+
|
|
11
|
+
### Title
|
|
12
|
+
Clear, descriptive title including the topic.
|
|
13
|
+
|
|
14
|
+
### Overview
|
|
15
|
+
- Age level
|
|
16
|
+
- Duration (minutes)
|
|
17
|
+
- Learning objectives (4-5 clear, measurable objectives)
|
|
18
|
+
- Materials needed (paper, pencils, etc. — keep it simple)
|
|
19
|
+
|
|
20
|
+
### Vocabulary
|
|
21
|
+
Key terms with age-appropriate definitions and example usage. Include every term the student will encounter during the lesson.
|
|
22
|
+
|
|
23
|
+
### Lesson Structure
|
|
24
|
+
|
|
25
|
+
Divide the lesson into timed sections. For 10-15 minute lessons: 2-3 sections. For 15-20 minute lessons: 3-4 sections maximum.
|
|
26
|
+
|
|
27
|
+
Each section includes:
|
|
28
|
+
- **Title** with time allocation (e.g., "Part 1: Opening Question (3 minutes)")
|
|
29
|
+
- **Type** — introduction, instruction, activity, or assessment
|
|
30
|
+
- **Content** — detailed, multi-paragraph instructions for the parent
|
|
31
|
+
- **Activities** — step-by-step instructions (3-4 steps max per activity)
|
|
32
|
+
- **Comprehension checks** — exact question wording to check understanding
|
|
33
|
+
- **Visual aids** — generate images where they would help (see Multi-Modal Outputs below)
|
|
34
|
+
|
|
35
|
+
### Assessment Questions
|
|
36
|
+
3-4 questions at varying difficulty (easy, medium, hard) with expected answers. These test actual understanding, not recall.
|
|
37
|
+
|
|
38
|
+
### Discussion Questions
|
|
39
|
+
3-4 open-ended questions to extend thinking beyond the lesson content.
|
|
40
|
+
|
|
41
|
+
### Parent Notes
|
|
42
|
+
3-4 paragraphs of guidance for the parent: how to handle common difficulties, what to look for, how to extend the lesson if the child is engaged, and when to move on.
|
|
43
|
+
|
|
44
|
+
### Looking Ahead
|
|
45
|
+
Brief preview of what the student could learn next — 2-3 concrete topics.
|
|
46
|
+
|
|
47
|
+
## Content Requirements
|
|
48
|
+
|
|
49
|
+
Each section's content must include:
|
|
50
|
+
1. **Opening question or hook** with exact wording to use
|
|
51
|
+
2. **Key concepts explained in full** — don't say "explain photosynthesis", write out the actual explanation the parent should give
|
|
52
|
+
3. **Concrete examples** — specific facts, real-world scenarios, or familiar analogies appropriate for the child's age
|
|
53
|
+
4. **Activity instructions** — complete step-by-step directions, not just "do an activity about X"
|
|
54
|
+
5. **Dialogue prompts** — actual words the parent can say: "Say: '...'", "Ask: '...'"
|
|
55
|
+
6. **Expected outcome** — what the child should understand by the end of each section
|
|
56
|
+
|
|
57
|
+
## Quality Standards
|
|
58
|
+
|
|
59
|
+
- **History:** Include specific dates, names, and events (not "long ago" but "in 1776" or "around 500 years ago")
|
|
60
|
+
- **Science:** Include specific examples, everyday analogies, step-by-step explanations
|
|
61
|
+
- **Maths:** Include worked examples with actual numbers, strategies explained in plain language
|
|
62
|
+
- **Literature:** Include character names, plot points, themes explained concretely
|
|
63
|
+
- **All subjects:** Use age-appropriate analogies that connect to the child's experience. Provide 3-5 concrete examples per major concept.
|
|
64
|
+
|
|
65
|
+
## Multi-Modal Outputs
|
|
66
|
+
|
|
67
|
+
Lesson plans are not limited to text. Use available tools to enrich the plan:
|
|
68
|
+
|
|
69
|
+
**Images** — Use `image_generate` to create visual aids where they would strengthen the lesson:
|
|
70
|
+
- Diagrams for science topics (cell structures, forces, circuits)
|
|
71
|
+
- Number lines, shapes, or worked examples for maths
|
|
72
|
+
- Maps, timelines, or scene illustrations for history and geography
|
|
73
|
+
- Any concept that's easier to understand visually than verbally
|
|
74
|
+
|
|
75
|
+
Describe the image content precisely in the generation prompt. Include the image at the relevant point in the lesson plan.
|
|
76
|
+
|
|
77
|
+
**Video** (future) — When HeyGen video generation is available, lesson plans can include short video explanations. For now, note where a video would be valuable and write the narration script so it's ready for generation.
|
|
78
|
+
|
|
79
|
+
## Curriculum Alignment
|
|
80
|
+
|
|
81
|
+
When curriculum alignment is requested:
|
|
82
|
+
- Include specific curriculum objectives and level references from the knowledge base
|
|
83
|
+
- Ensure learning outcomes match the relevant curriculum expectations
|
|
84
|
+
- Use curriculum-appropriate terminology and assessment criteria
|
|
85
|
+
- Reference relevant areas of learning from the applicable framework
|
|
86
|
+
|
|
87
|
+
When curriculum alignment is NOT requested:
|
|
88
|
+
- Take a flexible, exploratory approach tailored to the student's interests
|
|
89
|
+
- Prioritise understanding and curiosity over standardised objectives
|
|
90
|
+
- Adapt content freely to match the learner's pace and style
|
|
91
|
+
|
|
92
|
+
## Self-Contained Principle
|
|
93
|
+
|
|
94
|
+
The parent must be able to teach the entire lesson using ONLY this plan. No external resources, no "look this up", no "find a video about X". Everything the parent needs to know and say is in the plan — including any visual aids generated as part of it.
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: study-pack-builder
|
|
3
|
+
description: "Generate a complete self-study revision pack from the knowledge base. Disaggregates a subject into topics, then produces flashcards, summaries, assessment questions, images, and video for each — structured for independent student revision."
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# Study Pack Builder
|
|
7
|
+
|
|
8
|
+
You help parents and students turn a subject or topic area into a structured revision pack the student can use independently. Content comes from the knowledge base (memory).
|
|
9
|
+
|
|
10
|
+
## When to Activate
|
|
11
|
+
|
|
12
|
+
The parent or student wants to create revision materials, a study pack, flashcards, or revision notes for a subject, specification, or set of topics.
|
|
13
|
+
|
|
14
|
+
## Workflow
|
|
15
|
+
|
|
16
|
+
```
|
|
17
|
+
1. Scope the subject (what subject, what framework if any, which topics)
|
|
18
|
+
2. Disaggregate into topics (search memory, confirm structure with parent)
|
|
19
|
+
3. Generate revision materials per topic
|
|
20
|
+
4. Deliver the complete pack
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Step 1: Scope
|
|
24
|
+
|
|
25
|
+
Gather from the parent or student:
|
|
26
|
+
- **Subject or topic area** the student is studying
|
|
27
|
+
- **Assessment framework** (if applicable — exam board, certification body, or internal standard)
|
|
28
|
+
- **Student's age or year group**
|
|
29
|
+
- **Focus** — full subject or specific topics?
|
|
30
|
+
|
|
31
|
+
## Step 2: Disaggregate
|
|
32
|
+
|
|
33
|
+
Search memory for the subject's content structure and material. Load `references/disaggregation.md` for how to build the topic hierarchy from what memory returns.
|
|
34
|
+
|
|
35
|
+
Present the proposed structure to the parent for confirmation before generating materials. The parent may want to focus on specific topics rather than the full subject.
|
|
36
|
+
|
|
37
|
+
## Step 3: Generate Materials
|
|
38
|
+
|
|
39
|
+
For each confirmed topic, generate the revision materials. Load `references/materials.md` for what to produce, multi-modal output options, and quality standards.
|
|
40
|
+
|
|
41
|
+
Work through topics sequentially. After completing each topic's materials, move to the next.
|
|
42
|
+
|
|
43
|
+
## Step 4: Deliver
|
|
44
|
+
|
|
45
|
+
Save the complete pack to memory so the student can access it across sessions. Summarise what was produced and suggest a revision approach.
|
|
46
|
+
|
|
47
|
+
## Key Rules
|
|
48
|
+
|
|
49
|
+
1. **All content comes from the knowledge base.** Search memory for subject content and material. Do not generate content from training data.
|
|
50
|
+
2. **Assessment-aligned language.** Flashcards and questions should mirror the precision and phrasing used in the relevant assessment context.
|
|
51
|
+
3. **Confirm before generating.** Always confirm the topic structure with the parent before producing materials. Generation is time-consuming — don't waste it on the wrong scope.
|
|
52
|
+
4. **Self-study materials, not teaching scripts.** Unlike the lesson-planner (which produces parent-delivered plans), these materials are for the student to use independently.
|
package/payload/platform/plugins/teaching/skills/study-pack-builder/references/disaggregation.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Disaggregation — Building the Topic Structure
|
|
2
|
+
|
|
3
|
+
## How to Derive Topic Structure
|
|
4
|
+
|
|
5
|
+
Search memory for subject content, curriculum structures, and material for the requested subject and assessment framework. Build the topic hierarchy from what memory returns.
|
|
6
|
+
|
|
7
|
+
### Three-Level Hierarchy
|
|
8
|
+
|
|
9
|
+
1. **Main topics** — the broadest divisions (e.g., "Algebra", "Ecology and the Environment", "The Cold War")
|
|
10
|
+
2. **Subtopic groups** — clusters within each main topic (e.g., "Equations and Inequalities", "Food Webs and Energy Transfer")
|
|
11
|
+
3. **Individual topics** — the specific items a student needs to know (e.g., "Simultaneous equations", "Trophic levels")
|
|
12
|
+
|
|
13
|
+
Not every subject has three clean levels. Use what the knowledge base provides — two levels is fine for shorter subjects, four for very detailed ones.
|
|
14
|
+
|
|
15
|
+
### What to Extract Per Topic
|
|
16
|
+
|
|
17
|
+
For each individual topic, identify from the knowledge base:
|
|
18
|
+
- What the student is expected to know, understand, or be able to do
|
|
19
|
+
- Key terminology
|
|
20
|
+
- Any required practicals, case studies, or named examples
|
|
21
|
+
- Assessment objectives or command words associated with the topic
|
|
22
|
+
|
|
23
|
+
If memory doesn't have sufficient detail for a topic, say so — don't fill gaps from general knowledge.
|
|
24
|
+
|
|
25
|
+
### Presenting for Confirmation
|
|
26
|
+
|
|
27
|
+
Present the hierarchy to the parent as a numbered outline:
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
1. Main Topic A
|
|
31
|
+
1.1 Subtopic Group
|
|
32
|
+
- Individual topic
|
|
33
|
+
- Individual topic
|
|
34
|
+
1.2 Subtopic Group
|
|
35
|
+
- Individual topic
|
|
36
|
+
2. Main Topic B
|
|
37
|
+
...
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
Ask the parent:
|
|
41
|
+
- Does this structure match their expectations?
|
|
42
|
+
- Are there topics they want to skip or prioritise?
|
|
43
|
+
- Is the granularity right — too broad, too detailed?
|
|
44
|
+
|
|
45
|
+
Only proceed to material generation after confirmation.
|
|
46
|
+
|
|
47
|
+
### When the Knowledge Base Doesn't Have the Structure
|
|
48
|
+
|
|
49
|
+
If memory doesn't contain a content structure for the requested subject, tell the parent what's available and ask if they'd like to provide the structure themselves or work with what the knowledge base has.
|