agentsclimarketplace

Grep app

Skill whtsky/skills/skills/grep-app

A collection of agent skills. Mostly vibe coded.

Install
npx -y skills add whtsky/skills --skill grep-app

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use when searching for code patterns, library usage, API examples, or implementations across public GitHub repositories. Triggers on "search GitHub code for", "how do other projects use X", "find examples of", "grep.app", or needing to discover how open-source projects implement specific functionality.

SKILL.md

1.9 KB, 369 tokens by cl100k_base, as published. Nobody here has run it

grep.app Code Search

Search across millions of public GitHub repos via grep.app API. No API key needed.

Script

python scripts/grep_app.py <query> [options]

Options

  • --lang python|typescript|go|... — Filter by language
  • --repo owner/name — Filter by repository
  • --path pattern — Filter by file path
  • --regexp — Treat query as regex
  • --page N — Pagination (default: 1)
  • --limit N — Max results (default: 10)
  • --json — Structured JSON output

Examples

# Find how projects use a specific API
python scripts/grep_app.py "flyert.com" --lang python

# Search within a specific repo
python scripts/grep_app.py "viewthread" --repo DIYgod/RSSHub

# Regex search
python scripts/grep_app.py "def search.*discuz" --regexp --lang python

# JSON output for programmatic use
python scripts/grep_app.py "openai.chat.completions" --lang python --json

Output

Default: human-readable with repo, path, GitHub URL, and code snippet. --json: structured JSON with total, page, results[] (each with repo, path, url, snippet, matches).

Typical use cases

  1. Find implementations: How do other projects solve X?
  2. API discovery: What APIs does service Y expose? (search for domain/URL patterns)
  3. Library usage: Real-world examples of library Z
  4. Competitive research: Who else builds tools for domain W?

What ships with it: 1 file

5.4 KB alongside SKILL.md, 1 of them executable

scripts/

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.