一键导入
recall
Search CEMS memory with project-scoped boosting, auto-detecting project from git remote
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Search CEMS memory with project-scoped boosting, auto-detecting project from git remote
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Search memories for relevant past context, decisions, and patterns
Search memories for relevant past context, decisions, and patterns
View foundation guidelines (rules, principles, constraints) stored in CEMS memory
Search CEMS long-term memory for relevant past context, decisions, patterns, and preferences
Store memories with project context, categories, and tags into CEMS long-term memory
Store learnings, decisions, patterns, or preferences into CEMS memory with project context
| name | recall |
| description | Search CEMS memory with project-scoped boosting, auto-detecting project from git remote |
Search your memories for relevant information from past sessions.
When you need context before starting work, or the user asks to recall something:
git remote get-url origin to extract org/repo formatgit@github.com:org/repo.git → org/repohttps://github.com/org/repo.git → org/repomemory_search with appropriate parameters (always include project)memory_get to fetch the full content{
"tool": "memory_search",
"arguments": {
"query": "authentication patterns in this project",
"scope": "both",
"max_results": 10,
"max_tokens": 4000,
"enable_graph": true,
"enable_query_synthesis": true,
"project": "org/repo"
}
}
When search results have has_detailed: true (distilled memory) or are truncated (content ends with ...), fetch the full document:
{
"tool": "memory_get",
"arguments": {
"memory_id": "the-memory-id-from-search-result"
}
}
The response includes content_detailed (original full text) when the memory has been distilled to a summary.
| Parameter | Default | Purpose |
|---|---|---|
query | (required) | Natural language search query |
scope | "both" | "personal", "shared", or "both" |
max_results | 10 | Maximum results (1-20) |
max_tokens | 4000 | Token budget for results |
enable_graph | true | Include related memories via graph traversal |
enable_query_synthesis | true | Expand query with LLM for better retrieval |
raw | false | Debug mode: bypass relevance filtering |
project | (auto-detect) | Project ID (org/repo) — always pass this to boost same-project results |
project — auto-detect from git remote to filter cross-project noise