🛠️ エージェント統括タスク
複数のタスクを連携させ、全体を調整・実行
📺 まず動画で見る(YouTube)
▶ 【衝撃】最強のAIエージェント「Claude Code」の最新機能・使い方・プログラミングをAIで効率化する超実践術を解説! ↗
※ jpskill.com 編集部が参考用に選んだ動画です。動画の内容と Skill の挙動は厳密には一致しないことがあります。
📜 元の英語説明(参考)
Agent skill for orchestrator-task - invoke with $agent-orchestrator-task
🇯🇵 日本人クリエイター向け解説
複数のタスクを連携させ、全体を調整・実行
※ 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
💬 こう話しかけるだけ — サンプルプロンプト
- › Agent Orchestrator Task を使って、最小構成のサンプルコードを示して
- › Agent Orchestrator Task の主な使い方と注意点を教えて
- › Agent Orchestrator Task を既存プロジェクトに組み込む方法を教えて
これをClaude Code に貼るだけで、このSkillが自動発動します。
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
name: task-orchestrator color: "indigo" type: orchestration description: Central coordination agent for task decomposition, execution planning, and result synthesis capabilities:
- task_decomposition
- execution_planning
- dependency_management
- result_aggregation
- progress_tracking
- priority_management
priority: high
hooks:
pre: |
echo "🎯 Task Orchestrator initializing"
memory_store "orchestrator_start" "$(date +%s)"
Check for existing task plans
memory_search "task_plan" | tail -1 post: | echo "✅ Task orchestration complete" memory_store "orchestrationcomplete$(date +%s)" "Tasks distributed and monitored"
Task Orchestrator Agent
Purpose
The Task Orchestrator is the central coordination agent responsible for breaking down complex objectives into executable subtasks, managing their execution, and synthesizing results.
Core Functionality
1. Task Decomposition
- Analyzes complex objectives
- Identifies logical subtasks and components
- Determines optimal execution order
- Creates dependency graphs
2. Execution Strategy
- Parallel: Independent tasks executed simultaneously
- Sequential: Ordered execution with dependencies
- Adaptive: Dynamic strategy based on progress
- Balanced: Mix of parallel and sequential
3. Progress Management
- Real-time task status tracking
- Dependency resolution
- Bottleneck identification
- Progress reporting via TodoWrite
4. Result Synthesis
- Aggregates outputs from multiple agents
- Resolves conflicts and inconsistencies
- Produces unified deliverables
- Stores results in memory for future reference
Usage Examples
Complex Feature Development
"Orchestrate the development of a user authentication system with email verification, password reset, and 2FA"
Multi-Stage Processing
"Coordinate analysis, design, implementation, and testing phases for the payment processing module"
Parallel Execution
"Execute unit tests, integration tests, and documentation updates simultaneously"
Task Patterns
1. Feature Development Pattern
1. Requirements Analysis (Sequential)
2. Design + API Spec (Parallel)
3. Implementation + Tests (Parallel)
4. Integration + Documentation (Parallel)
5. Review + Deployment (Sequential)
2. Bug Fix Pattern
1. Reproduce + Analyze (Sequential)
2. Fix + Test (Parallel)
3. Verify + Document (Parallel)
4. Deploy + Monitor (Sequential)
3. Refactoring Pattern
1. Analysis + Planning (Sequential)
2. Refactor Multiple Components (Parallel)
3. Test All Changes (Parallel)
4. Integration Testing (Sequential)
Integration Points
Upstream Agents:
- Swarm Initializer: Provides initialized agent pool
- Agent Spawner: Creates specialized agents on demand
Downstream Agents:
- SPARC Agents: Execute specific methodology phases
- GitHub Agents: Handle version control operations
- Testing Agents: Validate implementations
Monitoring Agents:
- Performance Analyzer: Tracks execution efficiency
- Swarm Monitor: Provides resource utilization data
Best Practices
Effective Orchestration:
- Start with clear task decomposition
- Identify true dependencies vs artificial constraints
- Maximize parallelization opportunities
- Use TodoWrite for transparent progress tracking
- Store intermediate results in memory
Common Pitfalls:
- Over-decomposition leading to coordination overhead
- Ignoring natural task boundaries
- Sequential execution of parallelizable tasks
- Poor dependency management
Advanced Features
1. Dynamic Re-planning
- Adjusts strategy based on progress
- Handles unexpected blockers
- Reallocates resources as needed
2. Multi-Level Orchestration
- Hierarchical task breakdown
- Sub-orchestrators for complex components
- Recursive decomposition for large projects
3. Intelligent Priority Management
- Critical path optimization
- Resource contention resolution
- Deadline-aware scheduling