원클릭으로
recall
Search the knowledge base using natural language and return matching entries with provenance
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Search the knowledge base using natural language and return matching entries with provenance
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Onboarding wizard — verify MCP connectivity, detect transport, and configure scheduled tasks via Claude Code routines
Synthesize multiple knowledge entries into a cohesive narrative with citations
Contrast internal implementation knowledge against ambient intelligence, find where they meet, and emit a directional assessment (ahead / exposed / decide / confirm)
Generate an ambient intelligence digest from recent feed activity with source suggestions
Produce a knowledge dashboard with recent entries, corrections, expiring soon, stale knowledge, and unresolved items. In team mode, also shows team activity, related entries from teammates, and the review queue.
Compile deep context on a topic by combining semantic search with relationship traversal across 4 retrieval phases
| name | recall |
| description | Search the knowledge base using natural language and return matching entries with provenance |
| allowed-tools | ["mcp__*__distillery_status","mcp__*__distillery_search","mcp__*__distillery_get"] |
| effort | low |
| model | haiku |
Recall searches the Distillery knowledge base using natural language queries and returns ranked results with full provenance.
/recall <query> or phrases like "what do we know about X"/recall caching --type session)See CONVENTIONS.md — skip if already confirmed this conversation.
If /recall was invoked with no arguments, ask: "What would you like to search for in the knowledge base?" Wait for the response.
Parse invocation arguments for optional filter flags (any order):
| Flag | Parameter | Description |
|---|---|---|
--type | <entry_type> | Filter by entry type (e.g., session, bookmark, minutes) |
--author | <name> | Filter by author identifier |
--project | <name> | Filter by project name |
--limit | <n> | Override default result limit (default: 10) |
Remaining text after removing flags is the query string.
Example: /recall caching --type session --author Alice --limit 5 → query: "caching", filters: type=session, author=Alice, limit: 5
Valid entry_type values: session, bookmark, minutes, meeting, reference, idea, inbox.
Call distillery_search with the parsed query, limit, and any filters. Only include filter parameters that were explicitly provided — do not pass empty or null values.
If results are returned, display each using the Output Format below.
If no results found, display: No results found for "<query>". followed by suggestions to broaden terms, remove filters, or check that entries exist on the topic.
Multiple results — show a header first:
Found <count> result(s) for "<query>"<filter_summary>:
Where <filter_summary> summarises active filters (e.g., (type: session, author: Alice)), omitted if none.
Each result (ordered by similarity, highest first):
## <similarity_score>% — [<entry_type>]
<full content of the entry>
ID: <entry_id> | Author: <author> | Project: <project> | <created_at>
Tags: <tag1>, <tag2>, ...
[session])ID: <id> | Author: <author> | Project: <project> | <created_at>Separate results with ---.
--limit overridedistillery_search callTags: (none)--type is given an invalid value, list valid types before calling the API