원클릭으로
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