git-explorer — community git-explorer, dotfiles, community, ide skills

v1.0.0

About this Skill

Perfect for Developer Agents needing advanced GitHub repository search and exploration capabilities. Use when the user mentions searching Git/GitHub to explore GitHub repositories, code, issues, and commits using advanced search capabilities.

cristianoliveira cristianoliveira
[0]
[0]
Updated: 2/20/2026

Killer-Skills Review

Decision support comes first. Repository text comes second.

Reviewed Landing Page Review Score: 9/11

Killer-Skills keeps this page indexable because it adds recommendation, limitations, and review signals beyond the upstream repository text.

Original recommendation layer Concrete use-case guidance Explicit limitations and caution Quality floor passed for review Locale and body language aligned
Review Score
9/11
Quality Score
80
Canonical Locale
en
Detected Body Locale
en

Perfect for Developer Agents needing advanced GitHub repository search and exploration capabilities. Use when the user mentions searching Git/GitHub to explore GitHub repositories, code, issues, and commits using advanced search capabilities.

Core Value

Empowers agents to leverage the GitHub CLI for sophisticated query construction, enabling advanced search and exploration of GitHub content, including repositories, code, issues, and commits, using protocols like GitHub API.

Ideal Agent Persona

Perfect for Developer Agents needing advanced GitHub repository search and exploration capabilities.

Capabilities Granted for git-explorer

Searching GitHub repositories matching specific criteria like language, stars, and topics
Exploring GitHub repository content, including code, issues, and commits
Debugging GitHub repository issues using advanced search capabilities

! Prerequisites & Limits

  • Requires GitHub CLI installation
  • Dependent on github-explorer agent for advanced GitHub search

Source Boundary

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Curated Collection Review

Reviewed In Curated Collections

This section shows how Killer-Skills includes, reviews, and maintains this skill inside curated collections, so you can see where it fits in practical selection paths instead of relying only on the upstream README.

After The Review

Decide The Next Action Before You Keep Reading Repository Material

Killer-Skills should not stop at opening repository instructions. It should help you decide whether to install this skill, when to cross-check against trusted collections, and when to move into workflow rollout.

Labs Demo

Browser Sandbox Environment

⚡️ Ready to unleash?

Experience this Agent in a zero-setup browser environment powered by WebContainers. No installation required.

Boot Container Sandbox

FAQ & Installation Steps

These questions and steps mirror the structured data on this page for better search understanding.

? Frequently Asked Questions

What is git-explorer?

Perfect for Developer Agents needing advanced GitHub repository search and exploration capabilities. Use when the user mentions searching Git/GitHub to explore GitHub repositories, code, issues, and commits using advanced search capabilities.

How do I install git-explorer?

Run the command: npx killer-skills add cristianoliveira/dotfiles/git-explorer. It works with Cursor, Windsurf, VS Code, Claude Code, and 19+ other IDEs.

What are the use cases for git-explorer?

Key use cases include: Searching GitHub repositories matching specific criteria like language, stars, and topics, Exploring GitHub repository content, including code, issues, and commits, Debugging GitHub repository issues using advanced search capabilities.

Which IDEs are compatible with git-explorer?

This skill is compatible with Cursor, Windsurf, VS Code, Trae, Claude Code, OpenClaw, Aider, Codex, OpenCode, Goose, Cline, Roo Code, Kiro, Augment Code, Continue, GitHub Copilot, Sourcegraph Cody, and Amazon Q Developer. Use the Killer-Skills CLI for universal one-command installation.

Are there any limitations for git-explorer?

Requires GitHub CLI installation. Dependent on github-explorer agent for advanced GitHub search.

How To Install

  1. 1. Open your terminal

    Open the terminal or command line in your project directory.

  2. 2. Run the install command

    Run: npx killer-skills add cristianoliveira/dotfiles/git-explorer. The CLI will automatically detect your IDE or AI agent and configure the skill.

  3. 3. Start using the skill

    The skill is now active. Your AI agent can use git-explorer immediately in the current project.

Upstream Repository Material

The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.

Upstream Source

git-explorer

Install git-explorer, an AI agent skill for AI agent workflows and automation. Review the use cases, limitations, and setup path before rollout.

SKILL.md
Readonly
Upstream Repository Material
The section below is imported from the upstream repository and should be treated as secondary evidence. Use the Killer-Skills review above as the primary layer for fit, risk, and installation decisions.
Supporting Evidence

Git Explorer Skill

Use this skill when the user needs to search or explore GitHub content, including repositories, code, issues, pull requests, or commits. This skill leverages the github-explorer agent for advanced GitHub search using the GitHub CLI (gh) with sophisticated query construction.

