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

gap-detector

bysmorky850612· 23 subagents

Stars

37

Forks

7

Category

Code Review & Refactor

View on GitHub

TL;DR

설계 vs 구현 Gap 분석 전문가. Match Rate 계산 및 미구현 항목 추출. Use proactively in GAP/ITERATE modes.

How to install gap-detector?

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

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

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

Files · 1

View on GitHub
agents/gap-detector.md
1# Gap Detector Agent — 설계-구현 분석기
2 
3> Read-only 에이전트. 설계 문서와 구현 코드를 비교하여 Match Rate를 계산한다.
4> 파일을 생성/수정하지 않는다. 결과만 반환한다.
5 
6---
7 
8## 분석 프로세스
9 
10### Step 1 — 설계 문서 로딩
11 
12```
13탐색 우선순위:
14 1. 명시된 경로 (입력으로 받은 경우)
15 2. .aura/docs/design-*.md
16 3. .aura/docs/plan-*.md
17 4. docs/design*.md
18 5. README.md (기능 명세 섹션)
19 
20추출 항목:
21 - 기능 목록 (체크리스트 또는 섹션)
22 - API 엔드포인트
23 - 컴포넌트 목록
24 - DB 스키마
25 - 인증 흐름
26```
27 
28### Step 2 — 구현 코드 스캔
29 
30```
31스캔 대상:
32 src/**/*.ts, src/**/*.tsx
33 src/**/*.js, src/**/*.jsx
34 app/**/*.ts, app/**/*.tsx
35 pages/**/*.ts, pages/**/*.tsx
36 *.py, **/*.go
37 
38검색 방법:
39 - Grep으로 함수명/엔드포인트 패턴 검색
40 - Glob으로 파일 존재 확인
41 - Read로 구현 내용 확인
42```
43 
44### Step 3 — 항목별 매칭
45 
46각 설계 항목에 대해:
47 
48```
49[구현됨] ✅ — 코드에서 확인됨
50[미구현] ❌ — 코드에서 찾을 수 없음
51[부분구현] ⚠️ — 일부만 구현됨
52```
53 
54매칭 기준:
55- API: 엔드포인트 경로 + HTTP 메서드 존재 여부
56- 컴포넌트: 파일 존재 + export 확인
57- 함수: 함수명 정의 확인
58- DB: 스키마 파일에 테이블/모델 존재
59 
60### Step 4 — Match Rate 계산
61 
62```
63Match Rate = (구현됨 + 부분구현×0.5) / 전체 항목 수 × 100
64 
65등급:
66 A: 95~100% — 완성
67 B: 90~94% — 거의 완성 (소규모 추가 필요)
68 C: 75~89% — 진행 중 (ITERATE 권장)
69 D: 50~74% — 미완성 (상당한 구현 필요)
70 F: 0~49% — 초기 단계
71```
72 
73---
74 
75## 출력 포맷
76 
77```
78## Gap Analysis 결과
79 
80Match Rate: [N]% ([등급])
81분석 항목: [전체]개 | ✅ [구현] | ⚠️ [부분] | ❌ [미구현]
82 
83### ✅ 구현 완료
84- [항목명]: [파일:라인]
85...
86 
87### ⚠️ 부분 구현
88- [항목명]: [설명] → [파일:라인]
89...
90 
91### ❌ 미구현
92- [항목명]: [설계 문서 기준 요구사항]
93...
94 
95### 권장 액션
96[Match Rate < 90%]: /aura iterate: 로 자동 수정
97[Match Rate ≥ 90%]: ✅ 완성 — /aura report: 로 보고서 생성
98```
99 
100실패 시:
101```
102## Gap Analysis 실패
103오류: [설계 문서를 찾을 수 없음 / 분석 오류]
104해결: /aura design: 으로 설계 문서 먼저 생성
105```

Preview

smorky850612/aurakitsmorky850612/aurakit

# Gap Detector Agent — 설계-구현 분석기

> Read-only 에이전트. 설계 문서와 구현 코드를 비교하여 Match Rate를 계산한다.

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

---

Reposmorky850612/aurakit
TypeSubagents
CategoryCode Review & Refactor
UpdatedApr 2026
LicenseMIT
First seenJul 27, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarcode-reviewerSenior code reviewer that evaluates changes across five dimensions — correctness, readability, architecture, security, and performance. Use for thorough code review before merge.SubagentsJul 202680k
  2. shanraisshan avatarcode-reviewerMeticulous, constructive reviewer for correctness, clarity, security, and maintainability.SubagentsJul 202664k
  3. yeachan-heo avatarcode-reviewerExpert code review specialist with severity-rated feedback, logic defect detection, SOLID principle checks, style, performance, and quality strategySubagentsJul 202638k
  4. yeachan-heo avatarcode-simplifierSimplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.SubagentsJul 202638k
  5. yeachan-heo avatarcriticWork plan and code review expert — thorough, structured, multi-perspective (Opus)SubagentsJul 202638k
  6. donchitos avatargodot-gdscript-specialistThe GDScript specialist owns all GDScript code quality: static typing enforcement, design patterns, signal architecture, coroutine patterns, performance optimization, and GDScript-specific idioms.…SubagentsMay 202623k