.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/futuregerald-claude-plugin/codebase-searcher
home/subagents/futuregerald/futuregerald-claude-plugin/codebase-searcher
futuregerald avatar

codebase-searcher

byfuturegerald· 9 subagents

Stars

6

Category

Agent Meta & Communication

View on GitHub

TL;DR

Use this subagent for comprehensive codebase exploration and search tasks.

How to install codebase-searcher?

futuregerald/futuregerald-claude-plugin/codebase-searcher
$curl -o .claude/agents/codebase-searcher.md https://raw.githubusercontent.com/futuregerald/futuregerald-claude-plugin/HEAD/agents/codebase-searcher.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install codebase-searcher by running `curl -o .claude/agents/codebase-searcher.md https://raw.githubusercontent.com/futuregerald/futuregerald-claude-plugin/HEAD/agents/codebase-searcher.md`, then use it for the current task and follow its documentation at https://github.com/futuregerald/futuregerald-claude-plugin.

Files · 1

View on GitHub
agents/codebase-searcher.md
1# Codebase Searcher Subagent
2 
3Use this subagent for comprehensive codebase exploration and search tasks.
4 
5**Purpose:** Find files, patterns, implementations, and gather context across the codebase
6 
7**When to use:**
8 
9- Before implementation to understand existing patterns
10- When investigating how something works
11- Finding all usages of a function/component/pattern
12- Discovering related files for a feature
13- Answering architectural questions
14 
15## Dispatch Configuration
16 
17```
18Task tool:
19 subagent_type: Explore
20 description: "Search: [what you're looking for]"
21```
22 
23## Prompt Template
24 
25```
26Search the codebase for: [SPECIFIC SEARCH GOAL]
27 
28## Search Context
29 
30[Why you need this information - what task or decision it supports]
31 
32## Search Scope
33 
34Project: [Project name and stack]
35 
36Key directories to check:
37[List relevant directories for your project, e.g.:]
38- src/controllers/ - API controllers
39- src/models/ - Data models
40- src/services/ - Business logic
41- src/components/ - UI components
42- tests/ - Test files
43 
44## What I Need
45 
46[Specific questions to answer, patterns to find, or files to locate]
47 
48Examples:
49- "Find all places where comments are handled"
50- "How does the reaction system work end-to-end?"
51- "What components exist for user display?"
52- "Find the pattern used for API responses"
53 
54## Report Format
55 
56Provide:
571. **Files Found** - Relevant files with brief description of each
582. **Patterns Discovered** - How the codebase handles similar things
593. **Key Code Sections** - Important snippets with file:line references
604. **Gaps/Missing** - What doesn't exist yet that might be needed
615. **Recommendations** - Suggestions based on findings
62```
63 
64## Thoroughness Levels
65 
66Specify in the Task description:
67 
68- **quick** - Basic pattern matching, first few results
69- **medium** - Moderate exploration, follows some references
70- **very thorough** - Comprehensive analysis, multiple search strategies
71 
72## Usage Examples
73 
74### Finding existing patterns
75 
76```typescript
77Task({
78 subagent_type: 'Explore',
79 description: 'Search: comment handling patterns (medium)',
80 prompt: `Search the codebase for: How comments are currently handled
81 
82## Search Context
83 
84I need to implement a CommentThread component and want to understand
85the existing comment infrastructure.
86 
87## What I Need
88 
891. Where is the Comment model defined?
902. What API endpoints exist for comments?
913. Are there any existing comment-related components?
924. How are comments serialized for the frontend?
935. What validation exists for comment input?
94 
95[... rest of template ...]
96`,
97})
98```
99 
100### Finding all usages
101 
102```typescript
103Task({
104 subagent_type: 'Explore',
105 description: 'Search: Button component usages (quick)',
106 prompt: `Search the codebase for: All usages of the Button component
107 
108## Search Context
109 
110Planning to update Button variants and need to understand impact.
111 
112## What I Need
113 
1141. Which pages/components import Button?
1152. What variants are currently used?
1163. Are there any custom styling overrides?
117 
118[... rest of template ...]
119`,
120})
121```
122 
123### Architectural investigation
124 
125```typescript
126Task({
127 subagent_type: 'Explore',
128 description: 'Search: notification system architecture (very thorough)',
129 prompt: `Search the codebase for: Complete notification system implementation
130 
131## Search Context
132 
133Need to add UI for notifications. Want complete picture of backend.
134 
135## What I Need
136 
1371. Notification model and relationships
1382. How notifications are created (triggers)
1393. API endpoints for notifications
1404. Any existing frontend components
1415. Email notification integration
1426. Preference management
143 
144[... rest of template ...]
145`,
146})
147```
148 
149## Best Practices
150 
1511. **Be specific** - "Find comment components" vs "Find files"
1522. **Provide context** - Why you need this helps focus the search
1533. **Set thoroughness** - Don't over-search for simple lookups
1544. **Use for unknowns** - Don't guess, search first
1555. **Follow up** - If initial search is incomplete, refine and search again

Preview

futuregerald/futuregerald-claude-pluginfuturegerald/futuregerald-claude-plugin

# Codebase Searcher Subagent

Use this subagent for comprehensive codebase exploration and search tasks.

**Purpose:** Find files, patterns, implementations, and gather context across the codebase

**When to use:**

Repofuturegerald/futuregerald-claude-plugin
TypeSubagents
CategoryAgent Meta & Communication
UpdatedJul 2026
License—
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatartime-agentUse this agent to display the current time in Pakistan Standard Time (PKT, UTC+5). (root scope — see agent-teams for Dubai time)SubagentsJul 202664k
  2. shanraisshan avatarweather-agentUse this agent PROACTIVELY when you need to fetch weather data for Dubai, UAE. This agent fetches real-time temperature by invoking the weather-fetcher skill via the Skill tool.SubagentsJul 202664k
  3. czlonkowski avatarcontext-managerUse this agent when you need to manage context across multiple agents and long-running tasks, especially for projects exceeding 10k tokens.SubagentsJul 202622k
  4. tanweai avatarcto-p10P10 CTO/架构委员会 Agent。定义技术战略方向、组织 agent 团队拓扑、建设基础能力。当面对超大型项目(5+ agents, 3+ sprints)、需要战略级架构决策、或需要跨多个 P9 协调时使用。触发词:CTO 模式、P10、战略规划、架构委员会、组织设计、定义技术方向。SubagentsJul 202619k
  5. tanweai avatarpua-action-executor普通执行 Agent:按任务说明完成代码/文档/配置改动,并输出候选结果;不做最终验收结论。SubagentsJul 202619k
  6. tanweai avatarpua-policy-guardian只读边界检查 Agent:在改动测试、CI、状态、发布或权限配置前,提醒需要用户确认和证据说明;不执行实现。SubagentsJul 202619k