bmad-index-docs
特定のフォルダにあるすべてのドキュメントを一覧化するindex.mdファイルを、ユーザーの要望に応じて作成または更新し、フォルダ内の情報を整理してアクセスしやすくするSkill。
📜 元の英語説明(参考)
Generates or updates an index.md to reference all docs in the folder. Use if user requests to create or update an index of all files in a specific folder
🇯🇵 日本人クリエイター向け解説
特定のフォルダにあるすべてのドキュメントを一覧化するindex.mdファイルを、ユーザーの要望に応じて作成または更新し、フォルダ内の情報を整理してアクセスしやすくするSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o bmad-index-docs.zip https://jpskill.com/download/23697.zip && unzip -o bmad-index-docs.zip && rm bmad-index-docs.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/23697.zip -OutFile "$d\bmad-index-docs.zip"; Expand-Archive "$d\bmad-index-docs.zip" -DestinationPath $d -Force; ri "$d\bmad-index-docs.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
bmad-index-docs.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
bmad-index-docsフォルダができる - 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 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
インデックスドキュメント
目標: ターゲットフォルダー内のすべてのドキュメントを参照する index.md を生成または更新します。
実行
ステップ 1: ディレクトリのスキャン
- ターゲットの場所にあるすべてのファイルとサブディレクトリをリストアップします。
ステップ 2: コンテンツのグループ化
- ファイルを種類、目的、またはサブディレクトリごとに整理します。
ステップ 3: 説明の生成
- 各ファイルを読み込み、その実際の目的を理解し、ファイル名だけでなくコンテンツに基づいて簡潔な(3〜10語の)説明を作成します。
ステップ 4: インデックスの作成/更新
- 整理されたファイルリストを含む index.md を作成または更新します。
出力形式
# ディレクトリインデックス
## ファイル
- **[filename.ext](./filename.ext)** - 簡潔な説明
- **[another-file.ext](./another-file.ext)** - 簡潔な説明
## サブディレクトリ
### subfolder/
- **[file1.ext](./subfolder/file1.ext)** - 簡潔な説明
- **[file2.ext](./subfolder/file2.ext)** - 簡潔な説明
### another-folder/
- **[file3.ext](./another-folder/file3.ext)** - 簡潔な説明
停止条件
- ターゲットディレクトリが存在しないか、アクセスできない場合は停止します。
- index.md を作成するための書き込み権限がユーザーにない場合は停止します。
検証
./で始まる相対パスを使用します。- 類似するファイルをグループ化します。
- ファイルの内容を読み込んで正確な説明を生成します。ファイル名から推測しないでください。
- 説明は簡潔かつ有益なもの(3〜10語)に保ちます。
- グループ内ではアルファベット順にソートします。
- 指定がない限り、隠しファイル(
.で始まるファイル)はスキップします。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Index Docs
Goal: Generate or update an index.md to reference all docs in a target folder.
EXECUTION
Step 1: Scan Directory
- List all files and subdirectories in the target location
Step 2: Group Content
- Organize files by type, purpose, or subdirectory
Step 3: Generate Descriptions
- Read each file to understand its actual purpose and create brief (3-10 word) descriptions based on the content, not just the filename
Step 4: Create/Update Index
- Write or update index.md with organized file listings
OUTPUT FORMAT
# Directory Index
## Files
- **[filename.ext](./filename.ext)** - Brief description
- **[another-file.ext](./another-file.ext)** - Brief description
## Subdirectories
### subfolder/
- **[file1.ext](./subfolder/file1.ext)** - Brief description
- **[file2.ext](./subfolder/file2.ext)** - Brief description
### another-folder/
- **[file3.ext](./another-folder/file3.ext)** - Brief description
HALT CONDITIONS
- HALT if target directory does not exist or is inaccessible
- HALT if user does not have write permissions to create index.md
VALIDATION
- Use relative paths starting with ./
- Group similar files together
- Read file contents to generate accurate descriptions - don't guess from filenames
- Keep descriptions concise but informative (3-10 words)
- Sort alphabetically within groups
- Skip hidden files (starting with .) unless specified