10x-rule-review

Reviews AI rules files and produces a five-check scorecard with concrete fixes.

Updated May 24, 2026
One-click install
npx skills add https://github.com/DevMachaj/Projekt-certyfikacyjny --skill 10x-rule-review-devmachaj
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: 10x-rule-review
Source: https://github.com/DevMachaj/Projekt-certyfikacyjny/tree/main/.claude/skills/10x-rule-review
Command: npx skills add https://github.com/DevMachaj/Projekt-certyfikacyjny --skill 10x-rule-review-devmachaj

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? AI rules files (CLAUDE.md, AGENTS.md, .cursor/rules/*.mdc, copilot instructions) silently degrade over time: they grow too long, accumulate vague advice, duplicate knowledge the model already has, and bury critical rules where the model pays least attention. This Skill audits any rule-for-AI markdown file and turns that gut feeling of "my agent ignores my rules" into a scored, actionable report. ## Core Features & Use Cases - Five-check scorecard: Scores length, direct code snippets, vague language, redundant knowledge, and rule ordering (U-shaped attention), each with OK/WARN/FAIL verdicts and line-referenced findings. - Grounded rewrites: Every vague phrase ("write clean code") gets a concrete, testable replacement derived from the project's own stack and conventions, never generic advice. - Interactive reordering: Proposes a better section order and, only with explicit user approval via AskUserQuestion, moves sections while preserving all rule content. - Use Case: Run it on a 600-line CLAUDE.md that your agent keeps ignoring; get a scorecard showing 3 vague phrases, 4 redundant paragraphs, critical security rules buried at line 312, and a top-3 action list to fix it. ## Quick Start Ask the assistant to review your AI rules file, for example: run /10x-rule-review on CLAUDE.md and show me the scorecard.

Frequently Asked Questions about 10x-rule-review

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

FAQPage Schema
How do I review my CLAUDE.md or AGENTS.md file quality?

Invoke the skill with a path to the rules file, such as /10x-rule-review CLAUDE.md. It reads the file, runs five checks (length, snippets, vague language, redundancy, ordering), and prints a scorecard with line-referenced findings and a top-3 action list.

What makes a good AI rules file for coding agents?

Keep it under 200 non-blank lines, put critical rules at the top, replace vague phrases with testable rules, and reference existing files with @-syntax instead of duplicating content. This skill scores exactly those five dimensions.

Does this skill work with Cursor .mdc rules or copilot instructions?

Yes, it is tool-agnostic and treats CLAUDE.md, AGENTS.md, .cursor/rules/*.mdc, .windsurfrules, and .github/copilot-instructions.md identically as rule-for-AI artifacts. For .mdc files, frontmatter is excluded from line counts.

Will the review edit or rewrite my rules file automatically?

No, the default output is read-only. The only possible edit is the Check 5 section reorder, which happens solely after explicit user approval via AskUserQuestion and preserves every byte of rule content.

Why does my agent ignore rules in the middle of a long file?

Models exhibit U-shaped attention, weighting the start and end of long contexts more heavily. Critical rules buried past line 200 are statistically less likely to be followed, which is what Check 5 detects and proposes reordering for.