use-conductor
プロジェクトの方向性やワークフロー、タスク計画を把握するため、conductorディレクトリをスキャンするSkill。
📜 元の英語説明(参考)
Scan conductor/ directory for project direction, workflows, and task planning when present
🇯🇵 日本人クリエイター向け解説
プロジェクトの方向性やワークフロー、タスク計画を把握するため、conductorディレクトリをスキャンするSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 この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
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Conductor の使用
プロジェクトルートにある conductor/ ディレクトリをスキャンし、方向性、ワークフロー、タスク計画のコンテキストを提供する構造化されたプロジェクト管理ファイルを確認します。
使用するタイミング
このスキルは次の場合に使用します。
- conductor ファイルがある可能性のあるプロジェクトで作業を開始するとき
- プロジェクトのコンテキスト、ガイドライン、または現在のタスクを探しているとき
- プロジェクトのワークフロー方法論を理解する必要があるとき
- 進行中の作業や次に控えている作業を判断するとき
Conductor ディレクトリ構造
conductor システムは次の構造を使用します。
conductor/
├── product.md # 製品のビジョンと目的
├── product-guidelines.md # 標準と規約
├── tech-stack.md # 技術的な決定
├── workflow.md # タスク実行方法論
├── tracks.md # アクティブな作業トラックのインデックス
├── setup_state.json # セットアップの進捗状況
├── code_styleguides/ # 言語固有のスタイルガイド
│ ├── general.md
│ └── python.md
└── tracks/ # 詳細なトラック計画
└── <track_name>/
├── spec.md # トラックの仕様
├── plan.md # 進捗状況を含むタスクチェックリスト
└── metadata.json # トラックのメタデータ
ファイルの目的
| ファイル | 目的 |
|---|---|
product.md |
製品のビジョン、ターゲットオーディエンス、コア機能 |
product-guidelines.md |
命名規則、品質基準、ドキュメントルール |
tech-stack.md |
承認されたテクノロジーとライブラリ |
workflow.md |
TDD 方法論、タスクワークフロー、コミットガイドライン |
tracks.md |
すべての作業トラックのハイレベルなインデックス |
tracks/<name>/plan.md |
[ ]、[~]、[x] のステータスを含む詳細なタスクチェックリスト |
tracks/<name>/spec.md |
トラックの目標、スコープ、成功基準 |
スキャン方法
- プロジェクトルートに
conductor/ディレクトリが存在するか確認します。 - 存在する場合、コアファイルを読み取り、プロジェクトのコンテキストを理解します。
- ビジョンについては
product.md - 標準については
product-guidelines.md - アクティブな作業については
tracks.md
- ビジョンについては
- アクティブなトラック (
[~]とマークされている) については、トラックのplan.mdを読み、現在のタスクを見つけます。 workflow.mdで定義されているワークフロー方法論に従います。
タスクステータスマーカー
plan.md ファイル内:
[ ]- タスク未開始[~]- タスク進行中[x]- タスク完了 (コミット SHA を含む場合があります)
作業との統合
conductor ファイルが存在する場合:
- 計画を尊重する -
plan.mdのタスク順序に従います。 - ステータスを更新する - 開始時に
[~]、完了時に[x]とタスクをマークします。 - ワークフローに従う - 指定されている場合は TDD 方法論を使用します。
- 標準を維持する -
product-guidelines.mdとスタイルガイドに従います。 - スコープ内に留まる -
spec.mdでスコープ内/スコープ外のものを確認します。
使用例
プロジェクトでの作業を開始する前:
User: "次に何に取り組むべきですか?"
Claude: [conductor/ ディレクトリを確認]
[tracks.md を読み、アクティブなトラックを見つける]
[tracks/<active>/plan.md を読み、次の [ ] タスクを見つける]
"conductor の計画によると、次のタスクは..." 📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Use Conductor
Scan the conductor/ directory at project root for structured project management files that provide direction, workflows,
and task planning context.
When to Use
Use this skill when:
- Starting work on a project that may have conductor files
- Looking for project context, guidelines, or current tasks
- Needing to understand the project's workflow methodology
- Determining what work is in progress or next in queue
Conductor Directory Structure
The conductor system uses this structure:
conductor/
├── product.md # Product vision and purpose
├── product-guidelines.md # Standards and conventions
├── tech-stack.md # Technology decisions
├── workflow.md # Task execution methodology
├── tracks.md # Index of active work tracks
├── setup_state.json # Setup progress state
├── code_styleguides/ # Language-specific style guides
│ ├── general.md
│ └── python.md
└── tracks/ # Detailed track plans
└── <track_name>/
├── spec.md # Track specification
├── plan.md # Task checklist with progress
└── metadata.json # Track metadata
File Purposes
| File | Purpose |
|---|---|
product.md |
Product vision, target audience, core features |
product-guidelines.md |
Naming conventions, quality standards, documentation rules |
tech-stack.md |
Approved technologies and libraries |
workflow.md |
TDD methodology, task workflow, commit guidelines |
tracks.md |
High-level index of all work tracks |
tracks/<name>/plan.md |
Detailed task checklist with [ ], [~], [x] status |
tracks/<name>/spec.md |
Goals, scope, and success criteria for the track |
How to Scan
- Check if
conductor/directory exists at project root - If present, read core files to understand project context:
product.mdfor visionproduct-guidelines.mdfor standardstracks.mdfor active work
- For active tracks (marked
[~]), read the track'splan.mdto find current tasks - Follow the workflow methodology defined in
workflow.md
Task Status Markers
In plan.md files:
[ ]- Task not started[~]- Task in progress[x]- Task completed (may include commit SHA)
Integration with Work
When conductor files are present:
- Respect the plan - Follow the task order in
plan.md - Update status - Mark tasks as
[~]when starting,[x]when done - Follow workflow - Use the TDD methodology if specified
- Maintain standards - Follow
product-guidelines.mdand style guides - Stay in scope - Check
spec.mdfor what's in/out of scope
Example Usage
Before starting work on a project:
User: "What should I work on next?"
Claude: [Checks for conductor/ directory]
[Reads tracks.md to find active track]
[Reads tracks/<active>/plan.md to find next [ ] task]
"According to the conductor plan, the next task is..."