A Claude Skill that finds and validates open-source GitHub repos for your project β instead of writing boilerplate from scratch.
You describe a requirement ("real-time face-recognition camera tracker on a wrapper like supervision"); the skill discovers candidates, fetches and reads their code, checks license + activity + architecture, and returns the top 3β4 repos you can build on β with an honest recommendation and a fallback.
It auto-triggers on intent. Once installed, you don't paste a prompt β you just ask "find me a repo for X" or "what should I build Y on top of", and Claude loads this skill on demand. Reusable across every project.
git-finder/
βββ SKILL.md # trigger + operating instructions (the brain)
βββ references/ # loaded on demand
βββ validation_gates.md # pass/fail gates + ranking (tune thresholds here)
βββ output_template.md # the exact report format
βββ requirements_intake.md # questions asked when your ask is vague
βββ example_run.md # a worked input β output example
- Never invents repo names, URLs, or stats β unverifiable values are marked
UNVERIFIED. - License is a hard gate β permissive only (MIT / Apache-2.0 / BSD), split licenses flagged.
- Only fetched repos get described β no imagined architecture.
- No application code unless you ask after validation.
Edit references/validation_gates.md to change thresholds (maintenance window, allowed licenses, commercial-use requirement). SKILL.md reads from it, so criteria change without touching the core logic.
To use this skill, clone it into your Claude skills directory:
git clone https://github.com/shaikh-saud705/git-finder-skill ~/.claude/skills/git-finderThen restart Claude Code and run /skills to confirm it loaded.