NekoCore-OS course-creator
Create structured courses, curricula, lesson plans, and exam prep materials from topics or books
install
source · Clone the upstream repo
git clone https://github.com/voardwalker-code/NekoCore-OS
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/voardwalker-code/NekoCore-OS "$T" && mkdir -p ~/.claude/skills && cp -r "$T/project/MA/MA-skills/course-creator" ~/.claude/skills/voardwalker-code-nekocore-os-course-creator && rm -rf "$T"
manifest:
project/MA/MA-skills/course-creator/SKILL.mdsource content
Course Creator Skill
Triggers
- "create a course", "build a course", "design a course"
- "curriculum", "syllabus", "lesson plan"
- "book to course", "turn this book into a course"
- "exam prep", "prepare for exam", "study for test", "mock exam"
- "midterm", "final exam", "assessment"
Mode Detection
| Signal | Mode |
|---|---|
| "book to course" / "textbook" + "course" / "turn this book" | BOOK-TO-COURSE |
| "exam" / "test" / "midterm" / "final" + "prep" / "prepare" / "study" | EXAM PREP |
| Default (course / curriculum / syllabus / lesson plan) | COURSE CREATOR |
Workflow
Course Creator
- Requirements — subject, audience, depth, optional source material
- Research — web_search for standard curriculum, key concepts, prerequisites
- Course structure — 4-12 modules, prerequisite mapping, lesson sequence, time estimates
- INTERACTIVE PAUSE — present outline, get user feedback
- Lesson content — objectives (Bloom's), explanations, examples, vocabulary, practice
- Assessments — per-module quizzes, midterm, final (all with answer keys)
- Syllabus — week-by-week schedule, grading weights, study tips
- Output all to
course-{subject}/
Book-to-Course
- Book upload — use existing POST /api/book/upload to chunk
- Chapter analysis — extract arguments, concepts, vocabulary per chunk batch
- Course mapping — restructure chapters into modules, flag core vs reference
- INTERACTIVE PAUSE — present proposed structure
- Module content — objectives, summary, takeaways, reading assignments, discussion, practice
- Assessments — quizzes, midterm, final
- Reading schedule — day/week plan with page references
- Optional tutor entity creation
- Output all to
course-{subject}/
Exam Prep
- Exam details — subject, format, topics, date, practice materials
- Study plan — day-by-day (if date) or topic-ordered (if no date)
- Topic reviews — concise concept review, practice questions, worked examples, exam traps
- Cheat sheet — one-page summary of most important facts
- Mock exam — full-length, matching real format + separate answer key
- Optional tutor entity creation
- Output all to
exam-prep-{subject}/
API Endpoints
— Chunk book for Book-to-Course modePOST /api/book/upload
— Create optional tutor entityPOST /api/entities/create
— Inject subject knowledgePOST /api/entities/{id}/memories/inject
— Process tutor cognitive statePOST /api/entities/{id}/cognitive/tick
Tools Used
— API calls to NekoCore OSweb_fetch
— Research curriculum standards, resourcesweb_search
— Output course documents to workspacews_write
— Load source material if providedws_read