summary-generator
Lektionszusammenfassungen mit sokratischer Extraktion erstellen
Também disponível em: 92Bilal26
Das manuelle Erstellen von Lektionszusammenfassungen kostet Zeit und birgt das Risiko, zentrale Erkenntnisse zu übersehen. Diese Skill nutzt einen bewährten sokratischen Fragenrahmen, um aus jeder Lektionsdatei konsistent Kernkonzepte, mentale Modelle und praktische Muster zu extrahieren.
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
Begleitzusammenfassungen erstellen
Generiere .summary.md-Dateien für neue Lektionen, um kurze Referenzleitfäden für Lernende bereitzustellen.
Bestehende Zusammenfassungen prüfen
Überprüfe und aktualisiere veraltete Lektionszusammenfassungen mit dem sokratischen Rahmenwerk für Qualität.
Kernaussagen extrahieren
Ziehe essenzielle Konzepte und Muster aus Lektionen, um sie in Lernleitfäden oder Schnellreferenzen zu teilen.
Tente Estes Prompts
Use the summary-generator skill to create a .summary.md file for this lesson. Read the lesson first, then apply the Socratic extraction process.
Use summary-generator to review this lesson and identify if any key concepts, mental models, or patterns are missing from the current summary.
Generate a summary for this A2/B1/C1 level lesson using the summary-generator skill. Target the word count appropriate for the proficiency level.
Use the Socratic questions from summary-generator: What is the one thing students must remember? What mental models does this install? What patterns can they apply? What mistakes do they make?
Melhores Práticas
- Lies stets die gesamte Lektionsdatei, bevor du die sokratischen Extraktionsfragen anwendest
- Validiere jede Zusammenfassung vor der Finalisierung anhand der Anti-Patterns-Checkliste
- Passe die Länge der Zusammenfassung an das in der Lektions-Frontmatter angegebene Kompetenzniveau an
Evitar
- Vollständige Erklärungen einfügen statt auf Konzepte zu verweisen
- Codebeispiele kopieren statt Muster zu beschreiben
- Framework-Terminologie verwenden, die Lernende nicht sehen sollten