{ "name": "rag-openclaw", "version": "1.0.7", "description": "RAG Knowledge System for OpenClaw - Semantic search across chat history, code, docs, and skills with automatic memory retrieval", "homepage": "https://openclaw-rag-skill.projects.theta42.com", "author": { "name": "Nova AI", "email": "nova@vm42.us" }, "owner": "wmantly", "openclaw": { "always": false, "capabilities": [] }, "environment": { "required": {}, "optional": {}, "config": { "paths": [ "~/.openclaw/data/rag/" ], "help": "ChromaDB storage location. No configuration required - system auto-creates data directory on first use." } }, "install": { "type": "instruction", "steps": [ "1. Install Python dependency: pip3 install --user chromadb", "2. Install location: ~/.openclaw/workspace/rag/ (created automatically)", "3. Data storage: ~/.openclaw/data/rag/ (auto-created on first run)", "4. No API keys or credentials required - fully local system" ] }, "scripts": { "ingest:sessions": "python3 ingest_sessions.py", "ingest:workspace": "python3 ingest_docs.py workspace", "ingest:skills": "python3 ingest_docs.py skills", "search": "python3 rag_query.py", "update": "bash scripts/rag-auto-update.sh", "stats": "python3 rag_manage.py stats", "manage": "python3 rag_manage.py" }, "keywords": [ "rag", "knowledge", "semantic-search", "chromadb", "memory", "retrieval-augmented-generation" ], "license": "MIT" }