一键导入
memora
Query and manage the Hermes Memora long-term memory worker (Cloudflare Workers). Semantic search, fact CRUD, stats, and nightly indexing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Query and manage the Hermes Memora long-term memory worker (Cloudflare Workers). Semantic search, fact CRUD, stats, and nightly indexing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
| name | memora |
| description | Query and manage the Hermes Memora long-term memory worker (Cloudflare Workers). Semantic search, fact CRUD, stats, and nightly indexing. |
| version | 2.0.0 |
| author | Memora Contributors |
| license | MIT |
| metadata | {"hermes":{"tags":["memory","rag","search","knowledge-base","cloudflare","hermes-plugin","memora"],"category":"research","related_skills":[]}} |
Connects Hermes to the persistent RAG worker for cross-session long-term memory. The RAG worker stores facts in D1 and embeddings in Vectorize, enabling semantic search across indexed memories.
Use when the user:
memora-nightly) or generate weekly digests (memora-weekly)Memora provides the following tools:
query (string), top_k (integer, default 10)query (string), top_k (integer, default 10), scope (string, optional)category (string), search (string), limit (integer), offset (integer)content (string), category (string, default "memory"), scope (string, "personal" or "company"), id (string, optional)If the company memory repo contains files at the root such as _brain-filing-rules.md or _output-rules.md, they are automatically loaded into your system prompt. Follow them when filing facts or formatting answers.
memora_search with the user's query.business, projects), use memora_list.memory tool. ALWAYS call memora_add directly to push to the RAG backend.user for preferences, business for strategy, project for execution). MUST be specific, avoid the default 'memory' bucket.memora_update to revise it rather than adding a duplicate.The Memora Python package provides CLI scripts for workspace maintenance. Run these via the terminal tool when requested by the user or scheduled via cron:
memora-nightly: Nightly brain indexer. Scans workspace files (mtime hashing), extracts entities for the wiki, and detects contradictory facts. Run via cd ~/hermes-workspace && memora-nightly.memora-weekly: Generates a weekly digest of memory activity. Run via cd ~/hermes-workspace && memora-weekly.memora-doctor: Health check. Reports worker reachability, pending vector sync, local queue depth, and company repo sync lag. Run via cd ~/hermes-workspace && memora-doctor.If the user asks how to set up Memora on a new agent or workspace, provide these steps:
cd ~/.hermes/plugins/
git clone https://github.com/fenestbuc/memora.git
pip install -e memora/
~/.hermes/config.yaml):
memory:
provider: memora
plugins:
enabled:
- memora
RAG_WORKER_URL and RAG_AUTH_TOKEN.docs/SKILL.md from the repo into ~/.hermes/skills/memora/SKILL.md.memora_add may take a few seconds to appear in memora_search due to embedding generation. This is normal.rag-worker/ inside this repo. It is deployed separately from the Hermes plugin. Check health using memora_stats.