What problem does it solve?
This Skill helps agents stop re-deriving knowledge from scratch by turning ingested documents into a persistent wiki plus a typed knowledge graph with evidence, so answers compound over time.
Core Features & Use Cases
- Wiki-first knowledge compounding: Maintains summaries, entity pages, and topic pages so future queries hit the fast path first.
- Typed entity/relation graph with provenance: Extracts entities and relations, stores confidence-weighted edges, and links every claim back to source chunks for auditability.
- Graph traversal with evidence: Uses BFS (depth-capped) to assemble relevant subgraphs for multi-hop questions and returns supporting documents/chunks.
Quick Start
Ask an agent to ingest a new document by following ingestion.md, extract entities/relations, call ingest_with_content with supporting_text for each item, then query the knowledge graph with query_with_evidence to get an evidence-backed answer.