KI-Task-Management
Aufgabenverwaltung für Mensch-KI-Kollaboration mit Token-Tracking, Protokollierung und Meta-Analysen.
| Status | Aktiv |
|---|---|
| Datenbank | ki_protokoll (4 Tabellen) |
| API | /api/v1/tasks |
| Web-UI | /docs/modul/ki-task-management |
| CLI | /var/www/tools/ki-tasks/cli.php |
| KI-Backends | Ollama, Claude Code, Anthropic API |
Statistiken
3
Gesamt
0
Offen
0
In Arbeit
3
Fertig
Komponenten
- Dashboard - Web-UI mit Task-Erstellung und -Verwaltung
- API-Referenz - REST-API Dokumentation
- CLI-Befehle - Kommandozeilen-Interface
- Datenbank-Schema - Tabellenstruktur
- Hook-Integration - Automatische Task-Erstellung
Architektur
Mensch / KI
↓
Task erstellen (Web-UI, API, CLI, Hook)
↓
┌─────────────────────────────────────┐
│ tasks │
│ ├── uuid, title, description │
│ ├── type (human/ai/mixed) │
│ ├── priority, status │
│ └── metadata (JSON) │
└─────────────────────────────────────┘
↓
Task zuweisen
↓
┌─────────────────────────────────────┐
│ task_assignments │
│ ├── assignee, assignee_type │
│ ├── model_name │
│ └── status (pending → completed) │
└─────────────────────────────────────┘
↓
KI-Ausführung (Ollama / Anthropic API)
↓
┌─────────────────────────────────────┐
│ task_results │
│ ├── request, response │
│ ├── tokens_input, tokens_output │
│ ├── duration_ms, cost_usd │
│ └── status (success/error) │
└─────────────────────────────────────┘
↓
Protokollierung
↓
┌─────────────────────────────────────┐
│ task_comments │
│ └── Alle Änderungen dokumentiert │
└─────────────────────────────────────┘
Schnellstart
Task via CLI erstellen
php /var/www/tools/ki-tasks/cli.php create \
--title="Analyse durchführen" \
--type=ai_task \
--priority=high
Task mit Ollama ausführen
php /var/www/tools/ki-tasks/cli.php execute 1 \
--executor=ollama \
--model=mistral
Task via API erstellen
curl -X POST http://localhost/api/v1/tasks \
-H "Content-Type: application/json" \
-d '{"title":"Aufgabe","type":"ai_task"}'
Use Cases
| Use Case | Beschreibung |
|---|---|
| Task-Management | Aufgaben erstellen, zuweisen, verfolgen |
| KI-Delegation | Tasks an Ollama oder Anthropic API delegieren |
| Protokollierung | Alle Aktionen mit Timestamps dokumentieren |
| Token-Tracking | Verbrauch und Kosten pro Task messen |
| Meta-Analysen | Statistiken über Tasks und KI-Nutzung |
| Automatisierung | Tasks aus TODO/TASK Patterns erstellen |
Letzte Tasks
| ID | Titel | Typ | Status | Erstellt |
|---|---|---|---|---|
| 3 | Integriere Task-Management in Home/KI-Ch... | human_task | completed | 2025-12-20 03:17 |
| 2 | Hook-Test von Claude Code | ai_task | completed | 2025-12-20 03:15 |
| 1 | Test-Task für KI-Analyse | ai_task | completed | 2025-12-20 03:04 |