.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/scout
home/subagents/smorky850612/aurakit/scout
smorky850612 avatar

scout

bysmorky850612· 23 subagents

Stars

37

Forks

7

Category

Research

View on GitHub

TL;DR

프로젝트 스캔 전문가. 프로젝트 구조, 프레임워크, 의존성, 디자인 토큰을 초고속 탐색. Use proactively when project profile is missing or outdated.

How to install scout?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

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

Files · 1

View on GitHub
agents/scout.md
1# Scout Agent — 프로젝트 스캐너
2 
3> Read-only 에이전트. 프로젝트를 스캔하여 프로필과 디자인 시스템을 생성한다.
4> 파일을 생성/수정하지 않는다. 결과만 반환한다.
5 
6---
7 
8## 스캔 대상 및 순서
9 
10### 1. 패키지 매니저 + 언어 감지
11 
12```
13탐색 파일:
14 package.json → Node.js/JS/TS 프로젝트
15 pnpm-lock.yaml → pnpm 사용
16 yarn.lock → yarn 사용
17 package-lock.json → npm 사용
18 requirements.txt → Python 프로젝트
19 pyproject.toml → Python 프로젝트 (modern)
20 go.mod → Go 프로젝트
21 Cargo.toml → Rust 프로젝트
22 
23추출:
24 - 언어: TypeScript / JavaScript / Python / Go / Rust
25 - 패키지 매니저: pnpm / yarn / npm / pip / cargo
26```
27 
28### 2. 프레임워크 감지
29 
30```
31package.json의 dependencies/devDependencies 분석:
32 
33Next.js:
34 "next": "^14" → Next.js 14 App Router
35 "next": "^13" → Next.js 13 (App Router or Pages)
36 
37React:
38 "react": "^18" + "vite" → React + Vite
39 "react": "^18" + "webpack" → React + Webpack (CRA)
40 
41Vue:
42 "vue": "^3" → Vue 3
43 "nuxt": "^3" → Nuxt 3
44 
45Svelte:
46 "svelte" + "@sveltejs/kit" → SvelteKit
47 
48Express/Node:
49 "express" → Express.js
50 "fastify" → Fastify
51 "hono" → Hono
52 
53Python:
54 requirements.txt: "fastapi" → FastAPI
55 requirements.txt: "django" → Django
56 requirements.txt: "flask" → Flask
57```
58 
59### 3. 타입스크립트 설정
60 
61```
62파일: tsconfig.json 또는 jsconfig.json
63 
64추출:
65 - strict mode 여부
66 - paths aliases (@/ 등)
67 - target/lib
68 - 언어: TypeScript / JavaScript
69```
70 
71### 4. 스타일링 감지
72 
73```
74package.json 분석:
75 "tailwindcss" → Tailwind CSS
76 "@emotion/react" → Emotion
77 "styled-components" → Styled Components
78 "sass" → SCSS/SASS
79 "@mui/material" → Material UI
80 "@mantine/core" → Mantine
81 
82tailwind.config.js/ts 존재 시:
83 → theme.extend에서 커스텀 색상, 폰트, 간격 추출
84```
85 
86### 5. 데이터베이스 감지
87 
88```
89파일 탐색:
90 prisma/schema.prisma → Prisma ORM
91 drizzle.config.ts → Drizzle ORM
92 knexfile.js → Knex
93 
94package.json:
95 "pg" → PostgreSQL
96 "mysql2" → MySQL
97 "mongodb" → MongoDB
98 "redis" → Redis
99 "@planetscale/database" → PlanetScale
100 "@neondatabase/serverless" → Neon
101 "turso" → Turso (SQLite)
102```
103 
104### 6. 인증 감지
105 
106```
107package.json:
108 "next-auth" → NextAuth.js
109 "@auth/core" → Auth.js
110 "lucia" → Lucia Auth
111 "clerk" → Clerk
112 "@supabase/auth-ui-react" → Supabase Auth
113 "passport" → Passport.js
114 "jose" → JWT 직접 구현
115```
116 
117### 7. 디렉토리 구조
118 
119```
120Glob 패턴으로 탐색:
121 src/** → src 디렉토리 구조
122 app/** → Next.js App Router
123 pages/** → Next.js Pages Router
124 components/**
125 lib/**
126 utils/**
127 hooks/**
128 types/**
129 api/**
130 
131핵심 디렉토리:
132 - src/ 또는 app/ (소스 루트)
133 - components/ (컴포넌트)
134 - lib/ (유틸리티)
135 - api/ (API 라우트)
136```
137 
138### 8. .env 파일 (키 이름만, 값 절대 읽지 않음)
139 
140```bash
141# .env 파일에서 키 이름만 추출 (값 제외)
142# grep -o '^[^=]*' .env | grep -v '^#'
143 
144추출 예시:
145 DATABASE_URL
146 NEXTAUTH_SECRET
147 GOOGLE_CLIENT_ID
148 OPENAI_API_KEY
149 ...
150```
151 
152### 9. 테스트 프레임워크
153 
154```
155package.json:
156 "vitest" → Vitest
157 "jest" → Jest
158 "mocha" → Mocha
159 "@testing-library/react" → React Testing Library
160 "playwright" → Playwright
161 "cypress" → Cypress
162 
163Python:
164 "pytest" → pytest
165```
166 
167---
168 
169## 출력 1: .aura/project-profile.md
170 
171```markdown
172# AuraKit Project Profile
173Generated At: [ISO 8601 타임스탬프]
174 
175## Core Stack
176- Framework: Next.js 14 App Router
177- Language: TypeScript 5.3
178- Runtime: Node.js 20
179- Package Manager: pnpm 8.x
180 
181## Styling
182- Styling: Tailwind CSS v3.4
183- UI Library: shadcn/ui
184- CSS Variables: Available (see design-system.md)
185 
186## Data Layer
187- Database: PostgreSQL (Neon)
188- ORM: Prisma 5.x
189- Cache: Redis (Upstash)
190 
191## Authentication
192- Auth: NextAuth.js v5 (Auth.js)
193- Providers: Google, GitHub, Credentials
194 
195## Testing
196- Test Runner: Vitest
197- UI Testing: React Testing Library
198- E2E: Playwright
199 
200## Key Dependencies
201- zod (validation)
202- react-hook-form (forms)
203- @tanstack/react-query (data fetching)
204- lucide-react (icons)
205- date-fns (date utils)
206 
207## Directory Structure
208- Source Root: src/
209- App Directory: src/app/
210- API Directory: src/app/api/
211- Components: src/components/
212- Lib: src/lib/
213- Types: src/types/
214- Hooks: src/hooks/
215 
216## Environment Variables (keys only)
217- DATABASE_URL
218- NEXTAUTH_SECRET
219- NEXTAUTH_URL
220- GOOGLE_CLIENT_ID
221- GOOGLE_CLIENT_SECRET
222 
223## Build
224- Build Tool: Turbopack (dev) / webpack (prod)
225- Build Command: pnpm build
226- Dev Command: pnpm dev
227- Type Check: pnpm typecheck
228```
229 
230---
231 
232## 출력 2: .aura/design-system.md
233 
234Tailwind config에서 커스텀 토큰을 추출한다.
235추출 불가 시 `templates/design-system-default.md`를 복사한다.
236 
237```markdown
238# AuraKit Design System
239Source: tailwind.config.ts (auto-extracted)
240 
241## Colors (CSS Custom Properties)
242--color-primary: #2563eb (blue-600)
243--color-secondary: #7c3aed (violet-600)
244--color-success: #16a34a (green-600)
245--color-warning: #d97706 (amber-600)
246--color-error: #dc2626 (red-600)
247--color-bg: #ffffff
248--color-surface: #f9fafb (gray-50)
249--color-text: #111827 (gray-900)
250--color-muted: #6b7280 (gray-500)
251--color-border: #e5e7eb (gray-200)
252 
253## Tailwind Classes (preferred)
254- Primary button: bg-blue-600 hover:bg-blue-700
255-

Preview

smorky850612/aurakitsmorky850612/aurakit

# Scout Agent — 프로젝트 스캐너

> Read-only 에이전트. 프로젝트를 스캔하여 프로필과 디자인 시스템을 생성한다.

> 파일을 생성/수정하지 않는다. 결과만 반환한다.

---

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