Files
openclaw/.learnings/LEARNINGS.md
2026-05-22 14:42:55 +00:00

19 lines
1.1 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Learnings
Corrections, insights, and knowledge gaps captured during development.
**Categories**: correction | insight | knowledge_gap | best_practice
---
## 2026-05-19: Nie direkt auf dem Testserver entwickeln
- **Was passiert:** MVC-Refactoring (Issue #46) direkt in `/var/www/test/html/` gemacht statt im Git-Repo
- **Korrektur:** Code-Änderungen IMMER im Git-Repo machen (lokal klonen, Feature-Branch, commit, push), dann auf Testumgebung deployen
- **Workflow:** Git Repo → Feature Branch → Code → Commit → Push → Deploy auf Testumgebung
## 2026-05-22: Git-Analyse MUSS mit Git-LLM gemacht werden
- **Was passiert ist:** Bei Issue-Pipeline habe ich Phase 1 (Analyse) selbst gemacht statt das Git-LLM (Ollama-Git/qwen/qwen3.6-27b) zu nutzen
- **Was Martin gesagt hat:** Analyse muss auch mit dem Git-LLM laufen
- **Regel:** ALLES was mit Git/Gitea-Issues zu tun hat inklusive Analyse, Spezifikation, Komplexitätsbewertung MUSS über das Git-LLM laufen. Niemals selbst analysieren.
- **MEMORY.md** wurde aktualisiert mit Hinweis unter Git-Regeln.