mirror of
https://github.com/alirezarezvani/claude-skills.git
synced 2026-08-28 04:24:58 +00:00
docs(scripts): note why run_check scans README in full but restricts CLAUDE.md
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01Qgc6RYXWJPr5oW9DHU7zR4
This commit is contained in:
parent
4e93f8f66e
commit
d979128244
1 changed files with 4 additions and 0 deletions
|
|
@ -273,6 +273,10 @@ def run_check(root: Path, derived: dict) -> int:
|
|||
|
||||
readme = root / "README.md"
|
||||
if readme.is_file():
|
||||
# README is scanned in full (unlike CLAUDE.md below): it carries no
|
||||
# version-history prose, so every claim-pattern match in it is a live
|
||||
# headline that must agree with the derived values. If a history
|
||||
# section is ever added to README, restrict this the same way.
|
||||
sources.append(("README.md", readme.read_text(encoding="utf-8")))
|
||||
|
||||
claude_md = root / "CLAUDE.md"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue