From d20b3ad3e0f3c72a1a2623415bca8b2ba7a295d9 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 31 Jan 2026 08:27:35 +0000 Subject: [PATCH 1/2] Add ProduktionsHero - Interactive production management learning game A gamified web-based learning application for studying production management concepts relevant to the TU Berlin "Nachhaltiges Management" program. Features: - 15 interactive challenges covering EOQ/Andler formula, ABC/XYZ analysis, MRP, scheduling, capacity planning, and sustainable production - Responsive design for desktop and mobile (iPhone) - Encyclopedia with formulas and theory - Achievement system and factory building gamification - Progress tracking with local storage https://claude.ai/code/session_01BQJXJZ6hXxGjsBAcBbRYK2 --- produktionshero.html | 2160 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 2160 insertions(+) create mode 100644 produktionshero.html diff --git a/produktionshero.html b/produktionshero.html new file mode 100644 index 0000000..e25ce83 --- /dev/null +++ b/produktionshero.html @@ -0,0 +1,2160 @@ + + + + + + ProduktionsHero - Das Fabrikmanagement-Spiel + + + +
+ + + + + + + +
+
+ +

ProduktionsHero

+

Werde zum Meister des Produktionsmanagements!

+ +
+ +
+ + + +
+

Was dich erwartet:

+
+
+
+ 📊 + Losgrößenplanung & EOQ-Formel +
+
+
+
+ 📦 + ABC/XYZ-Analyse +
+
+
+
+ 🔄 + MRP & Bedarfsplanung +
+
+
+
+ ⏱️ + Durchlaufterminierung +
+
+
+
+ 🌱 + Nachhaltige Produktion +
+
+
+
+
+
+ + +
+
+
+

🎯 Herausforderungen

+ 0/15 +
+
+
+
+
+ +
+ +
+
+ + +
+
+
+

🏭 Deine Fabrik

+ Stufe 1 +
+ +
+
+
📦
+
Lager
+
Basis
+
+
+
⚙️
+
Produktion
+
Basis
+
+
+
📊
+
Planung
+
Basis
+
+
+
🌱
+
Nachhaltigkeit
+
Basis
+
+
+ +
+

Löse Challenges, um deine Fabrik auszubauen!

+
+
+ +
+
+

📈 Fabrik-Statistiken

+
+
+
+ Effizienz + 0% +
+
+
+
+
+ Nachhaltigkeit + 0% +
+
+
+
+
+
+
+ + +
+
+
+

📚 Lexikon

+
+

+ Alle wichtigen Konzepte und Formeln für die Prüfung +

+ +
+ +
+
+
+ + +
+
+
+

🏆 Erfolge

+ 0/12 +
+ +
+ +
+
+
+
+ + + + + + + + +
+ + + + From 88130ffd2e2041149889dc5c0f66290645b24ca7 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 12 Jul 2026 08:38:17 +0000 Subject: [PATCH 2/2] Add CLAUDE.md with project documentation and TODO for Expert-Modus Documents the ProduktionsHero learning game status, deployment URLs, and outstanding work for the Expert mode expansion. https://claude.ai/code/session_01BQJXJZ6hXxGjsBAcBbRYK2 --- CLAUDE.md | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..97a174a --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,46 @@ +# ProduktionsHero - Lernspiel für Produktionsmanagement + +## Status: In Entwicklung + +### Beschreibung +Interaktives Lernspiel für das Fach "Produktionsmanagement" im Studiengang "Nachhaltiges Management" (TU Berlin). Spielbar auf Desktop und iPhone. + +### Datei +- `produktionshero.html` - Komplettes Spiel (HTML/CSS/JS, keine Dependencies) + +### Deployment +- **Branch:** `claude/production-management-game-7sgSF` +- **GitHub Pages:** `https://kennydenvers.github.io/hello/produktionshero.html` +- **Alternativ:** `https://htmlpreview.github.io/?https://github.com/KennyDenvers/hello/blob/claude/production-management-game-7sgSF/produktionshero.html` + +### Enthaltene Themen (Basic-Modus) +- Losgrößenplanung (Andler-Formel/EOQ) +- ABC/XYZ-Analyse +- MRP & Bedarfsplanung +- Durchlaufterminierung +- Kapazitätsplanung +- Nachhaltige Produktion + +--- + +## TODO: Expert-Modus erweitern + +**Priorität: Hoch** + +### Anforderung: +1. **Basic/Expert-Modus Auswahl** am Spielstart +2. **Mehr Aufgaben pro Thema:** 5-8 verschiedene Aufgaben statt nur 1 +3. **Wiederholbare Challenges:** Gleiche Challenge mit neuen Aufgaben spielbar +4. **Angepasstes Level-System:** Mehr Punkte/Level für Expert-Modus + +### Umsetzung: +- Aufgaben-Pool pro Thema erstellen +- Zufällige Aufgabenauswahl bei Challenge-Start +- Fortschritt pro Thema tracken (z.B. "3/8 Aufgaben gelöst") +- Separater Punktestand für Basic/Expert + +--- + +## Session-Historie + +**2026-07-11:** Initiale Version erstellt mit 15 Challenges, Lexikon, Achievements, Fabrik-Gamification. Expert-Modus noch nicht implementiert.