From ab27592e32f939b6e473e41fd50394a8d4496009 Mon Sep 17 00:00:00 2001 From: CodeSigils Date: Fri, 17 Jul 2026 11:56:06 +0300 Subject: [PATCH] docs: add missing scripts to Verify section, add See also, tighten .gitignore what: fix two stale README items and backfill .gitignore gaps from py-review-skill why: verify section was missing check-version-consistency.py and check-readme-tree.py; missing See also section; .pyright/, tmp/, and !.env.*.example were unignored README: - Add check-version-consistency.py and check-readme-tree.py to ## Verify command block - Add ## See also section with links to py-review-skill and repo-health-scan .gitignore: - Add .pyright/ (Pyright type checker cache) - Add tmp/ (local temp files) - Add !.env.*.example (keep all sanitized env examples) --- .gitignore | 3 +++ README.md | 7 +++++++ 2 files changed, 10 insertions(+) diff --git a/.gitignore b/.gitignore index 7e439a4..ca07c73 100644 --- a/.gitignore +++ b/.gitignore @@ -33,6 +33,7 @@ MANIFEST .nox/ .pytype/ .pyre/ +.pyright/ # Virtual environments .venv/ @@ -44,10 +45,12 @@ ENV/ .env .env.* !.env.example +!.env.*.example # Local editor/OS files .DS_Store .vscode/ +tmp/ # Local agent/tool state .omo/ diff --git a/README.md b/README.md index 9360c14..b76dfd4 100644 --- a/README.md +++ b/README.md @@ -200,6 +200,8 @@ use portable paths and client-neutral operations. ```bash python3 .github/scripts/check-portability.py +python3 scripts/check-version-consistency.py +python3 scripts/check-readme-tree.py python3 scripts/validate-ci.py python3 scripts/validate.py python3 scripts/test-validate-ci.py @@ -271,6 +273,11 @@ modifying it. Everything else is repository-only development infrastructure. The Orientation Checklist is now inlined in SKILL.md ยง Orientation Checklist. +## See also + +- [`py-review-skill`](https://github.com/CodeSigils/py-review-skill) โ€” Python code review companion skill +- [`repo-health-scan`](https://github.com/CodeSigils/repo-health-and-sync-skill) โ€” Git repository health audit methodology + ## License MIT โ€” see [LICENSE](LICENSE).