project-estimation by aj-geddes/useful-ai-prompts
npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill project-estimation准确的项目估算决定了现实的时间表、预算和资源分配。有效的估算结合了历史数据、专家判断和结构化技术,以最大程度地减少意外情况。
最小工作示例:
# 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)
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
references/ 目录下的详细实现:
| 指南 | 内容 |
|---|---|
| 三点估算 (PERT) | 三点估算 (PERT) |
| 自下而上估算 | 自下而上估算 |
| 类比估算 | 类比估算 |
| 资源估算 | 资源估算 |
| 估算模板 | 估算模板 |
每周安装数
151
仓库
GitHub 星标数
121
首次出现
2026年1月21日
安全审计
安装于
opencode132
gemini-cli129
codex125
cursor116
claude-code112
github-copilot111
Accurate project estimation determines realistic timelines, budgets, and resource allocation. Effective estimation combines historical data, expert judgment, and structured techniques to minimize surprises.
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)
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 |
Weekly Installs
151
Repository
GitHub Stars
121
First Seen
Jan 21, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykPass
Installed on
opencode132
gemini-cli129
codex125
cursor116
claude-code112
github-copilot111
站立会议模板:敏捷开发每日站会指南与工具(含远程团队异步模板)
10,500 周安装