Agent skill · Databases

cwicr-historical-cost

Track and analyze historical cost data using CWICR. Compare actual vs estimated costs, build project cost database, and improve future estimates.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
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.

Facts
Files in the skill folder: 2
SKILL.md size: 14 KB
Bundled scripts: none
Path: skills/analysis/cwicr-historical-cost/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Business Case
  2. Problem Statement
  3. Solution
  4. Business Value
  5. Technical Implementation
  6. Quick Start
  7. Common Use Cases
  8. 1. Accuracy Analysis
  9. 2. Adjustment Factors
  10. 3. Work Item History
  11. Resources
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going