When to Use This Skill

  • User explicitly mentions "search GitHub", "GitHub search", or similar phrases
  • Need to find github repositories matching specific criteria (language, stars, topics, etc.)
  • Need to search for code snippets across GitHub
  • Need to explore issues, pull requests, or commits
  • Need to perform advanced searches using GitHub's query language

Key Capabilities

  1. Repository Search: Find repositories by name, description, topics, language, stars, forks
  2. Code Search: Search for code snippets across all public repositories
  3. Issue/PR Search: Find issues and pull requests by state, labels, assignees, authors
  4. Commit Search: Search commits by author, date, message content
  5. Advanced Filtering: Use qualifiers, boolean operators, comparison operators, and ranges

1. Invoke the GitHub Explorer Agent

For complex GitHub searches, delegate to the specialized github-explorer agent:

bash
1# Use the Task tool to launch the github-explorer agent 2Task(description="Search GitHub", prompt="Search GitHub for repositories about machine learning with Python and >1000 stars", subagent_type="github-explorer")

The github-explorer agent has expertise in:

  • GitHub CLI (gh search) with all subcommands
  • Advanced query construction with qualifiers and operators
  • Rate limit management and authentication
  • JSON output processing and analysis

2. Direct GitHub CLI Commands

For simple searches, you can use gh commands directly:

bash
1# Search repositories 2gh search repos "machine learning" --language=python --stars=">1000" --limit=10 --json 3 4# Search code 5gh search code "def train_model" --language=python --repo=org/repo --json 6 7# Search issues 8gh search issues "bug" --state=open --label=bug --json 9 10# Search commits 11gh search commits "fix memory leak" --author=username --json

3. Query Construction Examples

Basic repository search:

bash
1gh search repos "neural network" --language=python --stars=">500" --json | jq -r '.[] | "\(.nameWithOwner): \(.description)"'

Advanced search with multiple qualifiers:

bash
1gh search repos "topic:deep-learning language:python stars:>1000 forks:>100" --json

Code search with path filtering:

bash
1gh search code "import torch" --language=python --path="src/" --json

Qualifiers Reference

Common GitHub search qualifiers:

  • repo:owner/name - Specific repository
  • language:python - Programming language
  • stars:>1000 - Star count
  • forks:>100 - Fork count
  • topic:machine-learning - Repository topics
  • path:src/ - File path
  • filename:*.py - File name pattern
  • is:public / is:private - Repository visibility
  • created:>2023-01-01 - Creation date
  • pushed:>2024-01-01 - Last push date

Best Practices

  1. Use JSON output: Always add --json flag for machine-readable results
  2. Limit results: Use --limit to control output size (default 30, max 100)
  3. Authenticate for higher limits: Run gh auth login for higher rate limits (30 vs 10 requests/minute)
  4. Combine flag-based and raw qualifiers: Some qualifiers work better as flags, others in raw query
  5. Test with small limits first: Use --limit=2 to verify query syntax before full execution
  6. Process results with jq: Filter and format JSON output for readability

Common Use Cases

bash
1gh search repos "machine learning" --language=python --stars=">10000" --json | jq -r '.[] | "\(.nameWithOwner) (\(.stargazerCount) stars): \(.description)"'

Searching for Code Patterns

bash
1gh search code "from transformers import" --language=python --json | jq -r '.[] | "\(.repository.nameWithOwner): \(.path)"'

Exploring Issues by Label

bash
1gh search issues "good first issue" --state=open --label="good first issue" --json | jq -r '.[] | "\(.repository.nameWithOwner)#\(.number): \(.title)"'

References

  • GitHub Explorer agent: /Users/cristianoliveira/.dotfiles/ai/shared/agents/github-explorer.md
  • GitHub advanced search research: .tmp/docs/github-advanced-search.md
  • GitHub CLI documentation: gh help search
  • GitHub search syntax: https://docs.github.com/en/search-github

Notes

  • For complex boolean logic (parentheses), use the github-explorer agent which has workarounds using the API endpoint
  • The github-explorer agent is specifically designed to handle GitHub's advanced search capabilities and query limitations
  • Always consider rate limits when performing multiple searches

Related Skills

Looking for an alternative to git-explorer or another community skill for your workflow? Explore these related open-source skills.

View All

openclaw-release-maintainer

Logo of openclaw
openclaw

Your own personal AI assistant. Any OS. Any Platform. The lobster way. 🦞

333.8k
0
AI

widget-generator

Logo of f
f

Generate customizable widget plugins for the prompts.chat feed system

149.6k
0
AI

flags

Logo of vercel
vercel

The React Framework

138.4k
0
Browser

pr-review

Logo of pytorch
pytorch

Tensors and Dynamic neural networks in Python with strong GPU acceleration

98.6k
0
Developer