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

repomix-reference-black-tortoise

Black Tortoiseプロジェクトの構造や実装パターン、コードの詳細を理解する際に役立つ参照コードベースを提供するSkill。

📜 元の英語説明(参考)

Reference codebase for Black Tortoise. Use this skill when you need to understand the structure, implementation patterns, or code details of the Black Tortoise project.

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

一言でいうと

Black Tortoiseプロジェクトの構造や実装パターン、コードの詳細を理解する際に役立つ参照コードベースを提供するSkill。

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

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

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

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

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

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して repomix-reference-black-tortoise.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → repomix-reference-black-tortoise フォルダができる
  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-17
取得日時
2026-05-17
同梱ファイル
1

📖 Skill本文(日本語訳)

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

Black Tortoise コードベースリファレンス

1214 ファイル | 131530 行 | 1694337 トークン

概要

このスキルは、次のような場合にご利用ください。

  • プロジェクトの構造とファイル構成を理解する
  • 特定の機能がどこに実装されているかを見つける
  • 任意のファイルのソースコードを読む
  • コードパターンやキーワードを検索する

ファイル

ファイル 内容
references/summary.md ここから開始 - 目的、フォーマットの説明、統計
references/project-structure.md ファイルごとの行数を含むディレクトリツリー
references/files.md すべてのファイルの内容(## File: <path> で検索)
references/tech-stack.md 言語、フレームワーク、依存関係

使用方法

1. ファイルの場所を見つける

project-structure.md でディレクトリツリーを確認します。

src/
  index.ts (42 lines)
  utils/
    helpers.ts (128 lines)

2. ファイルの内容を読む

files.md でファイルパスを grep します。

## File: src/utils/helpers.ts

3. コードを検索する

files.md でキーワードを grep します。

function calculateTotal

一般的な使用例

機能の理解:

  1. project-structure.md で関連するファイル名を検索します。
  2. files.md で主要な実装ファイルを読みます。
  3. インポート/参照を検索して依存関係を追跡します。

エラーのデバッグ:

  1. files.md でエラーメッセージまたはクラス名を grep します。
  2. project-structure.md で行数を確認し、大きなファイルを見つけます。

すべての使用箇所を見つける:

  1. files.md で関数名または変数名を grep します。

ヒント

  • project-structure.md の行数を使用してファイルの複雑さを推定します。
  • ## File: パターンを検索してファイル間を移動します。
  • summary.md で除外されたファイル、フォーマットの詳細、ファイル統計を確認します。
  • tech-stack.md で言語、フレームワーク、依存関係を確認します。

このスキルは Repomix によって生成されました。

📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Black Tortoise Codebase Reference

1214 files | 131530 lines | 1694337 tokens

Overview

Use this skill when you need to:

  • Understand project structure and file organization
  • Find where specific functionality is implemented
  • Read source code for any file
  • Search for code patterns or keywords

Files

File Contents
references/summary.md Start here - Purpose, format explanation, and statistics
references/project-structure.md Directory tree with line counts per file
references/files.md All file contents (search with ## File: <path>)
references/tech-stack.md Languages, frameworks, and dependencies

How to Use

1. Find file locations

Check project-structure.md for the directory tree:

src/
  index.ts (42 lines)
  utils/
    helpers.ts (128 lines)

2. Read file contents

Grep in files.md for the file path:

## File: src/utils/helpers.ts

3. Search for code

Grep in files.md for keywords:

function calculateTotal

Common Use Cases

Understand a feature:

  1. Search project-structure.md for related file names
  2. Read the main implementation file in files.md
  3. Search for imports/references to trace dependencies

Debug an error:

  1. Grep the error message or class name in files.md
  2. Check line counts in project-structure.md to find large files

Find all usages:

  1. Grep function or variable name in files.md

Tips

  • Use line counts in project-structure.md to estimate file complexity
  • Search ## File: pattern to jump between files
  • Check summary.md for excluded files, format details, and file statistics
  • Check tech-stack.md for languages, frameworks, and dependencies

This skill was generated by Repomix