用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/bam-bam-2/solo-skills --skill discord-reminder命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
AI(ChatGPT·Claude·Gemini 등)가 쓴 한글 텍스트를 "사람이 쓴 글처럼" 윤문해주는 오케스트레이터 스킬. 번역투·영어 인용 과다·기계적 병렬·관용구·피동태 남용·접속사 남발·리듬 균일성·이모지/불릿 과다 등 10대 카테고리 40+ AI 티 패턴을 탐지·분류해 내용은 한 글자도 건드리지 않고 문체·리듬·표현만 자연스러운 한국어로 재작성한다. 트리거 — "AI 티 없애줘", "AI 같은 글 자연스럽게", "GPT/ChatGPT 문체", "AI 번역투 고쳐", "사람이 쓴 것처럼 윤문", "AI 윤문", "ChatGPT 티 제거", "한글 AI 탐지·윤문", "AI 글 사람처럼", "번역투 제거", "영어 인용 많은 글 윤문", "AI 글 티 안 나게", "휴머나이저", "humanize Korean", "AI detector bypass 한글". 후속 작업 — "특정 카테고리만 다시", "윤문 강도 조정", "장르 바꿔서", "이 문단만", "2차 윤문" 도 모두 이 스킬. 단순 맞춤법·오탈자 교정은 직접 처리, 번역은 번역 스킬, 내용 추가·삭제를 동반한 재작성은 별도 집필 스킬.
회의 전사록을 받아 회의록으로 정리하고 노션 DB에 등록한 뒤 디스코드에 공지까지 한 번에 처리한다.
온라인 유료 커뮤니티 개설 전체 프로세스를 지원하는 에이전트 조직 스킬. 커뮤니티 기획부터 모집 카피, 노션 DB 세팅, 운영 SOP까지 한번에 처리. 오케스트레이터가 인터뷰를 진행하고 4개 전문 에이전트가 결과물을 순서대로 생성한다. 트리거: "커뮤니티 만들자", "커뮤니티 개설", "유료 커뮤니티 만들어줘", "커뮤니티 기획해줘", "/community-launch"
基于 SOC 职业分类
正在显示 SKILL.md
| name | discord-reminder |
| description | 일회성·반복 리마인더를 상시 구동 머신의 launchd/cron에 걸고 디스코드 DM으로 받는다. 유료 자동화 슬롯을 쓰지 않는 방법. |
Use the remote-host instead of Aside routine slots for scheduled reminders.
~/Projects/<프로젝트>/<slug>.sh on remote-host with mode 700.~/Projects/<프로젝트>/discord_bot/.env. Never print or copy token values.BAMBAM_USER_ID. Include a non-empty User-Agent header to avoid Cloudflare blocking.~/Library/LaunchAgents/com.bambam.reminder-<slug>.plist.
StartCalendarInterval with Year, Month, Day, Hour, and Minute.StartInterval on this remote-host. Verified 2026-08-16: every
StartInterval LaunchAgent in the gui/501 domain sits at
pended nondemand spawn = interval and does not fire, including one that
had previously run 2,429 times. StartCalendarInterval jobs fire normally.
For an every-N-minutes job, list the minutes explicitly, e.g.
[{Minute: 0}, {Minute: 5}, ... {Minute: 55}] for a 5-minute cadence.~/Projects/<프로젝트>/<slug>.log.plutil -lint <plist>launchctl bootout gui/$(id -u)/<label> if an old copy existslaunchctl bootstrap gui/$(id -u) <plist>launchctl print gui/$(id -u)/<label>plutil -p <plist> to verify the exact schedulelaunchctl print showing the job loaded is not
proof — watch runs increment across two scheduled ticks, or check the job's
own log for two consecutive scheduled entries. A job can load cleanly and
never spawn.Use concise reminder text that says what happened, what the user should do next, and any account or product distinction needed to avoid a wrong action.
scripts/make-reminder.sh — 일회성 리마인더를 launchd에 등록합니다.
export DISCORD_BOT_TOKEN=... DISCORD_USER_ID=...
./scripts/make-reminder.sh cancel-check "2026-09-02 10:00" "구독 해지 확인하기"
지정한 시각에 DM이 한 번 가고 잡이 스스로 내려갑니다.
StartInterval이 아니라 StartCalendarInterval을 쓰는 이유는 아래 함정 항목을 보세요.