excrtx-quality-skilljudge

Evaluates SKILL.md files against a five-dimension rubric and generates remediation verdicts.

1|Updated May 26, 2026
One-click install
npx skills add https://github.com/elderbernardi/exocortex.saas --skill excrtx-quality-skilljudge-elderbernardi
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: excrtx-quality-skilljudge
Source: https://github.com/elderbernardi/exocortex.saas/tree/main/skills/excrtx-quality-skilljudge
Command: npx skills add https://github.com/elderbernardi/exocortex.saas --skill excrtx-quality-skilljudge-elderbernardi

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires pyyaml, and includes scripts (resource) and references (resource) components.

What problem does it solve? Agent skill files degrade in quality over time and are hard to evaluate consistently by gut feeling, leading to vague instructions, structural drift, and undetected regressions across a skill set. ## Core Features & Use Cases - Five-Dimension Rubric Evaluation: Scores skills on structural compliance, instructional clarity, behavioral alignment, harness fitness, and token economy using categorical labels instead of unreliable numeric scores. - Deterministic D1 Pre-Checks: Validates frontmatter fields, required sections, size limits, and formatting artifacts without an LLM via the included Python script. - Baseline Regression Detection: Compares sweep results against saved baselines to catch verdict regressions in CI or dogfood pipelines. - Use Case: After refactoring a set of agent skills, run a batch sweep to produce PASS/IMPROVE/REWRITE verdicts per skill, then apply tiered remediation (mechanical fixes, LLM-drafted sections, or manual rewrites) and re-verify against the baseline. ## Quick Start Ask the agent to judge all skills in the skills directory and generate a baseline report with per-dimension labels and priority fixes.

Frequently Asked Questions about excrtx-quality-skilljudge

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

FAQPage Schema
How do I evaluate the quality of agent skill files?▼

Run the skill_judge.py script with --all --d1-only for deterministic structural checks, then use the judge prompt template for LLM-based evaluation of clarity, alignment, fitness, and token economy. Results produce categorical labels and an overall PASS, IMPROVE, or REWRITE verdict.

What is LLM-as-Judge for skill evaluation?▼

LLM-as-Judge uses a language model to score artifacts against a structured rubric with categorical labels and mandatory chain-of-thought reasoning. It avoids numeric 1-10 scales because LLMs cluster around 7-8, making categorical verdicts more reliable and actionable.

How do I detect skill quality regressions in CI?▼

Save sweep results as a JSON baseline, then run the script with --compare-baseline pointing to that file. Any skill whose verdict regresses from PASS to IMPROVE or worse fails the pipeline with a non-zero exit code.

Why should the judge model differ from the skill author model?▼

Using the same model for writing and judging causes self-enhancement bias that inflates scores. Use a different model for judging, or calibrate the rubric with human-graded examples to correct leniency drift.

When should I not use skill judging?▼

Do not use it for evaluating agent runtime behavior, which requires session traces, or for LLM output quality, which needs output-level review. It also does not replace code review or linters for source code quality.