You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

57 lines
2.8 KiB
JavaScript

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/* 아리 — 결재함(승인 큐) 데이터
핵심 컨셉: 아리는 "할까요?"라고 묻지 않고 미리 해둔다.
- risk: "low" → 자율성 '혼합' 이상에서 자동 실행 (되돌리기 가능)
- risk: "high" → 보내기/결제/타인에게 전달 등은 승인 대기
사용자는 읽고 탭 한 번이면 끝. */
window.AriApprovals = {
savedToday: "47분", // 오늘 아리가 아껴준 시간 (데모)
autoCountNight: 7, // 밤사이 자동 처리 건수
items: [
{
id: "a1", icon: "cal", tone: "coral", risk: "low", time: "07:42",
title: "치과 예약을 16:00로 옮겼어요",
detail: "14시 분기 전략 미팅과 겹침 · 병원 예약 시스템에서 빈 슬롯 확인 후 변경",
undoLabel: "원래 시간으로",
},
{
id: "a2", icon: "mail", tone: "blue", risk: "low", time: "06:10",
title: "영수증·뉴스레터 7통을 정리했어요",
detail: "영수증 3통 → 금융 폴더 · 뉴스레터 4통 → 읽을거리, 받은편지함은 중요한 것만 남김",
undoLabel: "되돌리기",
},
{
id: "a3", icon: "cal", tone: "violet", risk: "low", time: "07:40",
title: "내일 오전 딥 워크 2시간을 예약했어요",
detail: "분기 리포트 마감(내일 18시) 대비 · 9:0011:00, 방해 금지로 설정",
undoLabel: "블록 해제",
},
{
id: "a4", icon: "mail", tone: "violet", risk: "high", time: "보내기 대기",
title: "현우님께 회신 초안이 준비됐어요",
detail: "“잘 받았어요! 금요일 오전까지 화면별 코멘트 정리해서 드릴게요.”",
cta: "보내기", alt: "수정",
},
{
id: "a5", icon: "users", tone: "green", risk: "high", time: "전달 대기",
title: "민서님께 ‘데이터 전처리’ 위임 요청",
detail: "오늘 일정 과부하 감지 · 맥락 요약과 마감(목)을 담은 요청 메시지 작성 완료",
cta: "전달", alt: "내가 할게",
},
{
id: "a6", icon: "wallet", tone: "amber", risk: "high", time: "확인 필요",
title: "Netflix 일시정지를 추천해요",
detail: "최근 2개월 시청 기록 없음 · 모레 17,000원 결제 예정 — 정지 절차는 준비해뒀어요",
cta: "일시정지", alt: "유지",
},
],
/* 밤사이/오늘 자동 처리 로그 (신뢰 + 투명성) */
log: [
{ time: "08:55", text: "스탠드업 직전 — 어제 진행 요약 노트 생성" },
{ time: "07:30", text: "출근 경로 확인 · 평소보다 4분 빠른 경로로 안내 예약" },
{ time: "06:00", text: "구독 결제 캘린더 동기화 (Netflix·Spotify 6/9)" },
{ time: "어제 23:10", text: "수면 모드 — 알림 음소거 · 내일 브리핑 예약" },
],
};