Grep app
A collection of agent skills. Mostly vibe coded.
npx -y skills add whtsky/skills --skill grep-appAssembled 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
- Find implementations: How do other projects solve X?
- API discovery: What APIs does service Y expose? (search for domain/URL patterns)
- Library usage: Real-world examples of library Z
- 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/
- grep_app.pyruns5.4 KB