From ecc
익숙하지 않은 코드베이스를 분석해 아키텍처 맵, 주요 진입점, 규칙, 시작용 CLAUDE.md를 포함한 구조화된 온보딩 가이드를 생성합니다. 새 프로젝트에 합류하거나 저장소에서 처음 Claude Code를 설정할 때 사용합니다.
npx claudepluginhub sam42-lab/everything-claude-code-krThis skill uses the workspace's default tool permissions.
익숙하지 않은 코드베이스를 체계적으로 분석하고 구조화된 온보딩 가이드를 만듭니다. 새 프로젝트에 합류한 개발자나 기존 저장소에 Claude Code를 처음 설정하는 상황을 위한 스킬입니다.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
익숙하지 않은 코드베이스를 체계적으로 분석하고 구조화된 온보딩 가이드를 만듭니다. 새 프로젝트에 합류한 개발자나 기존 저장소에 Claude Code를 처음 설정하는 상황을 위한 스킬입니다.
"help me understand this codebase"라고 할 때CLAUDE.md 생성을 요청할 때"onboard me", "walk me through this repo"라고 할 때모든 파일을 읽지 않고 프로젝트에 대한 원시 신호를 수집합니다. 다음 점검을 병렬로 실행합니다.
1. 패키지 매니페스트 탐지
→ package.json, go.mod, Cargo.toml, pyproject.toml, pom.xml, build.gradle,
Gemfile, composer.json, mix.exs, pubspec.yaml
2. 프레임워크 지문 탐지
→ next.config.*, nuxt.config.*, angular.json, vite.config.*,
django settings, flask app factory, fastapi main, rails config
3. 엔트리포인트 식별
→ main.*, index.*, app.*, server.*, cmd/, src/main/
4. 디렉터리 구조 스냅샷
→ node_modules, vendor, .git, dist, build, __pycache__, .next를 제외한
상위 2단계 디렉터리 트리
5. 설정 및 툴링 탐지
→ .eslintrc*, .prettierrc*, tsconfig.json, Makefile, Dockerfile,
docker-compose*, .github/workflows/, .env.example, CI configs
6. 테스트 구조 탐지
→ tests/, test/, __tests__/, *_test.go, *.spec.ts, *.test.js,
pytest.ini, jest.config.*, vitest.config.*
정찰 데이터로부터 다음을 식별합니다.
기술 스택
아키텍처 패턴
주요 디렉터리 상위 디렉터리를 목적과 연결합니다.
src/components/ → React UI components
src/api/ → API route handlers
src/lib/ → Shared utilities
src/db/ → Database models and migrations
tests/ → Test suites
scripts/ → Build and deployment scripts
데이터 흐름 요청 하나를 엔트리부터 응답까지 추적합니다.
코드베이스가 이미 따르는 패턴을 식별합니다.
네이밍 규칙
*.test.ts, *.spec.ts, *_test.go코드 패턴
Git 규칙
"Git history unavailable or too shallow to detect conventions"라고 적습니다.두 가지 출력을 만듭니다.
# Onboarding Guide: [Project Name]
## Overview
[2-3 sentences: what this project does and who it serves]
## Tech Stack
<!-- Example for a Next.js project — replace with detected stack -->
| Layer | Technology | Version |
|-------|-----------|---------|
| Language | TypeScript | 5.x |
| Framework | Next.js | 14.x |
| Database | PostgreSQL | 16 |
| ORM | Prisma | 5.x |
| Testing | Jest + Playwright | - |
## Architecture
[Diagram or description of how components connect]
## Key Entry Points
<!-- Example for a Next.js project — replace with detected paths -->
- **API routes**: `src/app/api/` — Next.js route handlers
- **UI pages**: `src/app/(dashboard)/` — authenticated pages
- **Database**: `prisma/schema.prisma` — data model source of truth
- **Config**: `next.config.ts` — build and runtime config
## Directory Map
[Top-level directory → purpose mapping]
## Request Lifecycle
[Trace one API request from entry to response]
## Conventions
- [File naming pattern]
- [Error handling approach]
- [Testing patterns]
- [Git workflow]
## Common Tasks
<!-- Example for a Node.js project — replace with detected commands -->
- **Run dev server**: `npm run dev`
- **Run tests**: `npm test`
- **Run linter**: `npm run lint`
- **Database migrations**: `npx prisma migrate dev`
- **Build for production**: `npm run build`
## Where to Look
<!-- Example for a Next.js project — replace with detected paths -->
| I want to... | Look at... |
|--------------|-----------|
| Add an API endpoint | `src/app/api/` |
| Add a UI page | `src/app/(dashboard)/` |
| Add a database table | `prisma/schema.prisma` |
| Add a test | `tests/` matching the source path |
| Change build config | `next.config.ts` |
탐지된 규칙을 바탕으로 프로젝트 전용 CLAUDE.md를 생성하거나 갱신합니다. 이미 CLAUDE.md가 있으면 먼저 읽고 강화합니다. 기존 프로젝트 전용 지침은 보존하고, 무엇을 추가/변경했는지 분명히 드러냅니다.
# Project Instructions
## Tech Stack
[Detected stack summary]
## Code Style
- [Detected naming conventions]
- [Detected patterns to follow]
## Testing
- Run tests: `[detected test command]`
- Test pattern: [detected test file convention]
- Coverage: [if configured, the coverage command]
## Build & Run
- Dev: `[detected dev command]`
- Build: `[detected build command]`
- Lint: `[detected lint command]`
## Project Structure
[Key directory → purpose map]
## Conventions
- [Commit style if detectable]
- [PR workflow if detectable]
- [Error handling patterns]
"Could not determine test runner"가 틀린 답보다 낫습니다.CLAUDE.md를 100줄 넘게 생성하는 것src/User: "Onboard me to this codebase"
Action: 전체 4단계 워크플로 실행 -> 온보딩 가이드 + 시작용 CLAUDE.md 생성
Output: 대화에 온보딩 가이드 출력 + 프로젝트 루트에 CLAUDE.md 작성
User: "Generate a CLAUDE.md for this project"
Action: 1~3단계 실행, 온보딩 가이드는 생략하고 CLAUDE.md만 생성
Output: 탐지된 규칙이 반영된 프로젝트 전용 CLAUDE.md
User: "Update the CLAUDE.md with current project conventions"
Action: 기존 CLAUDE.md를 읽고 1~3단계를 실행한 뒤 새 발견사항을 병합
Output: 추가/변경점이 반영된 CLAUDE.md