Agent skill

score-rfi

Score vendor RFI responses using a 0-3 rubric with SQLite storage

majiayu000534★ · 1 repos on radarProfile →
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill score-rfi --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

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

# /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

What's inside
Steps it walks through
  1. Usage
  2. Prerequisites
  3. Scoring Rubric (0-3 Scale)
  4. Scoring Criteria
  5. Score Format
  6. Instructions
  7. Phase 1: Database Setup
  8. Phase 2: Parallel Scoring
  9. Phase 3: Execute Scoring
  10. Phase 4: Generate Summary
  11. Phase 5: Create Summary Page
  12. Useful Queries
  13. Multi-Vendor Comparison
  14. Related Skills
Ships with 1 file
  • metadata.json
Commands it runs
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);"
More from claude-skill-registry
All skills →
About this skill
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.

Keep going