Compare same-method scores across sources, flag significant deviations
Scanned 6/1/2026
Install to Claude Code
npx -y skills add yogsoth-ai/de-anthropocentric-research-engine --skill discrepancy-identification --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Discrepancy Identification?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/yogsoth-ai-discrepancy-identification)More formats (shields.io, HTML) on the badges page.
---
name: discrepancy-identification
description: Compare same-method scores across sources, flag significant deviations
execution: subagent
prompt: ./prompt.md
input: score_pairs (source_a, source_b, method, dataset)
used-by: baseline-establishment
---
# Discrepancy Identification
## Purpose
Detect statistically significant discrepancies between scores reported for the same method across different sources. Identifies potential score inflation, implementation bugs, evaluation protocol differences, and unreliable baselines.
## Input Schema
| Field | Type | Description |
|-------|------|-------------|
| score_pairs | object[] | Array of {source_a, source_b, method, dataset, metric, score_a, score_b, conditions_a, conditions_b} |
## Output Schema
```json
{
"comparisons": [
{
"method": "string",
"dataset": "string",
"metric": "string",
"score_a": 0.0,
"source_a": "string",
"score_b": 0.0,
"source_b": "string",
"absolute_delta": 0.0,
"relative_delta_pct": 0.0,
"is_significant": true,
"likely_cause": "string",
"confidence": "high|medium|low"
}
],
"flagged_methods": [
{
"method": "string",
"num_discrepancies": 0,
"max_delta": 0.0,
"reliability_assessment": "string"
}
],
"systematic_patterns": ["string"]
}
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!