chatcrystal-task-recall
Recall project-first and global-supplement ChatCrystal memories before substantive implementation, refactoring, migration, configuration, investigation, or optimization work. Use when the task is non-trivial, has repository or project context, and prior fixes, decisions, pitfalls, or reusable patterns may change the approach.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o chatcrystal-task-recall.zip https://jpskill.com/download/21238.zip && unzip -o chatcrystal-task-recall.zip && rm chatcrystal-task-recall.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/21238.zip -OutFile "$d\chatcrystal-task-recall.zip"; Expand-Archive "$d\chatcrystal-task-recall.zip" -DestinationPath $d -Force; ri "$d\chatcrystal-task-recall.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
chatcrystal-task-recall.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
chatcrystal-task-recallフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
ChatCrystal タスクリコール
このスキルは、ChatCrystal Core の上に薄いワークフローとして使用してください。スキル内で並行するメモリシステムを考案しないでください。
ワークフロー
- タスクがリコールを正当化するのに十分な重要性があるかどうかを判断します。
- 些細ではない
implement、refactor、migration、config、investigate、またはoptimization作業に対してトリガーします。 - 些細な編集、一行の回答、または純粋な会話のリクエストはスキップします。
recall_for_taskが利用可能な場合、実質的な作業の前に以下を指定して呼び出します。mode: "task"task.goal: 具体的なタスクの目的task.task_kind: 最も一致するタスクの種類- リポジトリのコンテキストが存在する場合の
task.project_dirとtask.cwd - 既知の場合の
task.branch - 既知の場合の
task.related_filesまたはtask.files_touched - ランタイムが安定した値を持つ場合の
task.source_agent
project_memoriesを主要なコンテキストとして、global_memoriesを補足的なコンテキストとして扱います。- コードを提案または記述する前に、リコールされた落とし穴、パターン、および以前の決定を適用します。
MCP 入力例
実装または調査作業のために recall_for_task を呼び出す際は、この形式を使用してください。
{
"mode": "task",
"task": {
"goal": "Add a paginated notes export endpoint",
"task_kind": "implement",
"project_dir": "/path/to/project",
"cwd": "/path/to/project",
"branch": "feature/export-notes",
"related_files": [
"server/src/routes/notes.ts",
"shared/types/index.ts"
],
"source_agent": "codex"
},
"options": {
"project_limit": 5,
"global_limit": 3,
"include_relations": true
}
}
フルモード
フルモードでは、ChatCrystal Core と recall_for_task への MCP アクセスが必要です。
- Core が
project_keyを導出できるように、現在のリポジトリまたはワークスペースパスを優先します。 no-project-keyやno-matchesなどの関連する警告を表示しますが、それらを失敗として扱わないでください。- リコールが有用なものを何も返さない場合、タスクを通常どおり続行します。
劣化モード
ChatCrystal Core または MCP ツールが利用できない場合:
- ブロックせずにタスクを続行します。
- この環境では長期的なリコールが利用できないことを簡潔に述べます。
- いかなるメモリもリコールされたと主張しないでください。
- スキルフローの一部として、ランタイムに ChatCrystal Core を自動インストールするよう指示しないでください。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
ChatCrystal Task Recall
Use this skill as a thin workflow on top of ChatCrystal Core. Do not invent a parallel memory system in the skill.
Workflow
- Decide whether the task is substantial enough to justify recall.
- Trigger for non-trivial
implement,refactor,migration,config,investigate, oroptimizationwork. - Skip trivial edits, one-line answers, or purely conversational requests.
- If
recall_for_taskis available, call it before substantive work with:mode: "task"task.goal: the concrete task objectivetask.task_kind: the best matching task kindtask.project_dirandtask.cwdwhen repository context existstask.branchwhen knowntask.related_filesortask.files_touchedwhen knowntask.source_agentwhen the runtime has a stable value
- Treat
project_memoriesas primary context andglobal_memoriesas supplemental context. - Apply recalled pitfalls, patterns, and prior decisions before proposing or writing code.
Example MCP Input
Use this shape when calling recall_for_task for implementation or investigation work:
{
"mode": "task",
"task": {
"goal": "Add a paginated notes export endpoint",
"task_kind": "implement",
"project_dir": "/path/to/project",
"cwd": "/path/to/project",
"branch": "feature/export-notes",
"related_files": [
"server/src/routes/notes.ts",
"shared/types/index.ts"
],
"source_agent": "codex"
},
"options": {
"project_limit": 5,
"global_limit": 3,
"include_relations": true
}
}
Full Mode
Full mode requires ChatCrystal Core plus MCP access to recall_for_task.
- Prefer the current repository or workspace path so Core can derive
project_key. - Surface relevant warnings such as
no-project-keyorno-matches, but do not treat them as failures. - If recall returns nothing useful, continue the task normally.
Degraded Mode
If ChatCrystal Core or the MCP tool is unavailable:
- Continue the task without blocking.
- State briefly that long-term recall is unavailable in this environment.
- Do not claim that any memory was recalled.
- Do not instruct the runtime to auto-install ChatCrystal Core as part of the skill flow.