- Wissensdatenbank Struktur - Projekt-Übersichten - Session-Management Templates - Dashboard Integration - README.md mit Recovery Guide - System Snapshot Generator Generiert: 2026-06-19
37 lines
823 B
Markdown
37 lines
823 B
Markdown
# 📋 Session-Übersicht
|
|
|
|
> Auto-gespeicherte Agent-Sessions
|
|
|
|
## Struktur
|
|
|
|
### 📅 [[Daily-Sessions|Daily Sessions]]
|
|
- Tägliche Session-Zusammenfassungen
|
|
- Format: `YYYY-MM-DD_agent-name.md`
|
|
|
|
### 📊 [[Weekly-Sessions|Weekly Sessions]]
|
|
- Wöchentliche Zusammenfassungen
|
|
- Aggregierte Statistiken
|
|
|
|
### 🤖 [[Agent-Logs|Agent-Logs]]
|
|
- Detaillierte Agent-Aktivitäten
|
|
- Pro Agent separat
|
|
|
|
## 📌 Letzte Sessions
|
|
|
|
```dataview
|
|
TABLE file.ctags as "Agent", file.mtime as "Datum"
|
|
FROM "04-Sessions"
|
|
SORT file.mtime DESC
|
|
LIMIT 10
|
|
```
|
|
|
|
## 💡 Auto-Session-Save
|
|
|
|
Sessions werden automatisch vom KPT-LABS Dashboard gespeichert:
|
|
- **Trigger**: Alle N Nachrichten oder manuell
|
|
- **Format**: Markdown mit YAML-Frontmatter
|
|
- **Ort**: `04-Sessions/Daily/YYYY-MM-DD_HH-MM_agent-name.md`
|
|
|
|
---
|
|
*Tags: #sessions #auto-save #agent-logs*
|