jpskill.com
📦 その他 コミュニティ

chatcrystal-debug-recall

過去のChatCrystalの会話履歴から、テスト失敗、コンパイラエラー、実行時例外、依存関係の問題、環境破壊、パフォーマンス低下といったデバッグ作業に関連する情報を迅速に探し出し、原因特定や解決策の発見を効率化するSkill。

📜 元の英語説明(参考)

Recall ChatCrystal memories for debugging tasks involving failing tests, compiler errors, runtime exceptions, dependency issues, environment breakage, or performance regressions. Use when historical root causes, fixes, or pitfalls may accelerate diagnosis before proposing a fix.

🇯🇵 日本人クリエイター向け解説

一言でいうと

過去のChatCrystalの会話履歴から、テスト失敗、コンパイラエラー、実行時例外、依存関係の問題、環境破壊、パフォーマンス低下といったデバッグ作業に関連する情報を迅速に探し出し、原因特定や解決策の発見を効率化するSkill。

※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。

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

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

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o chatcrystal-debug-recall.zip https://jpskill.com/download/21237.zip && unzip -o chatcrystal-debug-recall.zip && rm chatcrystal-debug-recall.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/21237.zip -OutFile "$d\chatcrystal-debug-recall.zip"; Expand-Archive "$d\chatcrystal-debug-recall.zip" -DestinationPath $d -Force; ri "$d\chatcrystal-debug-recall.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して chatcrystal-debug-recall.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → chatcrystal-debug-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. recall_for_task が利用可能な場合は、修正案を提示する前に、以下の引数で呼び出してください。
    • mode: "debug"
    • task.goal: 具体的なデバッグ目標
    • task.task_kind: "debug"
    • task.project_dirtask.cwd (既知の場合)
    • task.branch (既知の場合)
    • task.related_files または task.files_touched (既知の場合)
    • task.error_signatures に利用可能な最も有用な識別子を設定
  3. 次のような具体的なシグナルを優先してください。
    • 失敗したテスト名
    • 例外クラス
    • エラーコード
    • ログシグネチャ
    • 障害に実質的に影響を与えるパッケージまたはツールのバージョン
  4. 根本原因、修復、または既知の落とし穴を説明する、返された記憶を優先してください。
  5. リコールされた記憶は診断を鋭くするために使用し、現在の環境での検証をスキップするために使用しないでください。

MCP 入力例

デバッグのために recall_for_task を呼び出す際は、この形式を使用してください。

{
  "mode": "debug",
  "task": {
    "goal": "Diagnose failing build after TypeScript upgrade",
    "task_kind": "debug",
    "project_dir": "/path/to/project",
    "cwd": "/path/to/project",
    "branch": "upgrade/typescript",
    "related_files": [
      "server/src/cli/mcp/server.ts",
      "tsconfig.base.json"
    ],
    "error_signatures": [
      "TS2322",
      "Type is not assignable"
    ],
    "source_agent": "codex"
  },
  "options": {
    "project_limit": 5,
    "global_limit": 3,
    "include_relations": true
  }
}

フルモード

フルモードでは、ChatCrystal Core と recall_for_task への MCP アクセスが必要です。

  • project_memories を主とし、global_memories を副としてください。
  • 応答に警告または no-matches が含まれる場合は、通常通りデバッグを続行してください。
  • 現在の障害シグネチャが実質的に異なる場合、リコールされた修正に過度に適合させないでください。

劣化モード

ChatCrystal Core または MCP ツールが利用できない場合:

  • ブロックせずにデバッグタスクを続行してください。
  • 長期的なデバッグリコールが利用できないことを簡潔に述べてください。
  • 過去の障害、原因、または修正を捏造しないでください。
  • インストールコマンドを自動的なスキルステップに変えないでください。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

ChatCrystal Debug Recall

Use this skill when the task is clearly about diagnosis or debugging. Keep the skill thin and let ChatCrystal Core handle retrieval.

Workflow

  1. Trigger when the task includes failing tests, compiler errors, runtime exceptions, broken dependencies, environment problems, or performance regressions.
  2. If recall_for_task is available, call it before proposing a fix with:
    • mode: "debug"
    • task.goal: the concrete debugging objective
    • task.task_kind: "debug"
    • task.project_dir and task.cwd when known
    • task.branch when known
    • task.related_files or task.files_touched when known
    • task.error_signatures populated with the most useful identifiers available
  3. Prefer concrete signals such as:
    • failing test names
    • exception classes
    • error codes
    • log signatures
    • package or tool versions when they materially affect the failure
  4. Prioritize returned memories that explain root cause, remediation, or known pitfalls.
  5. Use recalled memories to sharpen diagnosis, not to skip verification in the current environment.

Example MCP Input

Use this shape when calling recall_for_task for debugging:

{
  "mode": "debug",
  "task": {
    "goal": "Diagnose failing build after TypeScript upgrade",
    "task_kind": "debug",
    "project_dir": "/path/to/project",
    "cwd": "/path/to/project",
    "branch": "upgrade/typescript",
    "related_files": [
      "server/src/cli/mcp/server.ts",
      "tsconfig.base.json"
    ],
    "error_signatures": [
      "TS2322",
      "Type is not assignable"
    ],
    "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.

  • Keep project_memories primary and global_memories secondary.
  • If the response includes warnings or no-matches, continue debugging normally.
  • Do not overfit to a recalled fix when the current failure signature diverges materially.

Degraded Mode

If ChatCrystal Core or the MCP tool is unavailable:

  • Continue the debugging task without blocking.
  • State briefly that long-term debug recall is unavailable.
  • Do not fabricate historical failures, causes, or fixes.
  • Do not turn installation commands into automatic skill steps.