미용실·살롱 메뉴 설명을 Claude Code로 정리하기
가격 조건, 소요 시간, 추가 요금, Google 서비스 표시, 첫 방문 예약 CTA를 정리하는 절차입니다.
미용실이나 살롱 메뉴에 “컷 5,500엔”, “컬러 8,800엔부터”만 있으면 첫 방문 고객은 예약 전에 멈춥니다. 긴 머리 추가 요금, 브리치 포함 여부, 상담 시간, 종료 시간을 알 수 없기 때문입니다. Claude Code에는 메뉴, Google 서비스, FAQ, 자주 묻는 질문을 정리하게 하고 가격과 시간은 사람이 확인합니다.
핵심 요약
- Show price, duration, included items, and add-on conditions on the menu page.
- Claude Code compares booking pages, Google services, FAQ, and common questions.
- Humans approve price, duration, chemicals, safety wording, photo rights, and effect claims.
- Use cases cover first visits, color or treatment menus, and Google service listings.
- Metrics include pre-booking questions, day-of menu changes, first-visit bookings, and price complaints.
Workflow
Collect booking page, price table, Google Business Profile service list, Instagram pinned post, FAQ, frequent questions, and menus that often change on the day. Claude Code turns these into a menu gap table.
| Input | Output | Human review |
|---|---|---|
| booking page | name, price, duration | appointment slot |
| Google profile | service text and price | consistency |
| FAQ | first visit, long hair, payment | salon policy |
| questions | confusion points | personal data removed |
| photos | example and note | permission |
Use Google’s menu editor help for profile display and the Japanese health ministry’s beauty salon hygiene guidance for safety context.
Claude Code Scope And Human Review
Claude Code drafts explanations, compares names, finds price-condition gaps, and creates a publication checklist. Humans review price, duration, chemicals, hygiene, photo permission, and result claims.
3 Use Cases
Use case 1: First visit menu
Reorder menus by beginner confusion. Show who the menu fits, included items, duration, price range, and add-on conditions.
Use case 2: Color and treatment
Separate length, chemicals, bleach count, history, and options. This helps customers decide before booking.
Use case 3: Google service list
Compare Google service names, official menu names, and booking menu names. Flag old prices and weak descriptions.
복사해서 쓰는 프롬프트
Review this beauty salon menu.
Goal: reduce price anxiety and duration confusion before booking.
Inputs: booking page, Google services, menu table, prices, duration, frequent questions, day-of changes.
Output: beginner menu table, included/excluded items, add-on conditions, duration mismatch, Google service copy, human review checklist.
Rules: do not invent price, time, chemical conditions, medical claims, or results.
Working Check Code
const salonMenu = [
{ name: "cut", priceNote: "from price with condition", durationMin: 60, cta: "book_consultation", humanReview: true },
{ name: "color", priceNote: "length and bleach conditions", durationMin: 120, cta: "check_before_booking", humanReview: true },
{ name: "treatment", priceNote: "option and expected range", durationMin: 45, cta: "ask_stylist", humanReview: true },
{ name: "first_visit", priceNote: "counseling included", durationMin: 90, cta: "book_first_visit", humanReview: true },
];
const errors = [];
for (const item of salonMenu) {
if (!item.priceNote) errors.push(`${item.name}: price explanation missing`);
if (!Number.isFinite(item.durationMin) || item.durationMin <= 0) errors.push(`${item.name}: duration missing`);
if (!item.cta) errors.push(`${item.name}: CTA missing`);
if (!item.humanReview) errors.push(`${item.name}: menu terms need human review`);
}
if (!salonMenu.some((item) => item.cta === "book_first_visit")) {
errors.push("first visit booking CTA is missing");
}
if (errors.length) {
console.error(errors.join("\n"));
process.exit(1);
}
console.log("Beauty salon menu page is ready for review.");
Pitfall: Common Traps
Cause 1: every price says “from”. Fix: list length, chemical, option, and consultation conditions.
Cause 2: duration is too short. Fix: include counseling, processing, finish, and payment.
Cause 3: claims are too strong. Fix: mark result wording for human review.
Cause 4: Google services stay old. Fix: update Google when price, name, or booking link changes.
FAQ
Q. Should menus show detailed prices?
Yes, at least for conditions that change the final price.
Q. Can AI decide the right treatment?
No. It can organize choices, but staff decide after counseling.
Q. What should be updated first?
Top booking menus and menus with many questions.
ROI View
Track pre-booking questions, menu drop-off, day-of menu changes, first-visit booking rate, average ticket, and price-related reviews.
상담 경로
Collect booking page, Google profile, price table, duration, common questions, and day-of changes. Remove names and customer records. Use Gumroad Prompt Templates or training and consultation for shared review rules.
실제로 확인한 결과
I checked Google’s menu editor help, Japan’s beauty salon hygiene guidance, Consumer Affairs Agency beauty-service caution content, and the Personal Information Protection Commission. I also ran the Node.js check for price explanation, duration, CTA, and human review gates.
The first action is to add price conditions, duration, included items, and add-on rules to the top five menus.
관련 글
음식점 Google 비즈니스 게시물과 메뉴 업데이트를 Claude Code로 정리하기
음식점의 Google 비즈니스 프로필 메뉴, 게시물, 영업시간, 사진, 예약 CTA를 점검하는 방법입니다.
미용실 예약 답장·리뷰 응대·스타일 제안문을 Claude Code로 줄이는 실무법
미용실 원장·디자이너를 위한 가이드. 예약 답장, 리뷰 응대, 스타일 제안문 초안을 Claude Code로 빠르게 만드는 방법을 복붙 프롬프트와 검증 코드와 함께 소개합니다.
호텔 취소 답변을 Claude Code로 정리하기: 예약번호와 개인정보를 넘기지 않는 확인표
호텔 취소 및 일정 변경 답변에서 예약번호, 이름, 환불 판단을 AI에 넘기지 않는 점검 절차.
무료 PDF: Claude Code 치트시트
이메일을 입력하면 명령, 리뷰 습관, 안전한 워크플로를 정리한 PDF를 받을 수 있습니다.
개인정보를 안전하게 관리하며 스팸을 보내지 않습니다.
작성자 소개
Masa
Claude Code 실무 워크플로와 팀 도입을 검증하는 엔지니어입니다.