Conversation
📝 WalkthroughWalkthroughA new PR Title Convention section is added to AGENTS.md, providing structured guidance on formatting pull request titles with team/module and type labels, including practical examples for reference. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches
🧪 Generate unit tests (beta)
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
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@AGENTS.md`:
- Around line 685-687: The two fenced code blocks in AGENTS.md (the template
block containing "[team/module][type] Subject" and the list block with PR
examples like "[campus][feature] Add bus schedule notification") are missing
language identifiers and trigger markdownlint MD040; update each opening
triple-backtick to include a language tag (e.g., use "text") so they become
```text, ensuring both the single-line template block and the multi-line example
block (also the similar block around lines 715-722) are modified accordingly.
| ``` | ||
| [team/module][type] Subject | ||
| ``` |
There was a problem hiding this comment.
Add language identifiers to fenced code blocks to satisfy markdownlint.
Both new fenced blocks omit a language tag (MD040), which will keep lint warnings active.
🔧 Proposed fix
-```
+```text
[team/module][type] Subject@@
- +text
[campus][feature] Add bus schedule notification
[campus][fix] Resolve crash on dining menu screen
[user][refactor] Extract common auth validation logic
[business][enhancement] Improve store detail loading performance
[koin project][chore] Update Gradle dependencies to latest versions
[koin project][documentation] Add PR title convention to AGENTS.md
Also applies to: 715-722
🧰 Tools
🪛 markdownlint-cli2 (0.21.0)
[warning] 685-685: Fenced code blocks should have a language specified
(MD040, fenced-code-language)
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.
In `@AGENTS.md` around lines 685 - 687, The two fenced code blocks in AGENTS.md
(the template block containing "[team/module][type] Subject" and the list block
with PR examples like "[campus][feature] Add bus schedule notification") are
missing language identifiers and trigger markdownlint MD040; update each opening
triple-backtick to include a language tag (e.g., use "text") so they become
```text, ensuring both the single-line template block and the multi-line example
block (also the similar block around lines 715-722) are modified accordingly.
| | Label | Description | | ||
| |-------|-------------| | ||
| | `campus` | BCSD campus (student) team | | ||
| | `user` | BCSD user team | | ||
| | `business` | BCSD business team | | ||
| | `koin project` | Project-wide or cross-module changes | |
| | `feature` | New feature development | | ||
| | `fix` | Bug fixes | | ||
| | `refactor` | Code refactoring without behavior change | | ||
| | `enhancement` | Improvements to existing features | |
| | `refactor` | Code refactoring without behavior change | | ||
| | `enhancement` | Improvements to existing features | | ||
| | `chore` | Minor changes and maintenance tasks | | ||
| | `documentation` | Documentation changes | |
|
|
||
| ### Type Labels | ||
|
|
||
| The second bracket identifies the type of work: |
PR 개요
이슈 번호: #1301
PR 체크리스트
작업사항
작업사항의 상세한 설명
AGENTS.md에 PR 컨벤션을 추가하였습니다
논의 사항
스크린샷
추가내용
Summary by CodeRabbit