Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .claude/skills/GUIDELINES.md
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,7 @@ public String field; // ❌ Breaks encapsulation
```markdown
| Layer | Pattern | Example | Location |
|-------|---------|---------|----------|
| **Domain Model** | Singular noun | `User`, `Item` | `[domain]/domain/model/` |
| **Domain Model** | Plural noun | `Users`, `Items` | `[domain]/domain/model/` |
| **Persistence Entity** | Noun + "Entity" | `UserEntity` | `[domain]/adapter/.../entity/` |
```

Expand Down Expand Up @@ -717,7 +717,7 @@ repository.deleteAll();

NEVER use deleteAllInBatch() - can delete production data!

**2026년 1월 Incident**: deleteAllInBatch() wiped entire database.
**2026년 1월경 실제 사고**: deleteAllInBatch() wiped entire database.

❌ FORBIDDEN:
```java
Expand Down
Loading