Help us improve
Share bugs, ideas, or general feedback.
From newsletter
AI 뉴스레터 자동 수집을 시작한다. config.json의 주기 설정에 따라 시스템 crontab에 등록하여, PC가 켜져있는 동안 자동으로 뉴스를 수집하고 Telegram으로 전송한다. Claude Code 세션 유지가 필요 없다. 사용자가 '뉴스레터 시작', '뉴스 수집 시작', 'start', '자동 수집 켜줘', '뉴스 보내기 시작' 등을 말하면 이 스킬을 사용할 것.
npx claudepluginhub bae-changhyun/cc-plugins-bch --plugin newsletterHow this skill is triggered — by the user, by Claude, or both
Slash command
/newsletter:ai-news-startThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
시스템 crontab에 등록하여 PC가 켜져있는 한 자동 수집한다. Claude Code 세션 유지 불필요.
Triggers the daily AI News Briefing pipeline manually via `make run`. Monitors execution and summarizes log output to confirm success or failure.
Aggregates AI/tech news from multiple RSS feeds, deduplicates, ranks by importance, and generates a structured briefing with sentiment tags and impact scores.
Generates AI Architect newsletters combining latest AI news, research insights, and visual storytelling. Supports daily briefs and weekly deep-dives.
Share bugs, ideas, or general feedback.
시스템 crontab에 등록하여 PC가 켜져있는 한 자동 수집한다. Claude Code 세션 유지 불필요.
cat {PLUGIN_DIR}/.data/config.json 2>/dev/null
파일이 없으면 → "/newsletter:ai-news-onboard로 먼저 설정하세요." 안내 후 종료.
which claude
config.json의 schedule.cron 값으로 시스템 crontab에 등록한다.
기존 뉴스레터 cron이 있으면 먼저 제거 후 새로 등록한다:
crontab -l 2>/dev/null | grep -v "# ai-news-newsletter" | grep -v "ai-news-now" > /tmp/crontab_backup.txt
echo '{CRON_SCHEDULE} claude -p "/newsletter:ai-news-now" --plugin-dir {PLUGIN_DIR}/.. 2>/dev/null # ai-news-newsletter' >> /tmp/crontab_backup.txt
crontab /tmp/crontab_backup.txt
{CRON_SCHEDULE}: config의 schedule.cron 값 (예: 0 * * * *){PLUGIN_DIR}/..: newsletter 플러그인의 부모 디렉토리 (plugins/)가 아니라 newsletter 디렉토리 자체를 가리켜야 한다. --plugin-dir에는 plugin.json이 있는 디렉토리의 경로를 넣는다.crontab -l | grep "ai-news"
사용자에게 전달:
/newsletter:ai-news-stop을 실행하세요."