score-rfi
Score vendor RFI responses using a 0-3 rubric with SQLite storage
Profile →npx skills add majiayu000/claude-skill-registry --skill score-rfi --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.
# /score-rfi Score vendor RFI responses stored in SQLite databases using a standardised 0-3 rubric. ## Usage ``` /score-rfi <vendor-name> /score-rfi pwc /score-rfi accenture /score-rfi ibm ``` ## Prerequisites Before scoring, ensure the vendor's CSV has been converted to SQLite: ```bash # Convert CSV to SQLite (see /csv-to-sql skill) node scripts/csv-to-sqlite.js "Inbox/<vendor>-rfi-responses.csv" --start-row <n> --fts --verbose ``` ## Scoring Rubric (0-3 Scale) | Score | Rating | Qualitative Assessment | | ----- | ------ | ---------------------------------------------------------------------------------------------------------------- | | **3** | High | Strong proven experience; clear, detailed answer demonstrating deep understanding; high confidence in capability | | **2** | Medium | Some capability demonstrated; potential but unproven or limited evidence; moderate risk | | **1** | Low | Insufficient evidence; generic or superficial response; does not address specifics; high risk | | **0** | Zero | Not demonstrated at all; no evidence or response; very high risk | ### Scoring Criteria When evaluating responses, consider: 1. **Domain Specificity** - Does the response demonstrate un
- Usage
- Prerequisites
- Scoring Rubric (0-3 Scale)
- Scoring Criteria
- Score Format
- Instructions
- Phase 1: Database Setup
- Phase 2: Parallel Scoring
- Phase 3: Execute Scoring
- Phase 4: Generate Summary
- Phase 5: Create Summary Page
- Useful Queries
- Multi-Vendor Comparison
- Related Skills
Convert CSV to SQLite (see /csv-to-sql skill) node scripts/csv-to-sqlite.js "Inbox/<vendor>-rfi-responses.csv" --start-row <n> --fts --verbose sqlite3 .data/<vendor>-rfi-scoring.db ".tables" sqlite3 .data/<vendor>-rfi-scoring.db ".schema" sqlite3 .data/<vendor>-rfi-scoring.db -markdown -header \ sqlite3 .data/<vendor>-rfi-scoring.db \ FROM <table> GROUP BY score ORDER BY score DESC;" FROM <table> WHERE <scorer_col> LIKE '1 -%' OR <scorer_col> LIKE '0 -%' ORDER BY CAST(id AS INTEGER);"
What does the score-rfi skill do?
Score vendor RFI responses using a 0-3 rubric with SQLite storage
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill score-rfi --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.