Install
openclaw skills install oee-knowledge-baseClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
Semantic knowledge base allowing ingest, search, and retrieval of saved texts, URLs, and files using embeddings and SQLite.
openclaw skills install oee-knowledge-baseby Odin's Eye Enterprises — Ancient Wisdom. Modern Intelligence.
Save anything, recall it semantically. Personal RAG-powered knowledge base with SQLite + embeddings.
# Ingest text
python ingest.py "The key insight from today's meeting was..."
# Ingest from a file
python ingest.py --file notes.md
# Query the knowledge base
python query.py "What did we discuss about pricing?"
# Full KB management
python kb.py stats
python kb.py search "topic"
kb.py — core KB engine (embeddings, storage, retrieval)ingest.py — CLI for adding contentquery.py — CLI for searchingkb.db — SQLite database (auto-created)ANTHROPIC_API_KEY or OPENAI_API_KEY for embeddingsSave context: python ingest.py "TEXT"
Retrieve context: python query.py "QUESTION"