read-memories
Search past Claude Code session logs to recall prior decisions, patterns, or unresolved work. Use when user says "do you remember", "what did we do", references past conversations, or you need context from prior sessions.
DeepseekModel
キュレーション済みスキル
品質 優秀 · 90
v1.0.0
取得
https://deepseekmodel.com/api/download.php?id=duckdb-duckdb-skills-skills-read-memories-skill-md&format=skill
ダウンロード .skill
標準形式。system_prompt と model_config を収録し、任意の Agent で利用可能
.skill ファイルの system_prompt フィールドの実際の内容。
name read-memories description Search past Claude Code session logs to recall prior decisions, patterns, or unresolved work. Use when user says "do you remember", "what did we do", references past conversations, or you need context from prior sessions. argument-hint <keyword> [--here] allowed-tools Bash Search past session logs silently — do NOT narrate the process. Absorb the results and continue with enriched context. $0 is the keyword. Pass --here as $1 to scope to the current project only. Step 1 — Query duckdb :memory: -c " SELECT regexp_extract(filename, 'projects/([^/]+)/', 1) AS project, strftime(timestamp::TIMESTAMPTZ, '%Y-%m-%d %H:%M') AS ts, message.role AS role, left(message.content::VARCHAR, 500) AS content FROM read_ndjson('<SEARCH_PATH>', auto_detect=true, ignore_errors=true, filename=true) WHERE message::VARCHAR ILIKE '%<KEYWORD>%' AND message.role IS NOT NULL ORDER BY timestamp LIMIT 40; " Search paths: All projects: $HOME/.claude/projects/*/*.jsonl Current only ( --here ): $HOME/.claude/projects/$(echo "$PWD" | sed 's|[/_]|-|g')/*.jsonl Replace <SEARCH_PATH> and <KEYWORD> before running. Step 2 — Internalize From the results, extract decisions, patterns, unresolved TODOs, and user corrections. Use this to inform your current response — do not repeat raw logs to the user.
このスキルを起動するキーワード。クリックでコピーできます。
このスキルにはトリガーワードがありません。
ダウンロードした .skill に含まれるフィールド。
| フィールド | 説明 |
|---|---|
| format | フォーマット識別子(skill/v1) |
| skill_id | スキル固有 ID |
| name | スキル名 |
| version | バージョン |
| description | 説明 |
| category | カテゴリ(配列) |
| trigger_words | トリガーワード |
| tags | タグ |
| source | ソース |
| source_url | ソース URL(本ページ) |
| exported_at | エクスポート日時(ダウンロード毎) |
| system_prompt | システムプロンプト本文 |
| model_config | モデル設定:provider / model / temperature / max_tokens / top_p |
| examples | サンプル |
| install_guide | 各プラットフォームの導入説明(Coze / Dify / Claude / カスタム) |