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

project-research

Research workflow patterns specific to {project}. Covers research agent coordination, source management, and synthesis strategies.

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

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

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

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

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して project-research.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → project-research フォルダができる
  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 自身は原文を読みます。誤訳がある場合は原文をご確認ください。

{project} リサーチパターン

このプロジェクトのドメインとリサーチ要件に合わせたリサーチワークフローパターンです。

変数

変数 デフォルト 説明
MAX_SOURCES 10 各リサーチタスクで参照する最大ソース数
SYNTHESIS_STYLE comprehensive 出力スタイル: concise, comprehensive, または academic
REQUIRE_CITATIONS true 常にソースの引用を含める

指示

  1. リサーチの質問と範囲を特定する
  2. ドメインに基づいて適切なソースを選択する
  3. 利用可能な場合は、リサーチサブエージェントを調整する
  4. 適切な帰属表示で調査結果を統合する
  5. プロジェクトの規則に従って出力をフォーマットする

レッドフラグ - STOP して再検討

もしあなたが以下をしようとしているなら:

  • ソースの検証なしに主張をする
  • 統合ステップをスキップする
  • 承認されたリスト以外のソースを使用する

STOP -> ソースを検証 -> 適切に統合 -> その後レポート

ワークフロー

1. 範囲の定義

リサーチの範囲を定義します:

  • 主要な質問
  • 関連するサブ質問
  • ドメインの境界
  • 必要なソースの種類

2. ソースの選択

このプロジェクトで承認されているソースの種類:

  • [TODO: プロジェクト固有のソースを追加]
  • 最新情報のウェブ検索
  • 技術的な詳細に関するドキュメント
  • 基礎的な概念に関する学術的なソース

3. リサーチの実行

ソースの種類ごとに:

  1. 適切なソースにクエリを実行する
  2. 関連する情報を抽出する
  3. 信頼度を記録する
  4. 引用を記録する

4. 統合

調査結果をまとまりのある出力に結合します:

  • 主要な調査結果を要約する
  • 合意/不合意を強調する
  • 信頼性の評価を提供する
  • すべての引用をリストする

プロジェクト固有のパターン

[TODO: このプロジェクトで発見されたパターンを追加]

パターン例:

### パターン: [Name]
- **When**: [Trigger condition]
- **Do**: [Actions]
- **Output**: [Expected format]

統合

このスキルは以下と統合されます:

  • .claude/agents/ のリサーチサブエージェント
  • 構造化された出力のための BAML タイプ (該当する場合)
  • ai-docs/ のドキュメント

カスタマイズ

このファイルを編集して、プロジェクト固有のものを追加します:

  • 承認されたソース
  • ドメインの語彙
  • 出力テンプレート
  • 品質基準
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

<!-- Generated by ai-dev-kit:recommend-skills on {date} --> <!-- This skill can be safely deleted if no longer needed -->

{project} Research Patterns

Research workflow patterns tailored to this project's domain and research requirements.

Variables

Variable Default Description
MAX_SOURCES 10 Maximum sources to consult per research task
SYNTHESIS_STYLE comprehensive Output style: concise, comprehensive, or academic
REQUIRE_CITATIONS true Always include source citations

Instructions

  1. Identify the research question and scope
  2. Select appropriate sources based on domain
  3. Coordinate research subagents if available
  4. Synthesize findings with proper attribution
  5. Format output according to project conventions

Red Flags - STOP and Reconsider

If you're about to:

  • Make claims without source verification
  • Skip the synthesis step
  • Use sources outside the approved list

STOP -> Verify sources -> Synthesize properly -> Then report

Workflow

1. Scope Definition

Define the research scope:

  • Primary question
  • Related sub-questions
  • Domain boundaries
  • Required source types

2. Source Selection

Approved source types for this project:

  • [TODO: Add project-specific sources]
  • Web search for recent information
  • Documentation for technical details
  • Academic sources for foundational concepts

3. Research Execution

For each source type:

  1. Query appropriate source
  2. Extract relevant information
  3. Note confidence level
  4. Record citation

4. Synthesis

Combine findings into coherent output:

  • Summarize key findings
  • Highlight consensus/disagreements
  • Provide confidence assessment
  • List all citations

Project-Specific Patterns

[TODO: Add patterns discovered in this project]

Example pattern:

### Pattern: [Name]
- **When**: [Trigger condition]
- **Do**: [Actions]
- **Output**: [Expected format]

Integration

This skill integrates with:

  • Research subagents in .claude/agents/
  • BAML types for structured outputs (if applicable)
  • Documentation in ai-docs/

Customization

Edit this file to add project-specific:

  • Approved sources
  • Domain vocabulary
  • Output templates
  • Quality criteria