43 rule files under rules/ are not linked from README.md
Author: chirag127Created Jul 4, 2026Updated Jul 4, 2026
Problem
43 .mdc files under rules/ exist with content but are not referenced anywhere in README.md, so users browsing the awesome-list index never discover them.
Steps
git clone https://github.com/PatrickJS/awesome-cursorrules && cd awesome-cursorrules
ls rules/*.mdc | sed 's|^|rules/|' | sort -u > /tmp/all.txt
grep -oE 'rules/[a-zA-Z0-9._-]+\.mdc' README.md | sort -u > /tmp/ref.txt
comm -23 /tmp/all.txt /tmp/ref.txt | wc -l # 43Expected
Every .mdc under rules/ appears in README.md (or is intentionally omitted with a comment).
Actual
43 orphans, including rules/go.mdc (1236 B), rules/python.mdc (3393 B), rules/rust.mdc (4240 B), rules/react.mdc (2324 B), rules/clean-code.mdc (1847 B), rules/typescript.mdc, rules/vue.mdc, rules/svelte.mdc, rules/tailwind.mdc, rules/docker.mdc, etc.
Environment
Repo default branch main at commit pushedAt=2026-05-30T18:01:29Z. rules/ contains 257 .mdc files; README.md links 214 unique paths.
Thanks for maintaining PatrickJS/awesome-cursorrules!
Source: PatrickJS/awesome-cursorrules