← ClaudeAtlas

nakafa-contentlisted

Create educational content (MDX) and exercises for Nakafa platform. Use when creating or editing subject materials, exercises, questions, answers/explanations, or any educational content in MDX format.
nakafaai/nakafa.com · ★ 78 · AI & Automation · score 72
Install: claude install-skill nakafaai/nakafa.com
# Nakafa Content Creation Guidelines for creating educational content and exercises for the Nakafa platform. ## Language ### For This Skill (Documentation) Use normal English - clear and straightforward. ### For Actual Content (MDX Files) - **Indonesian (id.mdx)**: Use proper Indonesian grammar with natural, engaging tone - Use "kita" (we) and "kalian" (you all) to engage readers - Write like you're explaining to a friend, but keep it educational - Example: "Mari kita mulai dengan...", "Pernahkah kalian memperhatikan..." - **English (en.mdx)**: Use proper English grammar with natural, engaging tone - Write clearly and conversationally - Keep it educational but not stiff ## Content Types ### 1. Subject Content (`packages/contents/subject/`) Educational materials organized by level: ``` subject/ ├── high-school/ │ ├── 10/mathematics/{topic}/ │ ├── 11/mathematics/{topic}/ │ └── 12/mathematics/{topic}/ └── university/ └── bachelor/ └── ai-ds/ ``` Each topic contains: - `id.mdx`: Indonesian version (Source of Truth) - natural, engaging tone - `en.mdx`: English translation - natural, engaging tone - `graph.tsx`: Shared graph component (if needed) ### 2. Exercises (`packages/contents/exercises/`) ``` exercises/ ├── high-school/ │ ├── tka/mathematics/{material}/{set}/{number}/ │ └── snbt/{subject}/{material}/{set}/{number}/ └── middle-school/ ``` Exercise structure per number: ``` {number}/ ├── _question/ │ ├── id.mdx │ └── en.mdx ├─