Agent skill

bid-analysis-comparator

Compare and analyze contractor bids. Score proposals, identify scope gaps, and recommend selections.

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

Facts
Files in the skill folder: 2
SKILL.md size: 6 KB
Bundled scripts: none
Path: skills/analysis/bid-analysis-comparator/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

# 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

What's inside
Steps it walks through
  1. Business Case
  2. Technical Implementation
  3. Quick Start
  4. Resources
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
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.

Keep going