summary-generator
إنشاء ملخصات الدروس باستخدام استخراج سقراطي
Também disponível em: 92Bilal26
إنشاء ملخصات الدروس يدوياً يستغرق وقتاً وقد يفوتك الرؤى الرئيسية. تستخدم هذه المهارة إطار عمل مسائل سقراطي مثبت الفعالية لاستخراج المفاهيم الأساسية والنماذج الذهنية والأنماط العملية من أي ملف درس.
Baixar o ZIP da skill
Upload no Claude
Vá em Configurações → Capacidades → Skills → Upload skill
Ative e comece a usar
Testar
A utilizar "summary-generator". Generate a summary for a Python functions lesson
Resultado esperado:
- Core Concept: Functions are reusable blocks of code that perform specific tasks and can accept inputs and return outputs.
- Key Mental Models: Input → Process → Output flow; DRY principle (Do Not Repeat Yourself); Function as contract between caller and implementation.
- Critical Patterns: Define with def keyword; parameters for inputs; return statement for outputs; default argument values.
- Common Mistakes: Forgetting to call the function; confusing print with return; not handling None returns.
- Connections: Builds on: Variables and data types; Leads to: Classes and object-oriented programming.
A utilizar "summary-generator". Create a summary for a git basics lesson at beginner level
Resultado esperado:
- Core Concept: Git tracks changes to files over time, allowing you to save versions and collaborate with others.
- Key Mental Models: Snapshot vs. save; Local repository as complete history; Staging area as review step before committing.
- Critical Patterns: git init to start tracking; git add to stage changes; git commit to save version; git status to check state.
- Common Mistakes: Committing without adding first; forgetting to write clear commit messages; committing sensitive data.
- Connections: Builds on: Command line basics; Leads to: Branching and merging, remote repositories.
A utilizar "summary-generator". Summarize a design patterns lesson for intermediate developers
Resultado esperado:
- Core Concept: Design patterns are proven solutions to common software design problems that can be adapted to fit specific situations.
- Key Mental Models: Problem-solution pairing; Pattern classification by purpose; Composition over inheritance.
- Critical Patterns: Factory Method for object creation; Observer for event handling; Strategy for interchangeable algorithms.
- Common Mistakes: Over-engineering with patterns where simple code suffices; applying patterns without understanding trade-offs.
- Connections: Builds on: Object-oriented programming; Leads to: Architectural patterns, SOLID principles.
Auditoria de Segurança
SeguroThis skill contains only documentation and prompt instructions. No executable code, network calls, file system access, or environment variable reading. Pure prompt-based skill with zero risk factors. All 32 static findings are false positives triggered by markdown syntax (triple backticks for code blocks) and legitimate documentation text.
Fatores de risco
⚙️ Comandos externos (19)
🌐 Acesso à rede (1)
📁 Acesso ao sistema de arquivos (1)
Pontuação de qualidade
O Que Você Pode Construir
إنشاء ملخصات مصاحبة
إنشاء ملفات .summary.md للدروس الجديدة لتوفير أدلة مرجعية سريعة للطلاب.
تدقيق الملخصات الموجودة
مراجعة وتحديث ملخصات الدروس القديمة باستخدام إطار العمل السقراطي لضمان الجودة.
استخراج النقاط الرئيسية
سحب المفاهيم والأنماط الأساسية من الدروس لمشاركتها في أدلة الدراسة أو المراجع السريعة.
Tente Estes Prompts
استخدم مهارة مولد-الملخصات لإنشاء ملف .summary.md لهذا الدرس. اقرأ الدرس أولاً، ثم طبّق عملية الاستخراج السقراطي.
استخدم مولد-الملخصات لمراجعة هذا الدرس وتحديد ما إذا كانت أي مفاهيم أو نماذج ذهنية أو أنماط مفقودة من الملخص الحالي.
Melhores Práticas
- Always read the full lesson file before applying the Socratic extraction questions
- Validate each summary against the anti-patterns checklist before finalizing
- Match summary length to the proficiency level specified in lesson frontmatter
Evitar
- Including full explanations instead of pointing to concepts
- Copying code examples instead of describing patterns
- Using framework terminology that students should not see