Install
openclaw skills install initv-data-podsCreate and manage modular portable database pods (SQLite + metadata + embeddings). Includes document ingestion with embeddings for semantic search. Full automation - just ask.
openclaw skills install initv-data-podsCreate and manage portable, consent-scoped database pods. Handles document ingestion with embeddings and semantic search.
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ Ingestion │ ──► │ DB Pods │ ──► │ Generation │
│ (ingest) │ │ (storage) │ │ (query) │
└─────────────┘ └─────────────┘ └─────────────┘
When user asks to create a pod:
python3 .../scripts/pod.py create <name> --type <type>When user asks to add content:
python3 .../scripts/pod.py add <pod> --title "<title>" --content "<content>" --tags "<tags>"When user wants to ingest files:
python3 .../scripts/ingest.py ingest <pod> <folder>When user wants to search:
python3 .../scripts/ingest.py search <pod> "<query>"When user asks to search notes:
python3 .../scripts/pod.py query <pod> --text "<query>"When user asks to export:
python3 .../scripts/podsync.py pack <pod>pip install PyPDF2 python-docx pillow pytesseract sentence-transformers
~/.openclaw/data-pods/
# Create pod
python3 .../scripts/pod.py create research --type scholar
# Add note
python3 .../scripts/pod.py add research --title "..." --content "..." --tags "..."
# Ingest folder
python3 .../scripts/ingest.py ingest research ./documents/
# Semantic search
python3 .../scripts/ingest.py search research "transformers"
# List documents
python3 .../scripts/ingest.py list research
# Query notes
python3 .../scripts/pod.py query research --text "..."