소스 정보
- 저장소
- mofa-org/mofa-skills
- 최근 소스 활동
- 2026년 3월 29일 14:07
- 감지된 SKILL.md 언어
- 영어
- 스타
- 12
- 포크
- 12
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/mofa-org/mofa-skills --skill news명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
AI-generated greeting cards as PNG images. Triggers: greeting card, 贺卡, mofa card, mofa 贺卡, make a card, CNY card, New Year card, 新年贺卡, ink-wash card. Generates full-bleed AI artwork via Gemini in various Chinese art styles.
AI-generated comic strips and illustrations. Triggers: comic, manga, xkcd, 漫画, comic strip, 四格漫画, panel comic, illustration strip, snoopy. Generates multi-panel comics via Gemini with optional Qwen-Edit refinement, stitched into a single image.
Extract a video frame at a specific timestamp. Triggers: extract frame, 提取画面, screenshot video, capture frame, 截图, grab frame, video frame at, 视频截图.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | news |
| description | Fetch news headlines and synthesize structured briefings from multiple sources. |
| requires_bins | curl |
| requires_env | GEMINI_API_KEY |
Aggregate news from RSS feeds and APIs, then synthesize structured briefings.
web_fetch or curlweb_fetchwrite_file| Category | URL |
|---|---|
| Tech | https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRGRqTVhZU0FtVnVHZ0pWVXlnQVAB?hl=en-US |
| World | https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRFZxYUdjU0FtVnVHZ0pWVXlnQVAB?hl=en-US |
| HN | https://hacker-news.firebaseio.com/v0/topstories.json |
# Fetch Google News tech feed
curl -s "https://news.google.com/rss/topics/CAAqJggKIiBDQkFTRWdvSUwyMHZNRGRqTVhZU0FtVnVHZ0pWVXlnQVAB?hl=en-US"
# Fetch HN top stories
curl -s "https://hacker-news.firebaseio.com/v0/topstories.json" | head -10
Save to news-digest-YYYY-MM-DD.md:
# News Digest — 2026-03-11
## Technology
- **Headline** — Summary [Source](url)
- **Headline 2** — Summary [Source](url)
Key takeaway: ...
## World
...
For deeper analysis on a story, use web_search then read_file on results.
grep or sed to extract <title> and <link>v0/item/{id}.json