review-frontend/SKILL.md
Frontend 코드 리뷰. PR의 프론트엔드 코드를 컴포넌트 설계, 상태 관리, 렌더링 성능, 접근성 관점으로 분석. 사용법: /review-frontend <PR_URL>
npx skillsauth add cyanluna-git/cyanluna.skills review-frontendInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
PR URL을 입력받아 프론트엔드 코드를 도메인 전문 관점으로 분석하고, 구조화된 리뷰 코멘트를 PR에 자동으로 게시합니다.
| 옵션 | 설명 |
|------|------|
| (없음) | 리뷰 + PR 코멘트 게시 + 로컬 MD 저장 |
| --no-post | PR 코멘트 게시 생략 (분석만) |
| --no-save | 로컬 MD 저장 생략 |
아래 단계를 반드시 순서대로 실행하세요. 건너뛰지 마세요.
사용자 입력에서 PR URL과 옵션을 파싱합니다.
입력: <pr_url> [--no-post] [--no-save]
python3 ../review-pr/scripts/review_pr.py fetch <pr_url>
JSON 출력을 분석합니다. diff_file 키가 있으면 diff가 별도 파일로 저장된 것이므로 Read 도구로 해당 파일을 읽으세요.
/tmp/review_pr_{id}.md에 임시 저장합니다.리뷰 언어: 한국어로 작성합니다.
--no-post 옵션이 없는 경우에만 실행합니다.
python3 ../review-pr/scripts/review_pr.py comment <pr_url> < /tmp/review_pr_{id}.md
--no-save 옵션이 없는 경우에만 실행합니다.
python3 ../review-pr/scripts/review_pr.py save <pr_url>
/tmp/review_pr_{id}.md 내용을 reviews/{filename}에 저장합니다. reviews/ 디렉토리가 없으면 생성합니다.사용자에게 결과를 요약하여 보여줍니다:
testing
Turn vague intent into a precise, executable spec through 5 structured phases, then optionally create a kanban task. Use when starting something new that needs proper scoping before refinement. Complements /kanban-refine (which refines existing tasks).
databases
--- name: kanban-local description: Local markdown-file kanban for toy and personal projects. No server, no PostgreSQL, no auth — all state lives in KANBAN.md in the project root. Use for solo/small projects where the remote kanban board is overkill. Auto-trigger when KANBAN.md exists and user says "태스크 추가", "add task", "칸반 보여줘", "다음 할 일", "task list", or similar task-management phrases. Sub-commands: init, list, add, move, done, show, edit, refine, run, rm, stats. --- # kanban-local 로컬 `KANBA
documentation
프로젝트의 전체 아키텍처, 목표, 주요 결정사항을 wiki/ 디렉토리에 합성하여 정리합니다. 첫 실행 시 전체 생성, update로 변경분 반영. 매 카드가 아닌 프로젝트 수준의 지식을 정리합니다.
devops
Manage project tasks in a local SQLite DB (~/.claude/kanban-dbs/{project}.db). Supports task CRUD (add, edit, move, remove), board viewing, session context persistence, and statistics. For pipeline orchestration use /kanban-run, for requirements refinement use /kanban-refine. Run /kanban-init first to create the local DB.