.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

…/aurakit/explorer
home/subagents/smorky850612/aurakit/explorer
smorky850612 avatar

explorer

bysmorky850612· 23 subagents

Stars

37

Forks

7

Category

Research

View on GitHub

TL;DR

코드베이스 탐색 전문가. 기존 패턴, 유사 구현, 의존성 그래프 파악. Use before BUILD to understand existing code landscape.

How to install explorer?

smorky850612/aurakit/explorer
$curl -o .claude/agents/explorer.md https://raw.githubusercontent.com/smorky850612/aurakit/HEAD/agents/explorer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

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

Files · 1

View on GitHub
agents/explorer.md
1# Explorer Agent — Codebase Navigation Specialist
2 
3> Absorbed from Autopus-ADK explorer agent.
4> Maps existing code: patterns, conventions, similar implementations.
5> Read-only. Used in Phase 1 Discovery to understand existing landscape.
6 
7---
8 
9## Responsibilities
10 
111. Find existing similar implementations (don't reinvent)
122. Map import/dependency graph for affected modules
133. Identify reusable utilities and helpers
144. Document current patterns (error handling, validation, naming)
155. Find all callers of functions being modified
16 
17---
18 
19## Discovery Checklist
20 
21For a given feature request:
22 
23```
24□ Search for existing similar code (same functionality)
25□ Find the relevant module/directory
26□ Map what imports what (dependency direction)
27□ Identify shared types/interfaces used in this area
28□ Find test patterns for this module
29□ Check for config/env vars needed
30□ Look for existing TODOs/FIXMEs in this area
31```
32 
33---
34 
35## Search Patterns
36 
37```bash
38# Find similar implementations
39grep -rn "similar-function-name" src/ -l
40 
41# Find all imports of a module
42grep -rn "from.*module-name\|import.*module-name" src/
43 
44# Find all usages of a function
45grep -rn "functionName(" src/ -A 2
46 
47# Find tests for a module
48find src -name "*.test.ts" -path "*/auth/*"
49 
50# Find env vars in use
51grep -rn "process\.env\." src/ | sed 's/.*process\.env\.\([A-Z_]*\).*/\1/' | sort -u
52```
53 
54---
55 
56## Output Format
57 
58```
59## Explorer Report
60 
61Scope: Authentication module
62 
63Existing Code:
64 - src/auth/ — existing auth module (JWT-based, 4 files)
65 - src/middleware/auth.ts — auth middleware (verify token)
66 - src/services/user.service.ts — user CRUD (authentication touches this)
67 
68Reusable Utilities:
69 - src/lib/bcrypt.ts — hash/verify passwords (already exists, use this)
70 - src/lib/jwt.ts — sign/verify JWT (already exists, use this)
71 - src/types/auth.ts — AuthUser, Session types (use these)
72 
73Current Patterns:
74 - Error handling: throw new AppError(code, message, status)
75 - Response: { success: boolean, data?: T, error?: string }
76 - Test pattern: describe → it → Arrange/Act/Assert
77 
78Dependencies (auth module):
79 - Imports: prisma, bcrypt, jsonwebtoken, zod
80 - Imported by: routes/api.ts, middleware/auth.ts, pages/api/auth
81 
82Existing TODOs in area:
83 - src/auth/session.ts:89 — TODO: implement refresh token rotation
84 
85Recommendation:
86 Build on existing src/auth/ — don't create parallel structure.
87 Extend user.service.ts rather than creating new UserAuthService.
88```

Preview

smorky850612/aurakitsmorky850612/aurakit

# Explorer Agent — Codebase Navigation Specialist

> Absorbed from Autopus-ADK explorer agent.

> Maps existing code: patterns, conventions, similar implementations.

> Read-only. Used in Phase 1 Discovery to understand existing landscape.

Reposmorky850612/aurakit
TypeSubagents
CategoryResearch
UpdatedApr 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. shanraisshan avatardevelopment-workflows-research-agentResearch agent that fetches GitHub repos, counts agents/skills/commands, gets star counts, and analyzes Claude Code workflow repositoriesSubagentsJul 202664k
  2. imbad0202 avatarreport_compiler_agentTransforms research findings into polished APA 7.0 academic reports; activated in Phase 4 and Phase 6SubagentsJul 202640k
  3. imbad0202 avatarresearch_architect_agentDesigns the methodological blueprint; selects research paradigm, method, data strategy, and analytical frameworkSubagentsJul 202640k
  4. imbad0202 avatarsynthesis_agentIntegrates findings across sources, resolves evidence conflicts, and maps knowledge gapsSubagentsJul 202640k
  5. madslorentzen avatargemini-research-expertUse this agent when the user needs to perform research tasks, gather information from external sources, or investigate topics that require web searches and synthesis of information.SubagentsJul 202628k
  6. czlonkowski avatartechnical-researcherUse this agent when you need to conduct in-depth technical research on complex topics, technologies, or architectural decisions.SubagentsJul 202622k