一键导入
enrich-memory
Capture user requests ("remember this") into all four canonical memory systems (Holographic, Honcho, Hindsight, OB1/OBn).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Capture user requests ("remember this") into all four canonical memory systems (Holographic, Honcho, Hindsight, OB1/OBn).
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Guides Cloudflare One Zero Trust and SASE work across Access, Gateway, WARP, Tunnel, Cloudflare WAN, DLP, CASB, device posture, and identity. Use when designing, configuring, troubleshooting, or reviewing Cloudflare One deployments. Retrieval-first: use current Cloudflare docs/API schemas instead of embedded product docs.
Use when scheduling recurring polls, read-only monitors, or background jobs that must survive shell session boundaries.
Discover, register, and maintain Hermes skills from non-default paths (plugin directories, external repos, shared vaults). Use when skills are missing from `skills_list()`, when the user mentions plugin skills, when symlinking skills, or when reconciling duplicate/overlapping skills between the default tree and external sources.
Operate the Antigravity CLI (agy): plugins, auth, sandbox.
Tune HERMES_STREAM_RETRIES for mid-stream reconnect resilience.
Manage parallel Hermes sessions in Telegram topics.
| name | enrich-memory |
| description | Capture user requests ("remember this") into all four canonical memory systems (Holographic, Honcho, Hindsight, OB1/OBn). |
| version | 1.2.0 |
| author | Hermes |
Capture a "remember this" request across the canonical four memory systems.
fact_storemcp_contextforge_memory_*mcp_open_brain_*hermes skill run enrich-memory --content "..." --entity "..." --category "general" --tags "tag1,tag2"
def enrich_memory(content, entity, category="general", tags=[]):
from hermes_tools import memory
# L1: Always-injected profile / personal notes
memory(action="add", target="memory", content=content)
memory(action="add", target="user", content=content)
# L2: Honcho (ContextForge durable notes)
mcp_contextforge_memory_ingest(
content=content,
title=f"{entity}: {content[:60]}",
tags=tags + [entity, "enriched"]
)
# L2/L3: Hindsight (if reachable)
hindsight_retain(content=content, context=entity, tags=tags, async_=True)
# L1 structured facts
fact_store(action="add", content=content, entity=entity, category=category, tags=tags)
# L3: OB1 / Open Brain
mcp_open_brain_capture_thought(
content=content,
task_id=f"enrich-{entity}",
source="hermes"
)
return f"Enriched memory: {content[:80]}..."
content declarative and compact (<300 chars). If longer, summarize in the fact store and keep the full text in Honcho/OB1.fleet, infra, user-pref).When the task specifically targets Holographic Memory L1 / fact_store, prefer the native fact_store tool if it is exposed in the current runtime. If it is not exposed, use the installed Holographic provider API against the active ~/.hermes/memory_store.db instead of treating the work as blocked.
Post-write verification is part of the write contract:
facts_fts MATCH retrieves the new fact by durable keywords.fact_entities links include the intended entities.Reference: references/holographic-l1-provider-fallback-2026-06-19.md.