From gh-cli-search
Enforces the mandatory use of gh-cli-search skills for any GitHub CLI search queries, preventing syntax errors with quoting, platform differences, and the `--` flag.
How this skill is triggered — by the user, by Claude, or both
Slash command
/gh-cli-search:using-gh-cli-searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
<EXTREMELY-IMPORTANT>
This is not a suggestion. This is not optional. You cannot rationalize your way out of this.
Why: GitHub CLI search syntax is full of pitfalls. The -- flag. Quoting rules. PowerShell escaping. Platform differences. You WILL get it wrong without the skills. The user will copy-paste your broken command. They will waste time debugging YOUR mistake.
When a user message mentions ANY of these, you MUST use gh-cli-search skills:
gh search commandIf detected → Use the Skill tool to load the appropriate gh-cli-search skill
You have access to these gh-cli-search skills:
Pick the right skill. Use the Skill tool. Follow it exactly.
If you catch yourself thinking ANY of these thoughts, STOP. You are about to give the user a broken command.
-- flag for exclusions.-- flag. Or quote incorrectly. Or miss PowerShell escaping.Why: Every time you skip these skills for "simple" gh CLI questions, you give incorrect commands. The -- flag gets missed. Quoting breaks. PowerShell fails. The user's time is wasted.
-- Flag Will Bite YouThe most common mistake: Forgetting the -- flag before queries with exclusions.
Without the skill, you WILL write:
gh search issues "is:open -label:bug" # BROKEN - shell interprets -label as a flag
The skill ensures you write:
gh search issues -- "is:open -label:bug" # CORRECT
This is not optional. This is why the skills exist.
-- flag for exclusions--% requirementUsing the skill takes 30 seconds. Debugging your broken command takes 10 minutes.
User mentions GitHub CLI searching:
User asks about installation/troubleshooting:
These skills are not "nice to have" documentation. They are battle-tested patterns that prevent the specific, predictable mistakes you make when constructing gh CLI commands without them.
The skills encode:
-- flag is requiredYou cannot replicate this from memory. Stop trying.
User asks about GitHub CLI searching → You MUST use the gh-cli-search skill.
Not optional. Not negotiable. The skill exists to prevent you from giving broken commands.
Use it every single time.
Guides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.
npx claudepluginhub aaddrick/gh-cli-search --plugin gh-cli-search