Back to Skills

modification-guide

verified

SaaS 수정 및 업데이트 가이드 - 코드 변경, 기능 추가, 유지보수

View on GitHub

Marketplace

kreatsaas-marketplace

johunsang/kreatsaas

Plugin

kreatsaas

Development

Repository

johunsang/kreatsaas
1stars

skills/modification-guide/SKILL.md

Last Verified

January 16, 2026

Install Skill

Select agents to install to:

Scope:
npx add-skill https://github.com/johunsang/kreatsaas/blob/main/skills/modification-guide/SKILL.md -a claude-code --skill modification-guide

Installation paths:

Claude
.claude/skills/modification-guide/
Powered by add-skill CLI

Instructions

# SaaS 수정 및 업데이트 가이드

> 프로덕션 SaaS 코드 수정, 기능 추가, 유지보수 완벽 가이드

---

## 1. 코드 수정 워크플로우

### 1.1 기본 수정 프로세스

```
┌─────────────────────────────────────────────────────────────┐
│ 🔄 코드 수정 워크플로우                                       │
├─────────────────────────────────────────────────────────────┤
│                                                              │
│  1. 이슈 확인/생성                                           │
│     ↓                                                        │
│  2. 브랜치 생성 (feature/fix-xxx)                           │
│     ↓                                                        │
│  3. 코드 수정                                                │
│     ↓                                                        │
│  4. 로컬 테스트                                              │
│     ↓                                                        │
│  5. PR 생성                                                  │
│     ↓                                                        │
│  6. 코드 리뷰                                                │
│     ↓                                                        │
│  7. 스테이징 배포 & 테스트                                   │
│     ↓                                                        │
│  8. 프로덕션 배포                                            │
│                                                              │
└─────────────────────────────────────────────────────────────┘
```

### 1.2 Git 브랜치 전략

```bash
# 브랜치 명명 규칙
main              # 프로덕션
├── develop       # 개발 통합
├── feature/xxx   # 새 기능
├── fix/xxx       # 버그 수정
├── hotfix/xxx    # 긴급 수정
└── release/x.x.x # 릴리즈 준비

# 새 기능 브랜치 생성
git checkout develop
git pull origin develop
git checkout -b feature/add-dark-mode

# 작업 완료 후
git add .
git commit -m "feat: add dark mode toggle"
git push origin feature/add-dark-mode
```

### 1.3 커밋 메시지 컨벤션

```bash
# 형식: <type>(<scope>): <description>

# Types
feat:     새 기능
fix:      버그 수정
docs:     문서 수정
style:    코드 포맷팅 (기능 변경 없음)
refactor: 리팩토링
perf:     

Validation Details

Front Matter
Required Fields
Valid Name Format
Valid Description
Has Sections
Allowed Tools
Instruction Length:
15308 chars