소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 7월 25일 22:28
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill review-router명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | review-router |
| description | Routes PR review by diff — delegates to backend/frontend specialist. |
Classify the changeset and route to the correct specialist reviewer(s). Run this logic before any review work begins.
Run the following command to get the list of changed files:
git diff main...HEAD --name-only 2>/dev/null || git diff HEAD~1 --name-only
If reviewing a specific ref or PR branch, adapt the command accordingly. For an override, check whether the user passed an explicit argument (/review backend, /review frontend, /review both) — if so, skip classification and go directly to Step 2.
Score each changed file against the two path sets below. A file matches backend or frontend (or both) based on its extension and directory.
| Pattern | Examples |
|---|---|
| Server-side extensions | *.go, *.py, *.rb, *.php, *.java, *.kt, *.rs, *.ex, *.exs, *.cs |
| Server directories | app/Http/, app/Models/, app/Services/, app/Repositories/, app/Jobs/, app/Events/, app/Listeners/, app/Console/ |
| Database | database/migrations/, database/seeders/, db/migrate/, alembic/, prisma/migrations/ |
| API/config | routes/api.*, config/, src/routes/, src/controllers/, src/services/, src/repositories/ |
| Infrastructure | docker-compose.yml, Dockerfile, *.tf, .env.example |
| Pattern | Examples |
|---|---|
| Component extensions | *.tsx, *.jsx, *.vue, *.svelte |
| Style files | *.css, *.scss, *.sass, *.less, *.module.css |
| Frontend directories | src/components/, src/pages/, src/views/, src/app/ (Next.js), src/hooks/, src/context/, src/store/, resources/js/, resources/css/, resources/views/ |
| Assets | public/, assets/, static/ |
| Frontend config | vite.config.*, next.config.*, nuxt.config.*, tailwind.config.* |
Files like *.ts (non-React), package.json, tsconfig.json, or *.json alone do not determine the type. Count only if paired with other signals on the same side.
| Condition | Result |
|---|---|
| Only backend signals | BACKEND |
| Only frontend signals | FRONTEND |
| Both signals present | BOTH |
| No clear signal | BOTH (safer default — include all reviewers) |
BACKENDProceed as backend-reviewer. Apply all categories from agents/backend-reviewer.md without invoking a separate agent. State at the start of the review:
Review type: Backend (classified from diff — N backend files, 0 frontend files)
FRONTENDProceed as frontend-reviewer. Apply all categories from agents/frontend-reviewer.md without invoking a separate agent. State at the start of the review:
Review type: Frontend (classified from diff — 0 backend files, N frontend files)
BOTHDo not attempt a full review alone. Output the following routing message and stop:
Review type: Full-stack (N backend files + M frontend files detected)
This PR has both backend and frontend changes. For the most thorough review, invoke the two specialist agents in parallel by sending both prompts in a single message:
Prompt A → backend-reviewer: "Review the backend changes in this PR. Focus on: API contracts, database transactions, N+1 queries, auth/authz, background jobs, race conditions, SOLID, and security."
Prompt B → frontend-reviewer: "Review the frontend changes in this PR. Focus on: component design, re-renders, accessibility, bundle size, state management, XSS, loading/error states, and type safety."
Send both prompts simultaneously — they are independent and can run in parallel.
Users can bypass classification by passing an explicit argument:
| Command | Behavior |
|---|---|
/review backend | Skip classification → route as BACKEND |
/review frontend | Skip classification → route as FRONTEND |
/review both | Skip classification → output routing message for BOTH |
Projects with non-standard directory structures can define custom path mappings in docs/development/code-standards.md or CLAUDE.md under a ## Review Router section:
review-router:
backend-paths:
- "server/"
- "lambda/"
frontend-paths:
- "web/src/"
- "mobile/src/"
When this block is present, use it instead of the default heuristics above.