daily-sales-digest
고객사용 일일 매출 요약 스킬. 네이버 스마트스토어, 쿠팡, 배민셀러, POS 연동하여 매출 데이터를 수집하고, 일일/주간/월간 요약 리포트를 자동 생성. Discord/카톡/이메일로 배달.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/mupengi-bot/daily-sales-digestdaily-sales-digest
고객사용 일일 매출 요약 및 분석 스킬입니다.
기능
- 매출 데이터 수집 — 네이버 스마트스토어 API, 쿠팡 Wing API, 배민셀러 API, POS 시스템 연동
- 일일 요약 — 매일 아침 8시 전일 매출 한 줄 요약 (총매출, 주문수, 객단가)
- 비교 분석 — 전일 대비, 전주 동요일 대비, 전월 대비 변화율 자동 계산
- 이상 탐지 — 매출 급증/급감 시 즉시 알림 (임계값: ±30%)
- 주간/월간 리포트 — 자동 생성 및 트렌드 분석
- 채널 배달 — Discord/카톡/이메일로 요약 전송
빠른 시작
1. 설정 파일 생성
cp {baseDir}/config.template.json ~/.openclaw/workspace/config/daily-sales-digest.json
~/.openclaw/workspace/config/daily-sales-digest.json 파일을 편집하여 API 키와 채널 설정:
{
"sources": {
"naver": {
"enabled": true,
"clientId": "YOUR_CLIENT_ID",
"clientSecret": "YOUR_CLIENT_SECRET"
},
"coupang": {
"enabled": false,
"accessKey": "YOUR_ACCESS_KEY",
"secretKey": "YOUR_SECRET_KEY"
},
"baemin": {
"enabled": false,
"apiKey": "YOUR_API_KEY"
},
"pos": {
"enabled": false,
"type": "custom",
"endpoint": "http://localhost:3000/api/sales"
}
},
"alerts": {
"threshold": 0.3,
"channels": ["discord"]
},
"delivery": {
"discord": {
"channelId": "1234567890"
},
"email": {
"to": "[email protected]"
}
},
"schedule": {
"daily": "0 8 * * *",
"weekly": "0 9 * * 1",
"monthly": "0 9 1 * *"
}
}
2. 수동 실행
어제 매출 요약
node {baseDir}/scripts/digest.js --date yesterday --format text
특정 날짜 매출
node {baseDir}/scripts/digest.js --date 2026-02-17 --format json
주간 리포트
node {baseDir}/scripts/digest.js --period week --format text
월간 리포트
node {baseDir}/scripts/digest.js --period month --format markdown
3. 자동 스케줄링 (OpenClaw cron)
매일 아침 8시 전일 매출 요약을 Discord로 자동 전송:
openclaw cron add \
--name "daily-sales-digest:daily" \
--schedule "0 8 * * *" \
--command "node /Users/mupeng/.openclaw/workspace/skills/daily-sales-digest/scripts/digest.js --date yesterday --deliver discord"
주간 리포트 (매주 월요일 오전 9시):
openclaw cron add \
--name "daily-sales-digest:weekly" \
--schedule "0 9 * * 1" \
--command "node /Users/mupeng/.openclaw/workspace/skills/daily-sales-digest/scripts/digest.js --period week --deliver discord"
월간 리포트 (매월 1일 오전 9시):
openclaw cron add \
--name "daily-sales-digest:monthly" \
--schedule "0 9 1 * *" \
--command "node /Users/mupeng/.openclaw/workspace/skills/daily-sales-digest/scripts/digest.js --period month --deliver email,discord"
4. 이상 탐지 알림
매출 급증/급감 감지 시 즉시 Discord 알림:
node {baseDir}/scripts/alert.js --threshold 0.3 --deliver discord
데이터 수집
데이터는 ~/.openclaw/workspace/data/sales/ 디렉토리에 JSON 형식으로 저장:
~/.openclaw/workspace/data/sales/
├── 2026-02-17.json
├── 2026-02-18.json
└── ...
각 파일 형식:
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-mupengi-bot-daily-sales-digest": {
"enabled": true,
"auto_update": true
}
}
}Related Skills
prompt-engineer
Expert prompt engineer specializing in advanced prompting techniques, LLM optimization, and AI system design. Masters chain-of-thought, constitutional AI, and production prompt strategies. Use when building AI features, improving agent performance, or crafting system prompts.
appointment-scheduler
Automated appointment management for beauty salons, clinics, studios, and photo booths. Handles booking requests, calendar sync, conflict detection, reminders, no-show tracking, and waitlist management.
Mupeng Social Postcjo
Skill by mupengi-bot
data-scraper
Web page data collection and structured text extraction
auto-reply
Instagram DM auto-reply system. DM monitoring, reading, replying, security check (injection rejection). Use when checking Instagram DMs, reading unread messages, replying to DMs, setting up DM monitoring cron jobs, or handling DM auto-reply workflows. Triggers on: Instagram DM, DM check, DM reply, DM auto-reply, dm-alert.