Agent skill

semantic-consistency-auditor

Evaluate semantic consistency between AI-generated clinical notes and expert gold standards using BERTScore and COMET

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

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

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Version: 1.0.0
Declared author: AIPOCH
Path: skills/ai-ml/semantic-consistency-auditor/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

# Skill: Semantic Consistency Auditor **ID:** 212 **Name:** semantic-consistency-auditor **Description:** Introduces BERTScore and COMET algorithms to evaluate the semantic consistency between AI-generated clinical notes and expert gold standards from the "semantic entailment" level. ## Overview Semantic Consistency Auditor is a medical AI evaluation tool used to assess the semantic consistency between AI-generated clinical notes and expert-written gold standards from a semantic level. This tool is not limited to traditional string matching or bag-of-words models, but uses deep learning models to understand semantic entailment relationships, capable of identifying expressions with different wording but similar meaning. ## Algorithms ### 1. BERTScore BERTScore uses pre-trained BERT model contextual embeddings to calculate similarity between candidate text and reference text: - **Precision**: How much semantics in the candidate text is covered by the reference text - **Recall**: How much semantics in the reference text is covered by the candidate text - **F1 Score**: Harmonic mean of Precision and Recall ### 2. COMET (Cross-lingual Optimized Metric for Evaluation of Translation) COME

What's inside
Steps it walks through
  1. Overview
  2. Algorithms
  3. 1. BERTScore
  4. 2. COMET (Cross-lingual Optimized Metric for Evaluation of Translation)
  5. Installation
  6. Configuration
  7. Usage
  8. Command Line
  9. Python API
  10. Input Format
  11. Single Case (Command Line)
  12. Batch Evaluation File (JSON)
  13. Output Format
  14. Summary Mode
Ships with 1 file
  • metadata.json
Commands it runs
Create virtual environment (recommended)
python -m venv venv
source venv/bin/activate  # Linux/Mac
Or venv\Scripts\activate  # Windows
Install dependencies
pip install bertscore comet-ml transformers torch
Evaluate single case pair
python scripts/main.py \
Batch evaluation from JSON file
Use specific model
More from claude-skill-registry
All skills →
About this skill
What does the semantic-consistency-auditor skill do?

Evaluate semantic consistency between AI-generated clinical notes and expert gold standards using BERTScore and COMET

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill semantic-consistency-auditor --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