troubleshooting-guide
Create comprehensive troubleshooting guides, FAQ documents, known issues lists, and debug guides. Use when documenting common problems, error messages, or debugging procedures.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o troubleshooting-guide.zip https://jpskill.com/download/21554.zip && unzip -o troubleshooting-guide.zip && rm troubleshooting-guide.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/21554.zip -OutFile "$d\troubleshooting-guide.zip"; Expand-Archive "$d\troubleshooting-guide.zip" -DestinationPath $d -Force; ri "$d\troubleshooting-guide.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
troubleshooting-guide.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
troubleshooting-guideフォルダができる - 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
- 同梱ファイル
- 7
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
[Skill 名] troubleshooting-guide
トラブルシューティングガイド
目次
概要
ユーザーとサポートチームが一般的な問題を迅速に診断し、解決するのに役立つ、構造化されたトラブルシューティングドキュメントを作成します。
使用場面
- FAQドキュメント
- 一般的なエラーメッセージ
- デバッグガイド
- 既知の問題リスト
- エラーコードリファレンス
- パフォーマンスのトラブルシューティング
- 設定の問題
- インストールに関する問題
クイックスタート
- インストールに関する問題
# Troubleshooting Guide
## Quick Diagnosis
### Is the Service Working?
Check our [Status Page](https://status.example.com) first.
### Quick Health Checks
```bash
# 1. Check service is running
curl https://api.example.com/health
# 2. Check your API key
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.example.com/api/v1/status
# 3. Check network connectivity
ping api.example.com
# 4. Check DNS resolution
nslookup api.example.com
```
## Reference Guides
Detailed implementations in the `references/` directory:
| Guide | Contents |
|---|---|
| [Issue: "Authentication Failed"](references/issue-authentication-failed.md) | Issue: "Authentication Failed" |
| [Issue: "Rate Limit Exceeded"](references/issue-rate-limit-exceeded.md) | Issue: "Rate Limit Exceeded" |
| [Issue: "Connection Timeout"](references/issue-connection-timeout.md) | Issue: "Connection Timeout" |
| [Issue: "Invalid JSON Response"](references/issue-invalid-json-response.md) | Issue: "Invalid JSON Response" |
| [Issue: "Slow Performance"](references/issue-slow-performance.md) | Issue: "Slow Performance" |
## Best Practices
### ✅ DO
- Start with most common issues
- Include error messages verbatim
- Provide step-by-step diagnostics
- Show expected vs actual output
- Include code examples
- Document error codes
- Add screenshots/videos
- Link to related documentation
- Keep solutions up-to-date
- Include workarounds
- Test all solutions
### ❌ DON'T
- Use vague descriptions
- Skip diagnostic steps
- Forget to show examples
- Assume technical knowledge
- Skip verification steps
- Forget edge cases
リファレンスガイド
references/ディレクトリにある詳細な実装です。
| ガイド | 内容 |
|---|---|
| 問題: "Authentication Failed" | 問題: "Authentication Failed" |
| 問題: "Rate Limit Exceeded" | 問題: "Rate Limit Exceeded" |
| 問題: "Connection Timeout" | 問題: "Connection Timeout" |
| 問題: "Invalid JSON Response" | 問題: "Invalid JSON Response" |
| 問題: "Slow Performance" | 問題: "Slow Performance" |
ベストプラクティス
✅ 実施すべきこと
- 最も一般的な問題から始める
- エラーメッセージをそのまま含める
- 段階的な診断を提供する
- 期待される出力と実際の出力を示す
- コード例を含める
- エラーコードを文書化する
- スクリーンショット/動画を追加する
- 関連ドキュメントへのリンクを貼る
- ソリューションを最新の状態に保つ
- 回避策を含める
- すべてのソリューションをテストする
❌ 実施すべきでないこと
- 曖昧な説明を使用する
- 診断手順を省略する
- 例を示すのを忘れる
- 技術的な知識を前提とする
- 検証手順を省略する
- エッジケースを忘れる
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Troubleshooting Guide
Table of Contents
Overview
Create structured troubleshooting documentation that helps users and support teams quickly diagnose and resolve common issues.
When to Use
- FAQ documentation
- Common error messages
- Debug guides
- Known issues lists
- Error code reference
- Performance troubleshooting
- Configuration issues
- Installation problems
Quick Start
- Installation problems
# Troubleshooting Guide
## Quick Diagnosis
### Is the Service Working?
Check our [Status Page](https://status.example.com) first.
### Quick Health Checks
```bash
# 1. Check service is running
curl https://api.example.com/health
# 2. Check your API key
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.example.com/api/v1/status
# 3. Check network connectivity
ping api.example.com
# 4. Check DNS resolution
nslookup api.example.com
```
## Reference Guides
Detailed implementations in the `references/` directory:
| Guide | Contents |
|---|---|
| [Issue: "Authentication Failed"](references/issue-authentication-failed.md) | Issue: "Authentication Failed" |
| [Issue: "Rate Limit Exceeded"](references/issue-rate-limit-exceeded.md) | Issue: "Rate Limit Exceeded" |
| [Issue: "Connection Timeout"](references/issue-connection-timeout.md) | Issue: "Connection Timeout" |
| [Issue: "Invalid JSON Response"](references/issue-invalid-json-response.md) | Issue: "Invalid JSON Response" |
| [Issue: "Slow Performance"](references/issue-slow-performance.md) | Issue: "Slow Performance" |
## Best Practices
### ✅ DO
- Start with most common issues
- Include error messages verbatim
- Provide step-by-step diagnostics
- Show expected vs actual output
- Include code examples
- Document error codes
- Add screenshots/videos
- Link to related documentation
- Keep solutions up-to-date
- Include workarounds
- Test all solutions
### ❌ DON'T
- Use vague descriptions
- Skip diagnostic steps
- Forget to show examples
- Assume technical knowledge
- Skip verification steps
- Forget edge cases 同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (2,443 bytes)
- 📎 references/issue-authentication-failed.md (1,635 bytes)
- 📎 references/issue-connection-timeout.md (1,923 bytes)
- 📎 references/issue-invalid-json-response.md (1,922 bytes)
- 📎 references/issue-rate-limit-exceeded.md (2,099 bytes)
- 📎 references/issue-slow-performance.md (2,219 bytes)
- 📎 scripts/validate-api.sh (440 bytes)