PR Readiness Check
SkillFiles & storageUse before committing, pushing, or opening a PR to catch missing files, mixed staging, validation gaps, and PR metadata mistakes.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the PR Readiness Check skill
What this skill tells your AI
The instructions your AI receives, as published by nomadoor/comfyui-video-stabilizer in .claude/skills/pr-readiness-check/SKILL.md and read by ahel’s review.
Use this skill right before commit/push/PR creation, especially after adding new files, validation scripts, nodes, docs, or workflows.
Checklist
- Inspect branch and file state:
git status -sb
git diff --stat
git diff --cached --stat
git ls-files --others --exclude-standard
- Verify new files are intentionally included.
- If code imports a new module, confirm the module is tracked or staged.
- If validation references a new script, confirm the script is tracked or staged.
- Do not rely on
git diffalone; it does not show untracked files.
- Check staged scope before commit.
git diff --cached --name-only
- Stage explicit paths when the worktree is mixed.
- Do not use broad staging if unrelated user changes are present.
- Run validation in the environment that has runtime dependencies.
python3 scripts/validate_repo.py
python3 -m compileall nodes scripts
If plain python3 lacks declared runtime dependencies such as OpenCV, also run
the checks with the available ComfyUI venv and report the environment difference.
- Before opening a PR:
- Confirm the PR title has no
[codex],[claude], or similar tool label. - Link related issues without closing them unless the user explicitly asks:
use
Related: #N, notFixes #N/Closes #N. - Confirm the pushed branch contains the latest local commit.
When Reporting
Mention:
- branch and latest commit
- whether untracked files remain
- validation commands and results
- any skipped review finding and why
Signals
- GitHub stars
- 90
- Forks
- 4
- Last commit
- Jul 2026
Advanced
- Catalog kind
- skill
- Gateway key
pr-readiness-check- Source
- github.com/nomadoor/comfyui-video-stabilizer