/install initv-data-pods
Data Pods
Overview
Create and manage portable, consent-scoped database pods. Handles document ingestion with embeddings and semantic search.
Architecture
┌─────────────┐ ┌─────────────┐ ┌─────────────┐
│ Ingestion │ ──► │ DB Pods │ ──► │ Generation │
│ (ingest) │ │ (storage) │ │ (query) │
└─────────────┘ └─────────────┘ └─────────────┘
Triggers
- "create a pod" / "new pod"
- "list my pods" / "what pods do I have"
- "add to pod" / "add note" / "add content"
- "query pod" / "search pod"
- "ingest documents" / "add files"
- "semantic search" / "find相关内容"
- "export pod" / "pack pod"
Core Features
1. Create Pod
When user asks to create a pod:
- Ask for pod name and type (scholar/health/shared/projects)
- Run:
python3 .../scripts/pod.py create \x3Cname> --type \x3Ctype> - Confirm creation
2. Add Content (Manual)
When user asks to add content:
- Ask for pod name, title, content, tags
- Run:
python3 .../scripts/pod.py add \x3Cpod> --title "\x3Ctitle>" --content "\x3Ccontent>" --tags "\x3Ctags>" - Confirm
3. Ingest Documents (Automated)
When user wants to ingest files:
- Ask for pod name and folder path
- Run:
python3 .../scripts/ingest.py ingest \x3Cpod> \x3Cfolder> - Supports: PDF, TXT, MD, DOCX, PNG, JPG
- Auto-embeds text (if sentence-transformers installed)
4. Semantic Search
When user wants to search:
- Ask for pod name and query
- Run:
python3 .../scripts/ingest.py search \x3Cpod> "\x3Cquery>" - Returns ranked results with citations
5. Query (Basic)
When user asks to search notes:
- Run:
python3 .../scripts/pod.py query \x3Cpod> --text "\x3Cquery>"
6. Export
When user asks to export:
- Run:
python3 .../scripts/podsync.py pack \x3Cpod>
Dependencies
pip install PyPDF2 python-docx pillow pytesseract sentence-transformers
Storage Location
~/.openclaw/data-pods/
Key Commands
# 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 "..."
Notes
- Ingestion auto-chunks large documents
- Embeddings enable semantic search
- File hash prevents duplicate ingestion
- All data stored locally in SQLite
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install initv-data-pods - After installation, invoke the skill by name or use
/initv-data-pods - Provide required inputs per the skill's parameter spec and get structured output
What is data-pods?
Create and manage modular portable database pods (SQLite + metadata + embeddings). Includes document ingestion with embeddings for semantic search. Full auto... It is an AI Agent Skill for Claude Code / OpenClaw, with 375 downloads so far.
How do I install data-pods?
Run "/install initv-data-pods" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is data-pods free?
Yes, data-pods is completely free (open-source). You can download, install and use it at no cost.
Which platforms does data-pods support?
data-pods is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created data-pods?
It is built and maintained by init-v (@init-v); the current version is v0.2.0.