Agent skill · AI & Agents

context-finder

Auto-spawn context-finder agent for search tasks. Use when user says "find", "search", "where is", "look for", "trace", "what file", "which commit", "grep", "locate". Triggers search in git history, files, issues, retrospectives.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill context-finder --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 2 KB
Bundled scripts: none
Path: skills/agent/context-finder/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Context Finder Skill > Auto-trigger search when user needs to find something ## Proactive Triggers ### MUST Spawn context-finder Agent When: - User says: "find", "search", "where is", "look for" - User says: "what file", "which commit", "locate" - User asks: "did we work on X", "when did we", "where did" - User needs to trace: code, history, issues, docs ### How to Invoke Spawn the context-finder agent: ``` Task tool: subagent_type: context-finder model: haiku prompt: | Search for [USER'S QUERY] in: 1. Git history: git log --all --oneline --grep="[QUERY]" 2. Files: find/grep for [QUERY] 3. GitHub issues: gh issue list --search "[QUERY]" 4. Retrospectives: grep in ψ/memory/retrospectives/ Return: compact list of matches with paths/commits ``` ## What context-finder Searches | Source | Command | Finds | |--------|---------|-------| | Git history | `git log --grep` | Commits mentioning topic | | Files | `find`, `grep` | Current files | | Issues | `gh issue list` | Planning, discussions | | Retrospectives | `grep ψ/memory/` | Past session context | ## When NOT to Use - User already knows the exact file path - Simple questions about current code (just read it) - User explicitly says "

What's inside
Steps it walks through
  1. Proactive Triggers
  2. MUST Spawn context-finder Agent When:
  3. How to Invoke
  4. What context-finder Searches
  5. When NOT to Use
  6. Quick Patterns
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the context-finder skill do?

Auto-spawn context-finder agent for search tasks. Use when user says "find", "search", "where is", "look for", "trace", "what file", "which commit", "grep", "locate". Triggers search in git history, files, issues, retrospectives.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill context-finder --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going