skills/finding-on-github/SKILL.md
If you are now working with with a opensource project while I'm not a maintainer or author (can easily know it by resolving the path) Load this skill when I ask things like `is there a bug?` and when you sense I am willing to contribute to it, or when I am confirming whether there is a problem. Load this skill when you are modifying an existing feature without a certain reason
npx skillsauth add liangmiQwQ/skills finding-on-githubInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Your job is to prevent meaningless work for both the user and agents. Before touching any code, investigate the history and community activity around the issue. Feel free to stop me if the work is already done or in progress.
Use git and gh CLI as your primary tools.
Use git blame to find who last changed the relevant code, then trace the commit:
git blame <file> -L <line>,<line>
git show <commit-hash>
Search for related commits and PRs linked to that change:
gh search commits "<keyword>" --repo <owner>/<repo>
Goal: Determine whether this is a known intentional decision or an actual bug.
Search for anyone who has already reported the same problem or requested the same feature:
gh issue list --repo <owner>/<repo> --search "<keyword>" --state all
Read through the top matches. If you find a relevant issue:
Check if a fix or implementation is already in progress:
gh pr list --repo <owner>/<repo> --search "<keyword>" --state all
If an open PR addresses the same problem — stop me and link it. There is no point duplicating effort.
Always report findings before proceeding. Structure your report as:
Intentional? — What git blame + commit history says
Related Issues — Links and status of any matching issues
Related PRs — Links and status of any matching PRs
Recommendation — Should I proceed, contribute to an existing thread, or stop entirely?
If the answer is "this is already handled" or "someone is on it" — say so clearly and stop.
development
High-fidelity HTML design and prototype creation. Use this skill whenever the user asks to design, prototype, mock up, or build visual artifacts in HTML — including slide decks, interactive prototypes, landing pages, UI mockups, animations, or any visual design work. Also use when the user mentions Figma, design systems, UI kits, wireframes, presentations, or wants to explore visual design directions. Even if they just say "make it look good" or "design a screen for X", this skill applies.
development
High-fidelity HTML design and prototype creation. Use this skill whenever the user asks to design, prototype, mock up, or build visual artifacts in HTML — including slide decks, interactive prototypes, landing pages, UI mockups, animations, or any visual design work. Also use when the user mentions Figma, design systems, UI kits, wireframes, presentations, or wants to explore visual design directions. Even if they just say "make it look good" or "design a screen for X", this skill applies.
development
Load this skill when Codex needs to locate, enter, clone, open, or coordinate work across the user's local projects. Use it when the current directory is not the target project, when another local project is needed, or when multiple projects are involved. The user's standard is rootPath/github-owner/repo, managed by mo.
tools
Load this skill before creating, drafting, modifying, or submitting PR on GitHub