a35c94e2d9
Files changed: - kb/concepts/Ambient Environment Dependency.md - kb/concepts/Anti-Cramming Heuristic.md - kb/concepts/Audit Trail.md - kb/concepts/BM25.md - kb/concepts/Bulk Operations.md - kb/concepts/CI Integration.md - kb/concepts/CPPC.md - kb/concepts/Checkpoint Audit.md - kb/concepts/Claude Code Auto Mode.md - kb/concepts/Command Round-Trip Integrity.md - kb/concepts/Confidence Scoring.md - kb/concepts/Consolidation Tiers.md - kb/concepts/Content Quality Control.md - kb/concepts/Context Isolation.md - kb/concepts/Contradiction Resolution.md - kb/concepts/Cross-platform Agent Skills.md - kb/concepts/Crystallization.md - kb/concepts/Delete Rather Than Anonymize.md - kb/concepts/Denylist over Allowlist.md - kb/concepts/Detect-Repair Asymmetry.md - kb/concepts/Diff-Reviewable Agent Edits.md - kb/concepts/Dual Licensing by File Plan.md - kb/concepts/Entity Extraction.md - kb/concepts/Episodic Memory.md - kb/concepts/Event-Driven Automation.md - kb/concepts/Filter on Ingest.md - kb/concepts/Forgetting.md - kb/concepts/Graph Traversal.md - kb/concepts/Green Suite Blind Spot.md - kb/concepts/Hooks.md - kb/concepts/Hybrid Search.md - kb/concepts/Implementation Spectrum.md - kb/concepts/Index Scaling.md - kb/concepts/Issue Label Scheme.md - kb/concepts/Iteration and Cost Limits.md - kb/concepts/KB Migration.md - kb/concepts/KB Stack Versioning.md - kb/concepts/Knowledge Compounding.md - kb/concepts/Knowledge Graph.md - kb/concepts/LLM Wiki Pattern.md - kb/concepts/Lint Workflow.md - kb/concepts/MCP-Leseserver.md - kb/concepts/Mass-Update Gate.md - kb/concepts/Memory Lifecycle.md - kb/concepts/Mesh Sync.md - kb/concepts/Modbus.md - kb/concepts/Multi-Agent Collaboration.md - kb/concepts/Naming Convention Conflict.md - kb/concepts/OKF Compatibility.md - kb/concepts/Optional Instance Context File.md - kb/concepts/Personalization Plane.md - kb/concepts/Privacy and Governance.md - kb/concepts/Procedural Memory.md - kb/concepts/Publish-Remote Gate.md - kb/concepts/Quality Scoring.md - kb/concepts/Quality and Self-Correction.md - kb/concepts/RAG.md - kb/concepts/Reciprocal Rank Fusion.md - kb/concepts/SSD TRIM.md - kb/concepts/Scale Ceiling.md - kb/concepts/Self-Healing.md - kb/concepts/Semantic Lint Automation.md - kb/concepts/Semantic Memory.md - kb/concepts/Session Orientation.md - kb/concepts/Shared vs Private.md - kb/concepts/Split Merge Reclassify.md - kb/concepts/Split Threshold.md - kb/concepts/Structural Enforcement over Documented Rule.md - kb/concepts/Stub Threshold.md - kb/concepts/Supersession.md - kb/concepts/Three-Layer Architecture.md - kb/concepts/Token Economics.md - kb/concepts/Typed Relationships.md - kb/concepts/User Management.md - kb/concepts/Vector Search.md - kb/concepts/Work Coordination.md - kb/concepts/Workflow Extraction.md - kb/concepts/Workflow Orchestration.md - kb/concepts/Working Memory.md - kb/concepts/Write-Once Frontmatter Fields.md - kb/log.md - work/link-taxonomy-migration/glossary.md
5.2 KiB
5.2 KiB
type, concept_type, tags, created, modified, related, sources, confidence, confidence_base, provenance, summary
| type | concept_type | tags | created | modified | related | sources | confidence | confidence_base | provenance | summary | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| types/concept.md | workflow |
|
2026-07-26 | 2026-08-29 |
|
|
0.85 | 0.85 | sourced | Mechanismus von Event-Listenern, der bei Wiki-Lebenszyklusereignissen wie Quellen-Ingest, Seitenänderung und Sitzungsende automatisch Aktionen auslöst. |
Hooks
Typ: Workflow (Event-Listener-Mechanismus)
Definition
Hooks sind Event-Listener, die automatische Aktionen als Reaktion auf bestimmte Ereignisse im Lebenszyklus des Wiki auslösen. Sie sind der Implementierungsmechanismus für Event-Driven Automation und ermöglichen dem Wiki, automatisch auf Änderungen zu reagieren, ohne menschliche Eingriffe.
Kernpunkte
Der Mechanismus
Ein Hook besteht aus:
- Ereignis: Die Auslöserbedingung (z.B. Datei erstellt, Sitzung beendet)
- Listener: Code oder Logik, die das Ereignis erkennt
- Aktion: Die automatische Reaktion auf das Ereignis
Hook-Typen
| Hook-Typ | Auslöser | Typische Aktionen |
|---|---|---|
| Pre-Ingest | Vor Quellenverarbeitung | Quelle validieren, auf Duplikate prüfen |
| Post-Ingest | Nach Quellenverarbeitung | Index aktualisieren, Operation protokollieren, Entitäten extrahieren |
| Pre-Write | Vor dem Schreiben ins Wiki | Inhalte validieren, auf Widersprüche prüfen |
| Post-Write | Nach dem Schreiben ins Wiki | Querverweise aktualisieren, Vertrauen neu berechnen |
| Pre-Delete | Vor dem Löschen aus Wiki | Inhalte archivieren, keine Abhängigkeiten überprüfen |
| Post-Delete | Nach dem Löschen aus Wiki | Index aktualisieren, Operation protokollieren, Referenzen bereinigen |
| Pre-Query | Vor Abfrageverarbeitung | Kontext laden, relevante Seiten identifizieren |
| Post-Query | Nach Abfrageverarbeitung | Antwort erfassen, falls wertvoll, Zugriffszeitstempel aktualisieren |
| Session Start | Benutzer/Agent startet Sitzung | Aktuellen Kontext laden, relevante Seiten anzeigen |
| Session End | Benutzer/Agent beendet Sitzung | Sitzung verdichten, Erkenntnisse erfassen, Kristallisierung auslösen |
| Geplant | Timer (täglich/wöchentlich/monatlich) | Lint ausführen, Vertrauen verfallen lassen, Tiers konsolidieren |
Implementierungsansätze
1. Dateisystem-Watcher
raw/-Verzeichnis auf neue Dateien überwachen- Ingest auslösen, wenn neue Datei erkannt
- Vorteile: Einfach, funktioniert mit jedem Dateisystem
- Nachteile: Auf dateibasierte Ereignisse beschränkt
2. API/Webhook-basiert
- Wiki als Service mit Webhook-Endpunkten verfügbar machen
- Externe Systeme posten Ereignisse an Webhooks
- Vorteile: Flexibel, funktioniert mit externen Systemen
- Nachteile: Erfordert Service-Infrastruktur
3. In-Process-Hooks
- Hooks in LLM-Agent-Code integriert
- Auslösen bei internen Ereignissen (Speicherschreibvorgang, Sitzungsende, etc.)
- Vorteile: Vollständiger Zugriff auf internen Status, effizient
- Nachteile: Eng mit Agent-Implementierung gekoppelt
4. Plugin-System
- Ladbare Hook-Module
- Hooks hinzufügen/entfernen, ohne Core-Code zu ändern
- Vorteile: Erweiterbar, modular
- Nachteile: Komplexer zu implementieren
Hook-Konfiguration
Beispielkonfiguration in AGENTS.md:
hooks:
- event: on_new_source
action: auto_ingest
enabled: true
priority: high
- event: on_session_end
action: compress_and_file
enabled: true
priority: medium
threshold: 0.7 # Qualitätsschwelle für automatisches Erfassen
- event: on_schedule
action: run_lint
enabled: true
schedule: "0 2 * * *" # Täglich um 2 Uhr
- event: on_memory_write
action: check_contradictions
enabled: true
priority: high
Fehlerbehandlung
Hooks sollten robust sein:
- Fehler sollten protokolliert, aber nicht die Hauptoperation blockieren
- Wiederholungslogik für vorübergehende Fehler
- Circuit Breaker für wiederholt fehlgeschlagene Hooks
- Manuelle Außerkraftsetzungsmöglichkeit
Vorteile
- Automatisierung: Reduziert manuelle Wartungslast
- Konsistenz: Stellt sicher, dass Aktionen immer ausgeführt werden
- Erweiterbarkeit: Einfaches Hinzufügen neuer Verhaltensweisen
- Entkopplung: Trennt Auslöser von Aktionen
- Nachverfolgbarkeit: Hook-Ausführungen können protokolliert werden
Wann zu verwenden
- Jedes Wiki mit Event-Driven Automation
- Wikis, in denen Wartungslast ein Anliegen ist
- Multi-Benutzer- oder Multi-Agent-Setups
- Produktions-Wikis
Wann NICHT zu verwenden
- Kleine, einfache Wikis, wo manuell ausreicht
- Situationen, in denen Hook-Komplexität nicht gerechtfertigt ist
- Vollständig statische Wikis
Verwandte Concepts
- Memory Lifecycle - Was Hooks helfen zu verwalten
- Quality and Self-Correction - Qualitätsbezogene Hooks
Siehe auch
- Supersession (ausgelöst durch Hooks)
- Consolidation Tiers (hochgestuft durch Hooks)
- Forgetting (angewandt durch Hooks)
- Confidence Scoring (aktualisiert durch Hooks)
Beziehungen
- grounds: Event-Driven Automation
- exemplifies: LLM Wiki Pattern