ワンクリックで
recall
Session recall.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Session recall.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Autonomous unattended mode.
Minimal-toolset mode.
Main coding mode.
Isolated plan execution mode.
Read-only codebase explorer mode.
General-purpose catch-all mode.
| name | recall |
| argument-hint | <what to recall from past sessions> |
| description | Session recall. |
LemonCrow processes past sessions in the background — the lemoncrow-controller loop imports new sessions, indexes them for semantic recall, extracts lessons, stores durable facts as you work. This skill only retrieves what's already processed.
Gather and synthesize a plain-English answer yourself — never hand the user commands to run.
lc session recall "<your question>" # semantic search across indexed past sessions (recall.db)
lc memory recall "<your question>" # durable facts the agent chose to remember (memory.db)
The memory(op=recall) MCP tool returns both at once (durable facts + past-session snippets).
Inventory — counts of what the background has processed:
python3 -c "import json,pathlib; p=pathlib.Path('~/.lemoncrow/recall/index_state.json').expanduser(); print('sessions indexed for recall:', len(json.loads(p.read_text())) if p.exists() else 0)"
lc memory list # durable facts stored
ls .lemoncrow/lessons/blocks/*.md 2>/dev/null | wc -l # lessons extracted for this repo
The background loop is the sole owner of processing. From this skill, never:
lc import, lc session recall index, or lc knowledge extractservicectlEmpty/stale inventory → say so plainly; the background loop fills it as it runs.
~/.lemoncrow/recall.db: semantic snippets from past session transcripts. The primary layer for most users; coverage is windowed to recent sessions by design.~/.lemoncrow/memory.db: facts remembered via memory(op=store_fact)..lemoncrow/lessons/blocks/*.md: durable review rules LemonCrow extracted from this repo's traces..lemoncrow/review.json (team) / ~/.lemoncrow/review_overlay.json (personal): notes/boost/suppress the live reviewer applies.