jpskill.com
📦 その他 コミュニティ

capacity-planning

チームの能力を分析し、プロジェクト間のリソース配分と作業負荷を調整、持続可能なペースを維持しながら人員ニーズを予測し、チームの稼働率を最適化するSkill。

📜 元の英語説明(参考)

Analyze team capacity, plan resource allocation, and balance workload across projects. Forecast staffing needs and optimize team utilization while maintaining sustainable pace.

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

一言でいうと

チームの能力を分析し、プロジェクト間のリソース配分と作業負荷を調整、持続可能なペースを維持しながら人員ニーズを予測し、チームの稼働率を最適化するSkill。

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

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

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

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

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

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

📖 Skill本文(日本語訳)

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

キャパシティプランニング

目次

概要

キャパシティプランニングは、チームが持続可能なペースで作業を遂行するために十分なリソースを確保し、燃え尽き症候群を防ぎ、ステークホルダーに対して正確なコミットメントを可能にします。

使用するタイミング

  • 年次または四半期ごとの計画サイクル
  • プロジェクトへの人員割り当て
  • チーム規模の調整
  • 休暇や欠勤の計画
  • リソースニーズの予測
  • 複数のプロジェクトのバランス調整
  • ボトルネックの特定

クイックスタート

最小限の動作例:

# Team capacity calculation and planning

class CapacityPlanner:
    # Standard work hours per week
    STANDARD_WEEK_HOURS = 40

    # Activities that reduce available capacity
    OVERHEAD_HOURS = {
        'meetings': 5,           # standups, 1-on-1s, planning
        'training': 2,           # learning new tech
        'administrative': 2,     # emails, approvals
        'support': 2,            # helping teammates
        'contingency': 2         # interruptions, emergencies
    }

    def __init__(self, team_size, sprint_duration_weeks=2):
        self.team_size = team_size
        self.sprint_duration_weeks = sprint_duration_weeks
        self.members = []

    def calculate_team_capacity(self):
        """Calculate available capacity hours"""
        # Base capacity
        base_hours = self.team_size * self.STANDARD_WEEK_HOURS * self.sprint_duration_weeks

// ... (see reference guides for full implementation)

リファレンスガイド

references/ ディレクトリにある詳細な実装:

ガイド 内容
Capacity Assessment キャパシティ評価
Capacity Planning Template キャパシティプランニングテンプレート
Resource Leveling リソースレベリング
Capacity Forecasting キャパシティ予測

ベストプラクティス

✅ 実施すべきこと

  • 稼働率85%(15%のバッファ)でキャパシティを計画する
  • 会議、トレーニング、およびオーバーヘッドを考慮に入れる
  • 既知の欠勤(休暇、祝日)を含める
  • スキルのボトルネックを早期に特定する
  • チーム全体でワークロードを公平にバランスさせる
  • キャパシティを毎月レビューする
  • 実際のベロシティに基づいて計画を調整する
  • 重要なスキルについてクロス・トレーニングを行う
  • ステークホルダーに現実的なコミットメントを伝える
  • 緊急事態に備えてコンティンジェンシーを構築する

❌ 実施すべきでないこと

  • 稼働率100%で計画する
  • 会議やオーバーヘッドを無視する
  • スキルを確認せずに作業を割り当てる
  • 継続的なサプライズで過負荷を生み出す
  • 学習/トレーニング時間を忘れる
  • キャパシティプランニングを土壇場まで残す
  • チームに一貫して過剰なコミットメントをさせる
  • 主要な人材を燃え尽きさせる
  • ワークロードに関するチームのフィードバックを無視する
  • 欠勤を考慮せずに計画する
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開

Capacity Planning

Table of Contents

Overview

Capacity planning ensures teams have sufficient resources to deliver work at sustainable pace, prevents burnout, and enables accurate commitment to stakeholders.

When to Use

  • Annual or quarterly planning cycles
  • Allocating people to projects
  • Adjusting team size
  • Planning for holidays and absences
  • Forecasting resource needs
  • Balancing multiple projects
  • Identifying bottlenecks

Quick Start

Minimal working example:

# Team capacity calculation and planning

class CapacityPlanner:
    # Standard work hours per week
    STANDARD_WEEK_HOURS = 40

    # Activities that reduce available capacity
    OVERHEAD_HOURS = {
        'meetings': 5,           # standups, 1-on-1s, planning
        'training': 2,           # learning new tech
        'administrative': 2,     # emails, approvals
        'support': 2,            # helping teammates
        'contingency': 2         # interruptions, emergencies
    }

    def __init__(self, team_size, sprint_duration_weeks=2):
        self.team_size = team_size
        self.sprint_duration_weeks = sprint_duration_weeks
        self.members = []

    def calculate_team_capacity(self):
        """Calculate available capacity hours"""
        # Base capacity
        base_hours = self.team_size * self.STANDARD_WEEK_HOURS * self.sprint_duration_weeks

// ... (see reference guides for full implementation)

Reference Guides

Detailed implementations in the references/ directory:

Guide Contents
Capacity Assessment Capacity Assessment
Capacity Planning Template Capacity Planning Template
Resource Leveling Resource Leveling
Capacity Forecasting Capacity Forecasting

Best Practices

✅ DO

  • Plan capacity at 85% utilization (15% buffer)
  • Account for meetings, training, and overhead
  • Include known absences (vacation, holidays)
  • Identify skill bottlenecks early
  • Balance workload fairly across team
  • Review capacity monthly
  • Adjust plans based on actual velocity
  • Cross-train on critical skills
  • Communicate realistic commitments to stakeholders
  • Build contingency for emergencies

❌ DON'T

  • Plan at 100% utilization
  • Ignore meetings and overhead
  • Assign work without checking skills
  • Create overload with continuous surprises
  • Forget about learning/training time
  • Leave capacity planning to last minute
  • Overcommit team consistently
  • Burn out key people
  • Ignore team feedback on workload
  • Plan without considering absences

同梱ファイル

※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。