Files
openclaw-rag-skill/package.json
Nova AI f81c8b1e70 Release v1.0.1: Add metadata, changelog, and license
- Bump version to 1.0.1
- Add CHANGELOG.md entry for v1.0.1 (documentation and metadata additions)
- Add package.json with OpenClaw skill metadata
- Explicitly declares NO required environment variables (fully local)
- Add LICENSE (MIT)
- Enhanced documentation transparency for security best practices
2026-02-11 16:49:56 +00:00

52 lines
1.5 KiB
JSON

{
"name": "rag-openclaw",
"version": "1.0.1",
"description": "RAG Knowledge System for OpenClaw - Semantic search across chat history, code, docs, and skills with automatic memory retrieval",
"homepage": "http://git.theta42.com/nova/openclaw-rag-skill",
"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"
}