bid-analysis-comparator
Compare and analyze contractor bids. Score proposals, identify scope gaps, and recommend selections.
npx skills add majiayu000/claude-skill-registry --skill bid-analysis-comparator --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.
# Bid Analysis Comparator ## Business Case Bid evaluation requires systematic comparison across multiple criteria. This skill provides structured bid analysis and scoring. ## Technical Implementation ```python import pandas as pd from datetime import date from typing import Dict, Any, List from dataclasses import dataclass, field from enum import Enum class BidStatus(Enum): RECEIVED = "received" UNDER_REVIEW = "under_review" SHORTLISTED = "shortlisted" AWARDED = "awarded" REJECTED = "rejected" @dataclass class EvaluationCriteria: name: str weight: float # 0-1 max_score: int = 10 @dataclass class BidScore: criteria: str score: int notes: str = "" @dataclass class Bid: bid_id: str bidder_name: str bid_package: str submitted_date: date base_bid: float alternates: Dict[str, float] status: BidStatus scores: List[BidScore] = field(default_factory=list) qualifications: List[str] = field(default_factory=list) exclusions: List[str] = field(default_factory=list) @property def total_weighted_score(self) -> float: return sum(s.score for s in self.scores) class BidAnalysisComparator: def __init__(self, project_name: str, bid_package: str): self.project_name = project_name self.bid_package = bid
- Business Case
- Technical Implementation
- Quick Start
- Resources
What does the bid-analysis-comparator skill do?
Compare and analyze contractor bids. Score proposals, identify scope gaps, and recommend selections.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill bid-analysis-comparator --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.
