Back to skills
SkillHub ClubShip Full StackFull StackIntegration

github-search

Search GitHub code, repositories, issues, and PRs via MCP

Packaged view

This page reorganizes the original catalog entry around fit, installability, and workflow context first. The original raw source lives below.

Stars
1
Hot score
77
Updated
March 20, 2026
Overall rating
C1.2
Composite score
1.2
Best-practice grade
B81.2

Install command

npx @skill-hub/cli install tfunk1030-vibe-github-search

Repository

tfunk1030/vibe

Skill path: .claude/skills/github-search

Search GitHub code, repositories, issues, and PRs via MCP

Open repository

Best for

Primary workflow: Ship Full Stack.

Technical facets: Full Stack, Integration.

Target audience: everyone.

License: Unknown.

Original source

Catalog source: SkillHub Club.

Repository owner: tfunk1030.

This is still a mirrored public skill entry. Review the repository before installing into production workflows.

What it helps with

  • Install github-search into Claude Code, Codex CLI, Gemini CLI, or OpenCode workflows
  • Review https://github.com/tfunk1030/vibe before adding github-search to shared team environments
  • Use github-search for development workflows

Works across

Claude CodeCodex CLIGemini CLIOpenCode

Favorites: 0.

Sub-skills: 0.

Aggregator: No.

Original source / Raw SKILL.md

---
name: github-search
description: Search GitHub code, repositories, issues, and PRs via MCP
allowed-tools: [Bash, Read]
---

# GitHub Search Skill

## When to Use

- Search code across repositories
- Find issues or PRs
- Look up repository information

## Instructions

```bash
uv run python -m runtime.harness scripts/github_search.py \
    --type "code" \
    --query "your search query"
```

### Parameters

- `--type`: Search type - `code`, `repos`, `issues`, `prs`
- `--query`: Search query (supports GitHub search syntax)
- `--owner`: (optional) Filter by repo owner
- `--repo`: (optional) Filter by repo name

### Examples

```bash
# Search code
uv run python -m runtime.harness scripts/github_search.py \
    --type "code" \
    --query "authentication language:python"

# Search issues
uv run python -m runtime.harness scripts/github_search.py \
    --type "issues" \
    --query "bug label:critical" \
    --owner "anthropics"
```

## MCP Server Required

Requires `github` server in mcp_config.json with GITHUB_PERSONAL_ACCESS_TOKEN.