dual-axis-skill-reviewer

Automates dual-axis skill review combining code-based checks and LLM deep analysis.

2|Updated Jun 14, 2026
One-click install
npx skills add https://github.com/IhsanDanish25/claude-trading-skills --skill dual-axis-skill-reviewer-ihsandanish25
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: dual-axis-skill-reviewer
Source: https://github.com/IhsanDanish25/claude-trading-skills/tree/main/skills/dual-axis-skill-reviewer
Command: npx skills add https://github.com/IhsanDanish25/claude-trading-skills --skill dual-axis-skill-reviewer-ihsandanish25

SYSTEM DOCUMENTATION & REQUIREMENTS

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

What problem does it solve?

This Skill automates the review of skills using a dual-axis method, combining deterministic code-based checks and LLM deep review findings. It's useful for ensuring quality, gating merges, and identifying improvement items.

Core Features & Use Cases

  • Dual-axis Scoring: Combines deterministic checks (structure, scripts, tests, execution safety) and LLM deep review findings.
  • Reproducible Quality Scoring: Useful for gating merges with a score threshold (e.g., 90+).
  • Improvement Items: Provides concrete improvement items for low-scoring skills.
  • Cross-project Review: Works across projects via a command-line interface.

Quick Start

Run the dual-axis reviewer script with the following command:

uv run skills/dual-axis-skill-reviewer/scripts/run_dual_axis_review.py --project-root . --emit-llm-prompt --output-dir reports/

Frequently Asked Questions about dual-axis-skill-reviewer

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

FAQPage Schema
How does dual-axis scoring work for automated code review?

Dual-axis scoring for automated code review combines deterministic code-based checks for structure and execution safety with LLM deep review findings to produce a reproducible quality score. This method evaluates scripts and tests to ensure comprehensive quality assurance.

How do I automate skill review and gate merges using a quality score threshold?

To automate skill review and gate merges, run the command-line review script to generate a reproducible quality score. You can then enforce a score threshold, such as requiring a minimum of 90, to block low-scoring skills from merging into the project.

Do I need Python and an LLM integration to run automated skill reviews?

Yes, you need Python and an LLM integration to run automated skill reviews. The execution and scoring process specifically requires the uv package manager to run the review script and an LLM to generate the deep review findings.

Can I run cross-project skill reviews from the command line?

Yes, you can run cross-project skill reviews from the command line. The reviewer script accepts a project root directory argument, allowing you to target and evaluate different projects individually to generate isolated quality reports.

What is the best way to identify improvement items for low-scoring skills?

The best way to identify improvement items for low-scoring skills is to use a dual-axis review approach. The LLM deep review evaluates the code and provides concrete improvement items directly alongside the deterministic quality score.

What deterministic checks are evaluated during an automated skill review?

Deterministic checks evaluated during an automated skill review include project structure, scripts, tests, and execution safety. These code-based checks form one axis of the scoring system before being combined with LLM deep review findings.