🛠️ Dossier Collect
特定の対象について、ウェブや社内情報、知識
📺 まず動画で見る(YouTube)
▶ 【衝撃】最強のAIエージェント「Claude Code」の最新機能・使い方・プログラミングをAIで効率化する超実践術を解説! ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Build a graph-structured dossier on a seed entity via parallel fan-out + recursive expansion across web, memory, knowledge-graph, codebase, ADR index, and git intel
🇯🇵 日本人クリエイター向け解説
特定の対象について、ウェブや社内情報、知識
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o dossier-collect.zip https://jpskill.com/download/2245.zip && unzip -o dossier-collect.zip && rm dossier-collect.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/2245.zip -OutFile "$d\dossier-collect.zip"; Expand-Archive "$d\dossier-collect.zip" -DestinationPath $d -Force; ri "$d\dossier-collect.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
dossier-collect.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
dossier-collectフォルダができる - 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-17
- 取得日時
- 2026-05-17
- 同梱ファイル
- 1
💬 こう話しかけるだけ — サンプルプロンプト
- › Dossier Collect を使って、最小構成のサンプルコードを示して
- › Dossier Collect の主な使い方と注意点を教えて
- › Dossier Collect を既存プロジェクトに組み込む方法を教えて
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Dossier Collect
Recursive parallel investigation that builds a graph-structured dossier on a seed entity.
When to use
You have a seed (a username, file, symbol, ADR-id, URL, or concept) and want to expand outward discovering every connected entity, with provenance per claim — rather than answering a specific question.
For specific questions use deep-research. For multi-step plans use goal-plan.
Steps
- Detect seed type — classify as one of:
username(handle),file(path),symbol(code identifier),adr(ADR-NNN),url, orconcept(free text). - Pick sources — match the source matrix to the seed type. Default: all applicable.
- Start trajectory — call
mcp__claude-flow__hooks_intelligence_trajectory-startwith taskdossier:<slug>. - Round 0 fan-out — issue ALL source queries in ONE message. Examples:
- For
username:WebSearch,WebFetchon github.com/<user>,mcp__claude-flow__memory_search_unified - For
adr:ReadADR file,Grepreferences,mcp__claude-flow__memory_searchnamespaceadr - For
symbol:Grep,Glob,mcp__claude-flow__embeddings_search
- For
- Extract entities — from each hit, surface entities (people, repos, files, adrs, urls, terms). Lightweight regex + heuristics; no LLM extraction unless ambiguous.
- De-dup — drop entities already in the dossier. If
--exactis unset, also drop entities whose embedding cosine similarity ≥ 0.92 to an existing node. - Round k recursion — for each new entity (capped at
--max-breadthper source), recurse to step 4 until depth ≥--max-depthOR budget exhausted. - Aggregate — build
{ nodes, edges }graph. Each node carries{ id, type, attrs, sources: [...] }. Each edge carries{ from, to, kind, source, confidence }. - Render artifacts:
<slug>.md— executive summary, entity table, mermaid graph, source-provenance footnotes<slug>.json— machine-readable graph- Default location:
v3/docs/examples/dossiers/<slug>/
- Persist —
mcp__claude-flow__memory_storenamespacedossierkey<slug>. - End trajectory —
mcp__claude-flow__hooks_intelligence_trajectory-endwith success status.
Output schema (JSON)
{
"seed": "ruvnet",
"seedType": "username",
"depth": 2,
"truncated": false,
"generatedAt": "ISO-8601",
"nodes": [
{ "id": "ruvnet", "type": "username", "attrs": { "...": "..." }, "sources": ["WebSearch", "github.com"] }
],
"edges": [
{ "from": "ruvnet", "to": "ruflo", "kind": "owns", "source": "github.com", "confidence": "high" }
],
"stats": { "nodesByType": {}, "sourcesUsed": [], "tokensSpent": 0 }
}
Budget discipline
- If
--budget-usdis set, track approximate cost via trajectory. On exhaustion: emit partial dossier withtruncated: trueand the entities still queued. - BFS expansion only — finish round k before round k+1.
- Never silently truncate. Always mark and record what was skipped.
Examples
/ruflo-goals:dossier-collect ruvnet
/ruflo-goals:dossier-collect ADR-097 --max-depth 1
/ruflo-goals:dossier-collect "src/memory/hnsw.ts" --sources codebase,git,memory
/ruflo-goals:dossier-collect "ruflo-goals" --max-breadth 5 --budget-usd 1