What problem does it solve? Local grep and Glob only reach the checked-out repository, so code, patterns, or past implementations living in other repos — especially private ones — stay invisible. This Skill uses the authenticated gh CLI to run GitHub code search across every repo and org you can access. ## Core Features & Use Cases - Cross-repo code search: Run gh search code scoped by --owner, --repo, --language, --filename, or --extension to find symbols, patterns, or config files anywhere gh is authenticated. - Structured output: Use --json with -q jq expressions to produce machine-readable results for downstream scripting. - Content retrieval: Fetch full file contents for a matched path via gh api repos/<owner>/<repo>/contents/<path>. - Use Case: You remember writing an RLSPolicy implementation months ago but not which repo it lives in. Search gh search code "RLSPolicy" --owner your-org --language go to locate it, then pull the file content directly. ## Quick Start Search all of my GitHub org's repositories for where the function someFunctionName is used and show me the matching files.