llm-relevance-scoring

Scores text corpus items for relevance and authority using LLM judges with calibrated rubrics.

13|2|Updated Feb 10, 2026
One-click install
npx skills add https://github.com/aaddrick/written-voice-replication --skill llm-relevance-scoring-aaddrick
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: llm-relevance-scoring
Source: https://github.com/aaddrick/written-voice-replication/tree/main/.claude/skills/llm-relevance-scoring
Command: npx skills add https://github.com/aaddrick/written-voice-replication --skill llm-relevance-scoring-aaddrick

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires requests.

What problem does it solve? Ranking large text corpora by quality is slow and inconsistent when done manually, and naive heuristics like length or upvotes fail to separate substantive contributions from noise. This Skill provides a calibrated LLM-as-a-judge pipeline that assigns reproducible 0-100 relevance scores with documented rubrics. ## Core Features & Use Cases - Rubric-Based Scoring: Define a five-level rubric (Noise through Authority Peak) with few-shot calibration examples, then batch-score items via Ollama or API models at low temperature with checkpointing. - Calibration & Validation: Measure Cohen's kappa and mean absolute error against human scores, cross-validate with a second model, and run human spot-checks on boundary cases. - Authority Peak Detection: Identify content where the author served as a primary knowledge source, combining high scores with knowledge-asymmetry signals. - Use Case: Given a Reddit data export of 2,000 comments, score every item, filter out low-effort replies, and surface the 15 posts where the user demonstrated genuine expertise for a writing-style analysis pipeline. ## Quick Start Use the llm-relevance-scoring skill to score all comments in my corpus and identify the authority peaks.

Frequently Asked Questions about llm-relevance-scoring

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I score content quality with an LLM?

Define an explicit five-level rubric with observable criteria, build 5-10 few-shot calibration examples spanning the score range, then prompt the model at temperature 0.1-0.3 to return a JSON score and reasoning. Calibrate against 20 human-scored items before batch processing.

What is the best way to detect authority peaks in a text corpus?

Authority peaks require both a high relevance score (typically 75+) and knowledge-asymmetry signals such as original analysis, first-hand expertise, or corrections of misconceptions. Length and upvotes are unreliable proxies and should not be used.

Ollama vs GPT-4 for LLM-as-a-judge scoring?

Local Ollama models like Llama 3.1 8B are fast, private, and free for bulk scoring but may miss nuanced authority signals. GPT-4 or Claude APIs offer better calibration and human agreement at the cost of rate limits and data leaving your machine.

Why do LLM relevance scores vary between runs?

Score variance usually comes from high temperature settings or missing few-shot examples. Use temperature 0.1-0.3, include calibration examples in every prompt, and require chain-of-thought reasoning before the numeric score.

When should I not use LLM-based content scoring?

Avoid LLM scoring for corpora under 20 items where manual review is faster, for non-textual content without transcription, for sub-second real-time latency needs, or when a simple keyword or regex filter would suffice.

How do I validate that LLM scores are trustworthy?

Manually score 20 items and compute Cohen's kappa on binned scores, targeting above 0.7 with mean absolute error under 15. Cross-validate a 10% sample with a second model expecting Pearson r above 0.75, and human-review 5-10% of results.