Qoris Memory — Persistent Agent Memory
Persistent memory for OpenClaw agents via the Qoris MCP server. Explicit save/recall tools for cross-session context. User-owned API key, no automatic data capture.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/apps-debug/qoris-memory-mcpQoris Memory — Persistent Agent Memory
Purpose
This skill connects your OpenClaw agent to the Qoris MCP server so it can persist memories you explicitly save — across sessions, with version history and semantic search.
Important: memories are saved only when your agent calls save_memory (or you run a memory command). The skill does not monitor, capture, or silently persist conversation content. Nothing is transmitted until you make an explicit tool call.
Data Handling & Privacy
This skill sends data to an external service. Understand what before installing:
- What gets sent: only the exact content you pass to
save_memory/search_knowledge/update_memorytool calls. Nothing else. - Where it's stored:
https://mcp.qoris.ai/mcp(TLS), scoped to yourQORIS_WORKSPACE_ID. Your workspace is isolated from other users. - Who can read it: only holders of your
QORIS_API_KEY. The key is yours, generated by you atqoris.ai/dashboard. - Retention: per the retention policy at
https://qoris.ai/privacy. You can delete individual memories withdelete_memoryor rotate the API key in your dashboard to invalidate all access. - No auto-capture: there is no automatic memory mode. Every persisted memory corresponds to an explicit tool call your agent made.
- Credential ownership:
QORIS_API_KEYis your own per-user secret. No credentials are bundled with this skill. Treat the key as sensitive — create a restricted workspace for shared or enterprise use.
What Qoris Memory Does
Explicit cross-session save/recall
Your agent can persist information it decides is worth remembering via the save_memory tool, and recall it later via search_knowledge or get_memories. Memories survive across sessions and remain available until you delete them.
Versioned records
Every memory update is a versioned record with a timestamp. You can see the history of what was stored and when via get_document_full_content.
Memory branches
Create separate memory contexts (branches) for different projects, clients, or workspaces. Your agent operates in the right context for the right task.
Conflict surfacing
When multiple agents update the same memory, the MCP server surfaces contradictions for human resolution rather than silently overwriting.
Shared workspace memory
Memory is workspace-scoped. Agents sharing the same QORIS_WORKSPACE_ID share the same memory pool. Your team can coordinate through a shared knowledge base.
Semantic search
search_knowledge runs a semantic search across stored memories and returns cited answers grounded in what was actually stored — no hallucination.
Available Memory Tools
These are the only tools this skill exposes. Each is an explicit, user-triggered action — nothing runs automatically.
save_memory
Store a new memory with optional tags and metadata. Content is the exact string you pass.
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-apps-debug-qoris-memory-mcp": {
"enabled": true,
"auto_update": true
}
}
}Tags
Related Skills
autodream-core
通用记忆整理引擎 — 基于适配器模式的跨平台记忆整理技能。自动去重、合并、删除过时条目。| Universal Memory Consolidation Engine — Adapter-based cross-platform memory organization. Auto-dedup, merge, prune stale entries.
semver-helper
Semantic Versioning 2.0.0 reference guide. Quick decision trees and examples for choosing MAJOR, MINOR, or PATCH version bumps.
context-compressor
Intelligently compress context — conversations, code, logs. Preserve key information while reducing token usage. Auto-detects content type and applies optimal compression.
auto-context
智能上下文卫生检查器。分析当前会话的上下文污染程度 (长对话、主题漂移、噪声累积),建议:continue、/fork、/btw 或新会话。 支持手动触发(/auto-context)和自动触发(响应层实现)。 基于 ArXiv 论文和认知心理学研究的多维度评估体系。
local-rag-index-planner
规划本地知识库的目录、分片粒度、命名、更新时间与访问边界,而不是直接堆 RAG。;use for rag, indexing, knowledge workflows;do not use for 直接部署向量数据库, 忽略权限隔离.