jpskill.com
🛠️ 開発・MCP コミュニティ

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.

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
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
🪟 Windows (PowerShell)
$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. 1. 下の青いボタンを押して chatcrystal-task-recall.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → chatcrystal-task-recall フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1

📖 Skill本文(日本語訳)

※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

ChatCrystal タスクリコール

このスキルは、ChatCrystal Core の上に薄いワークフローとして使用してください。スキル内で並行するメモリシステムを考案しないでください。

ワークフロー

  1. タスクがリコールを正当化するのに十分な重要性があるかどうかを判断します。
  2. 些細ではない implementrefactormigrationconfiginvestigate、または optimization 作業に対してトリガーします。
  3. 些細な編集、一行の回答、または純粋な会話のリクエストはスキップします。
  4. recall_for_task が利用可能な場合、実質的な作業の前に以下を指定して呼び出します。
    • mode: "task"
    • task.goal: 具体的なタスクの目的
    • task.task_kind: 最も一致するタスクの種類
    • リポジトリのコンテキストが存在する場合の task.project_dirtask.cwd
    • 既知の場合の task.branch
    • 既知の場合の task.related_files または task.files_touched
    • ランタイムが安定した値を持つ場合の task.source_agent
  5. project_memories を主要なコンテキストとして、global_memories を補足的なコンテキストとして扱います。
  6. コードを提案または記述する前に、リコールされた落とし穴、パターン、および以前の決定を適用します。

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-keyno-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

  1. Decide whether the task is substantial enough to justify recall.
  2. Trigger for non-trivial implement, refactor, migration, config, investigate, or optimization work.
  3. Skip trivial edits, one-line answers, or purely conversational requests.
  4. If recall_for_task is available, call it before substantive work with:
    • mode: "task"
    • task.goal: the concrete task objective
    • task.task_kind: the best matching task kind
    • task.project_dir and task.cwd when repository context exists
    • task.branch when known
    • task.related_files or task.files_touched when known
    • task.source_agent when the runtime has a stable value
  5. Treat project_memories as primary context and global_memories as supplemental context.
  6. 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-key or no-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.