Compare commits

...

10 Commits

Author SHA1 Message Date
Floki
069e3cb4ec 📊 auto-update: system snapshot 2026-06-23 2026-06-23 09:00:52 +02:00
Floki
37906f5bde 📊 auto-update: system snapshot 2026-06-23 2026-06-23 07:00:43 +02:00
Floki
6592186839 📊 auto-update: system snapshot 2026-06-23 2026-06-23 06:00:45 +02:00
Floki
c15a42b5cf 📊 auto-update: system snapshot 2026-06-23 2026-06-23 05:00:31 +02:00
Floki
7ed93f9d61 📊 auto-update: system snapshot 2026-06-23 2026-06-23 04:00:34 +02:00
Floki
b56f6104fc 📊 auto-update: system snapshot 2026-06-23 2026-06-23 03:01:20 +02:00
Floki
6ab9645009 📊 auto-update: system snapshot 2026-06-23 2026-06-23 02:00:32 +02:00
Floki
38f3a4485a 📊 auto-update: system snapshot 2026-06-22 2026-06-22 17:00:36 +02:00
Floki
5ddcd7cf65 📊 auto-update: system snapshot 2026-06-22 2026-06-22 16:00:09 +02:00
Floki
e260916c2e 📊 auto-update: system snapshot 2026-06-22 2026-06-22 15:00:13 +02:00
4 changed files with 127 additions and 4 deletions

View File

@ -0,0 +1,75 @@
# KPT-LABS — README First für Opencode
> **Stand**: 2026-06-22 16:00
> **Nächster Agent**: OWL (CEO/Projektleiter)
## 🎯 Projektübersicht
KPT-LABS ist ein Multi-Agent AI Dashboard mit zentralem Kommandozentrum.
## 🏗️ Aktuelle Architektur
```
┌─────────────────────────────────────────────────────────────┐
│ KPT-LABS Agent OS │
├─────────────────────────────────────────────────────────────┤
│ Dashboard :3000 (Next.js + SQLite) │
│ Ollama :11434 (lokal, kostenlos) │
│ OpenRouter (API Keys in dashboard/.env) │
│ Obsidian Vault (Second Brain) │
└─────────────────────────────────────────────────────────────┘
```
## 🔑 API Key Rotation
- **Dashboard**: http://localhost:3000/dashboard/system
- **Rotation Chain**: Key+Model Kombinationen in Reihenfolge
- **Auto-Rotation**: Bei 429 automatisch zum nächsten Key
- **Provider**: OpenRouter, NVIDIA, Ollama (lokal), Ollama Cloud
## 📂 Wichtige Pfade
- **Projekt**: `E:\OpenCode_Projekte\KPT-LABS`
- **Dashboard**: `E:\OpenCode_Projekte\KPT-LABS\dashboard`
- **API Keys Config**: `E:\OpenCode_Projekte\KPT-LABS\dashboard\.env`
- **Database**: `E:\OpenCode_Projekte\KPT-LABS\dashboard\data\kptlabs.db`
- **Obsidian Vault**: `E:\OpenCode_Projekte\obsidianVault`
- **System Scripts**: `E:\OpenCode_Projekte\KPT-LABS\system`
- **System Memory**: `E:\OpenCode_Projekte\obsidianVault\05-Dashboard\System-Memory.md`
## 🚀 Quick Start
```bash
# Dashboard starten (Dev Mode)
cd E:\OpenCode_Projekte\KPT-LABS\dashboard
npm run dev
# Dashboard bauen (Production)
npm run build
npm start
# Ollama prüfen
curl http://localhost:11434/api/tags
```
## 📝 Regeln für Opencode
1. **Immer im Projekt-Root**: `E:\OpenCode_Projekte\KPT-LABS`
2. **Port 3000 muss frei sein** vor dem Start
3. **Keine API-Keys in Code hardcoden** — immer `.env` nutzen
4. **DB-Änderungen**: Migration-Script in `system/migrations/` erstellen
5. **Nach großen Änderungen**: Vault committen
6. **Session Compression**: Bei langen Sessions Zusammenfassung erstellen
## ⚠️ Bekannte Issues
1. **Next.js TS Errors** — Dependencies haben TS Probleme (strict: false als Workaround)
2. **Ollama Cloud** — Braucht API Key für ollama.com
3. **Session Compression UI** — Noch nicht im Dashboard implementiert
## 🔄 Nächste Schritte
1. Session Compression UI Button im Dashboard
2. Telegram Bot 2 — /key rotate Command
3. Automatische Rotation bei 429 (Cron-Job)
4. Context Memory Link für OWL

View File

@ -1,5 +1,5 @@
{
"timestamp": "2026-06-22T14:00:11.932377",
"timestamp": "2026-06-22T17:00:35.778736",
"version": "2.0.0",
"tokenUsage24h": {
"requests": 0,
@ -16,8 +16,8 @@
"failures": 0
},
"vault": {
"totalFiles": 36,
"totalSizeKB": 97
"totalFiles": 37,
"totalSizeKB": 100
},
"scheduledTasks": {
"total": 0,

View File

@ -0,0 +1,48 @@
{
"timestamp": "2026-06-23T09:00:51.983478",
"version": "2.0.0",
"agentState": {
"uptime": 0,
"totalSessions": 0,
"totalMessages": 0,
"health": "healthy",
"lastActive": "2026-06-22 15:12:30",
"lastModel": "openrouter/deepseek/deepseek-v4-flash",
"lastProvider": "openrouter"
},
"tokenUsage24h": {
"requests": 0,
"tokens": 0,
"cost": 0,
"avgLatency": 0,
"sessions": 0,
"models": 0
},
"providers": [],
"obsidianSync": {
"totalSyncs": 0,
"tokensSaved": 0,
"failures": 0
},
"vault": {
"totalFiles": 37,
"totalSizeKB": 100
},
"scheduledTasks": {
"total": 0,
"active": 0
},
"knowledge": {
"entries": 0,
"ideas": 0,
"newIdeas": 0
},
"inbox": {
"active": 3,
"archived": 0
},
"youtube": {
"total": 5,
"processed": 5
}
}

View File

@ -1,6 +1,6 @@
# 🚀 KPT-LABS Agent OS — System Recovery & Onboarding Guide
> **Letzte Aktualisierung:** 22.06.2026 14:00 | **Version:** 2.0.0
> **Letzte Aktualisierung:** 23.06.2026 09:00 | **Version:** 2.0.0
> **Vault Hash:** `v1.0-20260619-1400`
---