Conversation
WalkthroughREADME.md 파일이 업데이트되었습니다. 기존의 큰 이미지 태그를 폭/높이 속성이 있는 다른 이미지 태그로 교체하고, 자리 표시자 댓글 대신 5개의 새로운 프레임 이미지 요소를 추가했으며, Tech Stack 테이블에 CI/CD 행(Github Actions, Fastlane)을 추가했습니다. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Possibly related PRs
Suggested reviewers
🚥 Pre-merge checks | ✅ 4 | ❌ 1❌ Failed checks (1 inconclusive)
✅ Passed checks (4 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Tip Try Coding Plans. Let us write the prompt for your AI agent so you can ship faster (with fewer bugs). Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🧹 Nitpick comments (2)
README.md (2)
1-1: 이미지 태그 문법의 일관성을 고려하세요.README 내에서 이미지를 삽입하는 방식이 혼재되어 있습니다:
- Line 1, 20-24: HTML
<img>태그 사용 (width/height 속성 포함)- Line 144: 마크다운 문법
사용문서의 일관성을 위해 한 가지 방식으로 통일하는 것을 권장합니다. 프레임 이미지들처럼 크기 제어가 필요한 경우 HTML 태그가 적합하고, 단순 삽입만 필요한 경우 마크다운 문법이 간결합니다.
Also applies to: 20-24, 144-144
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@README.md` at line 1, The README mixes HTML <img> tags (with width/height attributes) and Markdown image syntax (); pick one style and make it consistent across the file—either convert the HTML <img ... /> occurrences to Markdown image links if sizing isn't required, or convert the Markdown image at line 144 to an HTML <img> with explicit width/height to match the frame images; update all image occurrences so they use the chosen syntax and ensure alt text and src URLs remain correct.
1-1: 큰 이미지 크기가 페이지 로딩에 영향을 줄 수 있습니다.모든 프레임 이미지가 1920x1080 크기로 지정되어 있습니다. README 페이지에서는 이보다 작은 크기로 표시하는 것이 일반적이며, 사용자 경험 향상을 위해 적절한 크기 조정을 고려해보세요 (예: width="800" 또는 width="1200").
Also applies to: 20-24
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed. In `@README.md` at line 1, Large 1920x1080 images in the README slow page load; find the <img> elements (look for the img tag with src="https://github.com/user-attachments/...f45abc26-1ea1-470b-845c-ca255b766a83" and the other similar img tags referenced around the same section) and reduce their rendered size by either adding a width attribute (e.g., width="800" or width="1200") or applying a responsive style (e.g., max-width:100%; height:auto;) so the images display smaller without changing the source files; apply the same change to the other occurrences mentioned (the additional img tags around the same README section).
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@README.md`:
- Line 53: Update the README table row that currently reads "| **CI/CD** |
**Github Actions, Fastlane** | 번거로운 출시,배포 과정을 자동화 | - |" by changing "Github" to
the official "GitHub" casing and inserting a space after the comma in "출시,배포" so
it becomes "출시, 배포"; ensure the cell now reads "| **CI/CD** | **GitHub Actions,
Fastlane** | 번거로운 출시, 배포 과정을 자동화 | - |".
---
Nitpick comments:
In `@README.md`:
- Line 1: The README mixes HTML <img> tags (with width/height attributes) and
Markdown image syntax (); pick one style and make it consistent
across the file—either convert the HTML <img ... /> occurrences to Markdown
image links if sizing isn't required, or convert the Markdown image at line 144
to an HTML <img> with explicit width/height to match the frame images; update
all image occurrences so they use the chosen syntax and ensure alt text and src
URLs remain correct.
- Line 1: Large 1920x1080 images in the README slow page load; find the <img>
elements (look for the img tag with
src="https://github.com/user-attachments/...f45abc26-1ea1-470b-845c-ca255b766a83"
and the other similar img tags referenced around the same section) and reduce
their rendered size by either adding a width attribute (e.g., width="800" or
width="1200") or applying a responsive style (e.g., max-width:100%;
height:auto;) so the images display smaller without changing the source files;
apply the same change to the other occurrences mentioned (the additional img
tags around the same README section).
| | **로그인** | **KakaoOpenSDK** | 카카오 소셜 로그인을 통한 간편한 사용자 인증 | 2.27.1 | | ||
| | **버전 관리** | **Git, GitHub** | 분산 버전 관리 시스템을 통한 형상 관리 및 협업 | 2.46.0 | | ||
| | **협업 도구** | **Figma, Notion** | UI/UX 디자인 리소스 공유 및 프로젝트 문서화, 태스크 관리 | 2.46.0 | | ||
| | **CI/CD** | **Github Actions, Fastlane** | 번거로운 출시,배포 과정을 자동화 | - | |
There was a problem hiding this comment.
한국어 띄어쓰기와 대소문자 표기를 수정하세요.
다음 두 가지 사소한 수정이 필요합니다:
- "출시,배포" → "출시, 배포" (쉼표 뒤 공백 필요)
- "Github" → "GitHub" (공식 표기법)
✏️ 제안하는 수정
-| **CI/CD** | **Github Actions, Fastlane** | 번거로운 출시,배포 과정을 자동화 | - |
+| **CI/CD** | **GitHub Actions, Fastlane** | 번거로운 출시, 배포 과정을 자동화 | - |📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| | **CI/CD** | **Github Actions, Fastlane** | 번거로운 출시,배포 과정을 자동화 | - | | |
| | **CI/CD** | **GitHub Actions, Fastlane** | 번거로운 출시, 배포 과정을 자동화 | - | |
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@README.md` at line 53, Update the README table row that currently reads "|
**CI/CD** | **Github Actions, Fastlane** | 번거로운 출시,배포 과정을 자동화 | - |" by changing
"Github" to the official "GitHub" casing and inserting a space after the comma
in "출시,배포" so it becomes "출시, 배포"; ensure the cell now reads "| **CI/CD** |
**GitHub Actions, Fastlane** | 번거로운 출시, 배포 과정을 자동화 | - |".
📟 관련 이슈
네컷사진의 시작부터 보관까지, 당신의 기록을 완성하는 서비스
흩어져 있던 종이 사진과 디지털 파일을 NEKI 하나로 끝내세요. QR 스캔 한 번으로 앱에서 바로 저장하고, 날짜별/폴더별로 정리됩니다.
예전에 찍어둔 사진이나 QR 유효기간이 지난 사진도 직접 업로드하여 동일하게 관리할 수 있습니다.
카메라 앞에서 당황하지 마세요! NEKI가 제안하는 트렌디한 포즈와 '랜덤 포즈' 기능이 당신의 자연스러운 촬영을 도와드립니다.
지금 바로 찍고 싶을 때, 주변의 사진관을 확인하세요. 브랜드 필터를 사용해 내가 선호하는 브랜드만 골라 찾을 수 있습니다.
친구, 연인, 특별한 기념일 등 목적에 맞춰 폴더를 만들고 소중한 순간들을 테마별로 기록하세요.
Micro Clean Architecture
모듈화와 계층 분리의 결합
기능 단위의 모듈화(Modular)와 내부 3계층 분리(Clean Architecture)를 동시에 적용
4대 핵심 모듈
APP(라우팅), Core(공통 로직/네트워크), Shared(디자인/UI), Features(도메인별 기능)로 역할 분리
Feature 내부 분리
각 도메인 모듈 내부는 Presentation, Domain, Data 계층으로 철저히 분리되어 의존성 최소화
Coding
Swift 스타일쉐어 가이드를 기반으로
팀원의 기존 스타일을 반영하였습니다.
Commit
예시 [Feat] #1 - 메인 UI 구현
Summary by CodeRabbit
문서