project-estimation
Estimate project scope, timeline, and resource requirements using multiple estimation techniques including bottom-up, top-down, and analogous estimation methods for accurate project planning.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o project-estimation.zip https://jpskill.com/download/21497.zip && unzip -o project-estimation.zip && rm project-estimation.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/21497.zip -OutFile "$d\project-estimation.zip"; Expand-Archive "$d\project-estimation.zip" -DestinationPath $d -Force; ri "$d\project-estimation.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
project-estimation.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
project-estimationフォルダができる - 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-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 6
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
プロジェクトの見積もり
目次
概要
正確なプロジェクトの見積もりは、現実的なタイムライン、予算、リソース配分を決定します。効果的な見積もりは、過去のデータ、専門家の判断、構造化された手法を組み合わせて、予期せぬ事態を最小限に抑えます。
使用するタイミング
- プロジェクトのスコープと成果物の定義
- プロジェクトの予算とタイムラインの作成
- チームリソースの割り当て
- ステークホルダーの期待値の管理
- プロジェクトの実現可能性の評価
- 不測の事態への計画
- プロジェクト実行中の見積もりの更新
クイックスタート
最小限の動作例:
# Three-point estimation technique for uncertainty
class ThreePointEstimation:
@staticmethod
def calculate_pert_estimate(optimistic, most_likely, pessimistic):
"""
PERT formula: (O + 4M + P) / 6
Weighted toward most likely estimate
"""
pert = (optimistic + 4 * most_likely + pessimistic) / 6
return round(pert, 2)
@staticmethod
def calculate_standard_deviation(optimistic, pessimistic):
"""Standard deviation for risk analysis"""
sigma = (pessimistic - optimistic) / 6
return round(sigma, 2)
@staticmethod
def calculate_confidence_interval(pert_estimate, std_dev, confidence=0.95):
"""
Calculate confidence interval for estimate
95% confidence ≈ ±2 sigma
"""
z_score = 1.96 if confidence == 0.95 else 2.576
// ... (see reference guides for full implementation)
リファレンスガイド
references/ ディレクトリにある詳細な実装:
| ガイド | 内容 |
|---|---|
| Three-Point Estimation (PERT) | Three-Point Estimation (PERT) |
| Bottom-Up Estimation | Bottom-Up Estimation |
| Analogous Estimation | Analogous Estimation |
| Resource Estimation | Resource Estimation |
| Estimation Templates | Estimation Templates |
ベストプラクティス
✅ 実施すべきこと
- 複数の見積もり手法を使用し、結果を比較する
- 不測の事態に備えたバッファ(新規プロジェクトでは15~25%)を含める
- 同様のプロジェクトの過去のデータに基づいて見積もりを行う
- 大規模な作業をより小さなコンポーネントに分解する
- 実際の作業を行うチームメンバーから意見を得る
- 前提条件と除外事項を明確に文書化する
- 見積もりを定期的にレビューし、調整する
- 改善のために実績と見積もりの指標を追跡する
- 非開発タスク(計画、テスト、デプロイ)を含める
- 不慣れなテクノロジーに対する学習曲線を考慮する
❌ 実施すべきでないこと
- 明確なスコープ定義なしに見積もりを行う
- 非現実的な最良のシナリオを使用する
- 過去のプロジェクトデータを無視する
- 恣意的な目標を達成するためにプレッシャーの下で見積もりを行う
- コーディング以外の活動を含めるのを忘れる
- 見積もりを個人のパフォーマンス指標として使用する
- 明確な理由なしにプロジェクト途中で見積もりを変更する
- チームの意見なしに見積もりを行う
- リスクと不測の事態を無視する
- 1つの手法のみを排他的に使用する
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Project Estimation
Table of Contents
Overview
Accurate project estimation determines realistic timelines, budgets, and resource allocation. Effective estimation combines historical data, expert judgment, and structured techniques to minimize surprises.
When to Use
- Defining project scope and deliverables
- Creating project budgets and timelines
- Allocating team resources
- Managing stakeholder expectations
- Assessing project feasibility
- Planning for contingencies
- Updating estimates during project execution
Quick Start
Minimal working example:
# Three-point estimation technique for uncertainty
class ThreePointEstimation:
@staticmethod
def calculate_pert_estimate(optimistic, most_likely, pessimistic):
"""
PERT formula: (O + 4M + P) / 6
Weighted toward most likely estimate
"""
pert = (optimistic + 4 * most_likely + pessimistic) / 6
return round(pert, 2)
@staticmethod
def calculate_standard_deviation(optimistic, pessimistic):
"""Standard deviation for risk analysis"""
sigma = (pessimistic - optimistic) / 6
return round(sigma, 2)
@staticmethod
def calculate_confidence_interval(pert_estimate, std_dev, confidence=0.95):
"""
Calculate confidence interval for estimate
95% confidence ≈ ±2 sigma
"""
z_score = 1.96 if confidence == 0.95 else 2.576
// ... (see reference guides for full implementation)
Reference Guides
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| Three-Point Estimation (PERT) | Three-Point Estimation (PERT) |
| Bottom-Up Estimation | Bottom-Up Estimation |
| Analogous Estimation | Analogous Estimation |
| Resource Estimation | Resource Estimation |
| Estimation Templates | Estimation Templates |
Best Practices
✅ DO
- Use multiple estimation techniques and compare results
- Include contingency buffers (15-25% for new projects)
- Base estimates on historical data from similar projects
- Break down large efforts into smaller components
- Get input from team members doing the actual work
- Document assumptions and exclusions clearly
- Review and adjust estimates regularly
- Track actual vs. estimated metrics for improvement
- Include non-development tasks (planning, testing, deployment)
- Account for learning curve on unfamiliar technologies
❌ DON'T
- Estimate without clear scope definition
- Use unrealistic best-case scenarios
- Ignore historical project data
- Estimate under pressure to hit arbitrary targets
- Forget to include non-coding activities
- Use estimates as performance metrics for individuals
- Change estimates mid-project without clear reason
- Estimate without team input
- Ignore risks and contingencies
- Use one technique exclusively
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (3,455 bytes)
- 📎 references/analogous-estimation.md (931 bytes)
- 📎 references/bottom-up-estimation.md (2,075 bytes)
- 📎 references/estimation-templates.md (61 bytes)
- 📎 references/resource-estimation.md (1,531 bytes)
- 📎 references/three-point-estimation-pert.md (1,725 bytes)