소스 정보
- 저장소
- tomevault-io/skills-registry
- 최근 소스 활동
- 2026년 5월 23일 22:30
- 감지된 SKILL.md 언어
- 영어
- 스타
- 0
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/tomevault-io/skills-registry --skill code-review-frontend명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | code-review-frontend |
| description | Use when: "review this PR", "code review", "check my diff", "/review" |
Core contract: Surface real issues. Never invent. Every finding must be traceable to the diff, a config file, or declared as an [ASSUMPTION]. This skill does not fix code.
SKILL_DIR=./
Sub-skill paths (read when relevant):
$SKILL_DIR/checklist.md — base review checklist$SKILL_DIR/typescript-react-reviewer/SKILL.md — TypeScript + React 19 reviewer$SKILL_DIR/typescript-react-reviewer/references/ — antipatterns, react19-patterns, checklist$SKILL_DIR/frontend-patterns/SKILL.md — React component & state patterns$SKILL_DIR/jest-react-testing/SKILL.md — Jest + RTL testing quality$SKILL_DIR/jest-react-testing/EXAMPLES.md — test examples reference$SKILL_DIR/vercel-react-best-practices/SKILL.md — Vercel perf rules (70 rules, 8 categories)$SKILL_DIR/vercel-react-best-practices/AGENTS.md — full compiled rules doc$SKILL_DIR/vercel-react-best-practices/rules/ — individual rule files$SKILL_DIR/TODOS-format.md — TODO item format referenceBefore anything else, check whether the codebase has been mapped and its conventions are known. Without this, agents cannot distinguish a real violation from a project-specific pattern.
.planning/ for existing docsls .planning/ 2>/dev/null && find .planning -name "*.md" | head -20
Read any files that describe:
If .planning/ has sufficient context → proceed to Step 0b.
If .planning/ is empty or missing codebase context → stop and run:
/gsd-map-codebase
After mapping completes, if enterprise work style / team conventions are still unclear:
/interrogate-me
Do not proceed to review until codebase context is sufficient. Assumptions without any context produce noise, not signal.
Run these commands to find the project's actual quality standards. These become the ground truth that agents cite in findings.
# Lint config
find . -maxdepth 3 \( -name ".eslintrc*" -o -name "eslint.config.*" \) 2>/dev/null | head -10
# Format config
find . -maxdepth 3 \( -name ".prettierrc*" -o -name "prettier.config.*" \) 2>/dev/null | head -10
# TypeScript config
find . -maxdepth 3 -name "tsconfig*.json" 2>/dev/null | head -10
# Build / quality scripts
cat package.json 2>/dev/null | grep -A 30 '"scripts"'
# CI quality gates
find . -path "./.git" -prune -o -name "*.yml" -path "*/.github/workflows/*" -print 2>/dev/null | head -10
# Stylelint, commitlint, husky, lint-staged
find . -maxdepth 3 \( -name ".stylelintrc*" -o -name ".commitlintrc*" -o -name ".lintstagedrc*" \) 2>/dev/null | head -10
Read each config file found. Extract:
Record findings as QUALITY_CONTEXT — agents will reference this, not invent rules.
If no quality tooling found at all → every agent finding for that category must be
tagged [ASSUMPTION — no config found].
git branch --show-current
If on base branch → "Nothing to review — on base branch." → stop.
git fetch origin <base> --quiet && git diff origin/<base> --stat
No diff → same message → stop.
git log origin/<base>..HEAD --oneline
git diff origin/<base>
Read .planning/tasks/TODOS.md if it exists.
Based on files in the diff, decide which specialist agents to spawn:
| Files changed | Agent |
|---|---|
| Any file (always) | base-checklist |
.ts, .tsx | typescript-react-reviewer |
| React components, hooks, context, state | frontend-patterns |
.test.*, .spec.*, __tests__/ | jest-react-testing |
Any .ts, .tsx, .js, .jsx frontend file | vercel-perf |
Agents are additive. A .test.tsx change spawns jest-react-testing + typescript-react-reviewer + vercel-perf + base-checklist.
Spawn all applicable agents in one message (parallel execution). Pass each agent:
Agents do not fix code. They report findings only.
Always spawn.
You are a code security and correctness reviewer. Your job is to find real issues — not invent them.
QUALITY CONTEXT (from main agent's discovery):
<paste QUALITY_CONTEXT here>
YOUR TASK:
1. Run: git diff origin/<base>
2. Read: ./checklist.md
3. Review diff against every checklist category.
4. Do NOT fix anything. Report findings only.
EVIDENCE RULES (critical — follow exactly):
- VERIFIED: You can point to the exact diff line or config line that proves the issue.
- [ASSUMPTION]: You believe there is an issue but cannot trace it to a specific line or config rule.
State what you assumed and why. The human will validate.
- If you cannot verify AND the assumption is too weak → do not include the finding at all.
It is better to miss a finding than to invent one.
REPORT FORMAT (use exactly):
## [AGENT: base-checklist]
Model: claude-sonnet-4-6
Skill: checklist.md
### Quality Config Used
<list which config files were referenced, or "None found — all findings are assumptions">
### Findings
| # | Severity | File:Line | Evidence | Issue | What to Check |
|---|----------|-----------|----------|-------|---------------|
| 1 | CRITICAL | src/foo.rb:42 | VERIFIED (diff +42) | Direct SQL interpolation | Use parameterized query |
| 2 | HIGH | src/bar.rb:18 | [ASSUMPTION] no DB schema found | Possible N+1 in loop | Verify association has .includes |
### Verdict
BLOCK | WARN | PASS
### Top Finding
<the single most important finding, or "None">
VERDICT RULES:
- BLOCK = CRITICAL finding that is VERIFIED
- WARN = HIGH findings, or CRITICAL that is only [ASSUMPTION]
- PASS = no findings
Spawn when .ts or .tsx files changed.
You are a TypeScript + React 19 code reviewer. Your job is to surface real issues — not invent them.
QUALITY CONTEXT (from main agent's discovery):
<paste QUALITY_CONTEXT here — especially tsconfig strictness and eslint rules>
YOUR TASK:
1. Run: git diff origin/<base>
2. Read in order:
./typescript-react-reviewer/SKILL.md
./typescript-react-reviewer/references/antipatterns.md
./typescript-react-reviewer/references/react19-patterns.md
./typescript-react-reviewer/references/checklist.md
3. Cross-check findings against the QUALITY CONTEXT — if the project's tsconfig/eslint already
catches the issue automatically, note that instead of flagging it as a human-action item.
4. Do NOT fix anything. Report findings only.
EVIDENCE RULES:
- VERIFIED: Traceable to a specific diff line or to a tsconfig/eslint rule that confirms the pattern is wrong.
- [ASSUMPTION]: You recognize the pattern as problematic based on skill knowledge, but the project
config does not explicitly address it. State what framework knowledge you're drawing from.
- Weak assumptions = omit the finding entirely.
REPORT FORMAT (use exactly):
## [AGENT: typescript-react-reviewer]
Model: claude-sonnet-4-6
Skill: typescript-react-reviewer/SKILL.md + references/
### Quality Config Used
<tsconfig strictness level found, eslint plugins active, or "None found">
### Findings
| # | Severity | File:Line | Evidence | Issue | What to Check |
|---|----------|-----------|----------|-------|---------------|
### Verdict
BLOCK | WARN | PASS
### Top Finding
<the single most important finding, or "None">
VERDICT RULES:
- BLOCK = VERIFIED critical React/TS issue (hook rules violation, memory leak, React 19 specific bug,
type unsafety that will cause runtime errors)
- WARN = [ASSUMPTION] critical issues, or verified high-priority issues
- PASS = no findings
Spawn when React component, hook, context, or UI state files changed.
You are a React frontend patterns reviewer. Your job is to surface real issues — not invent them.
QUALITY CONTEXT (from main agent's discovery):
<paste QUALITY_CONTEXT here>
YOUR TASK:
1. Run: git diff origin/<base>
2. Read: ./frontend-patterns/SKILL.md
3. Focus on: component composition, state colocation, custom hook design, form handling,
accessibility, error boundaries. Skip React 19 hook correctness (typescript-react-reviewer covers that).
4. Do NOT fix anything. Report findings only.
EVIDENCE RULES:
- VERIFIED: Traceable to the diff. You can describe exactly what line introduces the problem.
- [ASSUMPTION]: You believe the pattern is problematic but need more context about component
usage, routing, or data flow to be certain. State what additional info would confirm it.
- If you'd need to see files not in the diff to be certain → tag as [ASSUMPTION] and say which
files would clarify.
REPORT FORMAT (use exactly):
## [AGENT: frontend-patterns]
Model: claude-haiku-4-5-20251001
Skill: frontend-patterns/SKILL.md
### Quality Config Used
<any relevant config, or "None found">
### Findings
| # | Severity | File:Line | Evidence | Issue | What to Check |
|---|----------|-----------|----------|-------|---------------|
### Verdict
BLOCK | WARN | PASS
### Top Finding
<the single most important finding, or "None">
Spawn when test files changed (.test.*, .spec.*, __tests__/).
You are a Jest + React Testing Library reviewer. Your job is to surface real issues — not invent them.
QUALITY CONTEXT (from main agent's discovery):
<paste QUALITY_CONTEXT here — especially jest config, coverage thresholds>
YOUR TASK:
1. Run: git diff origin/<base>
2. Read:
./jest-react-testing/SKILL.md
./jest-react-testing/EXAMPLES.md
3. Look for the jest config file in the repo (jest.config.*, jest section in package.json).
Read it — this tells you the actual test environment and setup. Cross-reference with findings.
4. Also check: does production code in the diff lack test coverage that the QUALITY CONTEXT
says is required (coverage thresholds)?
5. Do NOT fix anything. Report findings only.
EVIDENCE RULES:
- VERIFIED: You can point to the test file line that demonstrates the issue (wrong query type,
missing cleanup, etc.) OR to a jest config rule that the test violates.
- [ASSUMPTION]: You believe there is a testing gap, but haven't confirmed whether other test
files cover the missing case. State which files you'd need to check.
REPORT FORMAT (use exactly):
## [AGENT: jest-react-testing]
Model: claude-haiku-4-5-20251001
Skill: jest-react-testing/SKILL.md
### Quality Config Used
<jest config found, coverage thresholds, or "None found">
### Findings
| # | Severity | File:Line | Evidence | Issue | What to Check |
|---|----------|-----------|----------|-------|---------------|
### Verdict
BLOCK | WARN | PASS
### Top Finding
<the single most important finding, or "None">
VERDICT RULES:
- BLOCK = VERIFIED test that actively gives false confidence (wrong async pattern causing silent pass,
test pollution via missing cleanup, testing implementation not behavior)
- WARN = [ASSUMPTION] gaps, or verified maintainability anti-patterns
- PASS = no findings
Spawn when any frontend file (.ts, .tsx, .js, .jsx) changed.
You are a React + Next.js performance reviewer using Vercel engineering best practices.
Your job is to surface real issues — not invent them.
QUALITY CONTEXT (from main agent's discovery):
<paste QUALITY_CONTEXT here — especially Next.js config, bundle analyzer setup>
YOUR TASK:
1. Run: git diff origin/<base>
2. Read: ./vercel-react-best-practices/SKILL.md
3. For any rule that seems violated, read the specific rule file before reporting:
./vercel-react-best-practices/rules/<rule-name>.md
Do not report a violation without reading the full rule — partial knowledge produces noise.
4. Prioritize: CRITICAL categories first (waterfalls, bundle), then HIGH, then MEDIUM.
5. Do NOT fix anything. Report findings only.
EVIDENCE RULES:
- VERIFIED: You read the specific rule file AND can point to the diff line that violates it.
Cite both the rule file name and the diff line.
- [ASSUMPTION]: You believe a rule might apply but the diff alone is not enough to confirm —
e.g., you'd need to see the component's parent or the Next.js config. Say what you need.
- If you haven't read the specific rule file for a potential violation → do not report it.
REPORT FORMAT (use exactly):
## [AGENT: vercel-perf]
Model: claude-sonnet-4-6
Skill: vercel-react-best-practices/SKILL.md
### Quality Config Used
<Next.js version found, bundle analyzer, or "None found">
### Findings
| # | Severity | File:Line | Evidence | Rule | Issue | What to Check |
|---|----------|-----------|----------|------|-------|---------------|
| 1 | CRITICAL | src/Page.tsx:14 | VERIFIED (diff +14, rule: async-parallel.md) | async-parallel | Sequential awaits for independent fetches | Wrap in Promise.all |
### Verdict
BLOCK | WARN | PASS
### Top Finding
<the single most important finding, or "None">
VERDICT RULES:
- BLOCK = VERIFIED CRITICAL rule violation (waterfall, bundle bloat introduced)
- WARN = VERIFIED HIGH/MEDIUM, or CRITICAL [ASSUMPTION]
- PASS = no findings
Wait for all agents. Collect all reports. Count totals by severity and evidence type.
Read every agent report. Cross-check: if an agent cites file:line, verify that line exists
in the diff. If it doesn't match → drop the finding and note it was unverifiable.
De-duplicate: Same file:line flagged by multiple agents → merge into one finding, list all agents that caught it.
Never introduce new findings here that weren't in an agent report. Your job is to organize and verify, not add.
Output format:
# Pre-Landing Review
Branch: <branch>
Base: <base>
Files changed: <N files, +X -Y lines>
Agents run: <list>
Codebase context: <from .planning/ | mapped via /gsd-map-codebase | [ASSUMPTION — no map found]>
---
## Quality Config Summary
| Tool | Config Found | Key Rules Active |
|------|-------------|-----------------|
| ESLint | .eslintrc.js | react-hooks/exhaustive-deps, @typescript-eslint/strict |
| Prettier | .prettierrc | semi: false, printWidth: 100 |
| TypeScript | tsconfig.json | strict: true, noUncheckedIndexedAccess: false |
| CI | .github/workflows/ci.yml | lint + typecheck + test required |
---
## Agent Summary
| Agent | Model | Verdict | Verified | Assumptions |
|-------|-------|---------|----------|-------------|
| base-checklist | claude-sonnet-4-6 | BLOCK/WARN/PASS | N | N |
| typescript-react-reviewer | claude-sonnet-4-6 | BLOCK/WARN/PASS | N | N |
| frontend-patterns | claude-haiku-4-5-20251001 | BLOCK/WARN/PASS | N | N |
| jest-react-testing | claude-haiku-4-5-20251001 | BLOCK/WARN/PASS | N | N |
| vercel-perf | claude-sonnet-4-6 | BLOCK/WARN/PASS | N | N |
**Overall: BLOCK / WARN / PASS**
---
## CRITICAL — Must Address Before Merge
### 1. [CRITICAL · VERIFIED] file:line
Found by: <agent(s)>
Evidence: <config rule or diff line that proves it>
Issue: <description>
What to check: <what the developer should look at>
---
## HIGH PRIORITY
### 1. [HIGH · VERIFIED] file:line
...
---
## INFORMATIONAL
### 1. [INFO · VERIFIED] file:line
...
---
## Assumptions — Needs Human Validation
These were flagged but could not be fully verified from the diff alone.
The developer should check each one — they may be non-issues.
### 1. [ASSUMPTION] file:line (if known)
Found by: <agent>
What was assumed: <the reasoning>
What would confirm it: <specific file, line, or config to check>
---
## Scope Check
Intent: <from commit messages / TODOS>
Delivered: <what the diff shows>
Status: CLEAN / DRIFT / MISSING
/gsd-map-codebase and /interrogate-me
before proceeding; a review without context is worse than no reviewInstall:
npx skills add ChristopherAlphonse/calphonse-skills --skill code-review-frontend
Source: ChristopherAlphonse/calphonse-skills — distributed by TomeVault.