cwicr-historical-cost
Track and analyze historical cost data using CWICR. Compare actual vs estimated costs, build project cost database, and improve future estimates.
npx skills add majiayu000/claude-skill-registry --skill cwicr-historical-cost --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# CWICR Historical Cost Tracker ## Business Case ### Problem Statement Improving estimates requires: - Actual cost feedback - Historical comparisons - Trend analysis - Lessons learned ### Solution Track actual costs against CWICR estimates, build historical database, and use data to improve future estimating accuracy. ### Business Value - **Accuracy improvement** - Learn from actuals - **Benchmarking** - Project comparisons - **Trend analysis** - Cost movement patterns - **Organizational knowledge** - Cost database ## Technical Implementation ```python import pandas as pd import numpy as np from typing import Dict, Any, List, Optional from dataclasses import dataclass, field from datetime import datetime, date from enum import Enum import json class ProjectStatus(Enum): """Project status.""" ESTIMATED = "estimated" IN_PROGRESS = "in_progress" COMPLETED = "completed" CANCELLED = "cancelled" @dataclass class CostRecord: """Historical cost record.""" project_id: str project_name: str work_item_code: str quantity: float estimated_cost: float actual_cost: float variance: float variance_percent: float completion_date: date notes: str = "" @dataclass class ProjectCostSummary: """Project c
- Business Case
- Problem Statement
- Solution
- Business Value
- Technical Implementation
- Quick Start
- Common Use Cases
- 1. Accuracy Analysis
- 2. Adjustment Factors
- 3. Work Item History
- Resources
What does the cwicr-historical-cost skill do?
Track and analyze historical cost data using CWICR. Compare actual vs estimated costs, build project cost database, and improve future estimates.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill cwicr-historical-cost --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
