From katok
macOS 카카오톡 자동화 CLI. 친구 목록, 채팅방 목록, 메시지 읽기, 메시지 보내기를 지원합니다. 카카오톡 관련 작업이 필요할 때 사용하세요.
How this skill is triggered — by the user, by Claude, or both
Slash command
/katok:katokThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
macOS 접근성 API를 사용하여 카카오톡을 자동화합니다. 카카오톡 앱이 설치되어 있어야 하며, 접근성 권한이 필요합니다.
macOS 접근성 API를 사용하여 카카오톡을 자동화합니다. 카카오톡 앱이 설치되어 있어야 하며, 접근성 권한이 필요합니다.
# 채팅방 목록 보기 (기본 명령)
katok chats
# 친구 목록 보기
katok friends
# 특정 채팅방 메시지 읽기
katok messages "홍길동"
# 메시지 보내기
katok send "홍길동" "안녕하세요"
채팅방 목록을 CSV 형식으로 출력합니다.
# 기본 (최근 50개)
katok chats
# 개수 제한
katok chats --limit 10
katok chats -l 10
# 건너뛰기 (페이지네이션)
katok chats --offset 20
katok chats -o 20
# 조합
katok chats -l 10 -o 20
출력 형식: name,time,member_count,unread_count
친구 목록을 CSV 형식으로 출력합니다. 섹션별로 # 구분자가 포함됩니다.
katok friends
출력 형식: name,status_message
특정 채팅방의 메시지를 CSV 형식으로 출력합니다. 시스템 메시지는 #으로 시작합니다.
# 기본 (최근 50개)
katok messages "채팅방 이름"
# 개수 제한
katok messages "채팅방 이름" --limit 20
katok messages "채팅방 이름" -l 20
출력 형식: sender,content,time
나[이미지]로 표시# 메시지 내용 형식특정 채팅방에 메시지를 보냅니다.
katok send "채팅방 이름" "보낼 메시지"
katok chats -l 10
# 출력에서 unread_count > 0인 채팅방 확인 후 메시지 읽기
katok messages "친구이름" -l 5
katok messages "친구이름" -l 10
katok send "친구이름" "확인했습니다!"
brew install sunghyun-k/tap/katokmas install 869223134 (mas-cli 필요)npx claudepluginhub sunghyun-k/katok-cli --plugin katokReads KakaoTalk chat history and sends messages on macOS via Python CLI scripts with atomacos. Automates context-aware drafting after user confirmation.
Sends and reads KakaoTalk messages, lists chats, and manages conversations via CLI. Activates when KakaoTalk is needed.
Reads KakaoTalk chats, searches messages, sends replies (with confirmation), and deletes sent messages on macOS using kakaocli and a local helper script.