Claude Skill MartBrowse skillsQuick linesLearn by videoTerminal guideWhat is a Skill?
Back to list

AI Daily News Digest

Pulls AI industry news from the smol.ai RSS feed and turns it into a date-scoped Markdown digest, an optional themed HTML page, and a shareable card image.

Content & WritingBeginner23269AI score 9/10Last updated: Aug 13, 2026

What it does

  • Fetches AI news from news.smol.ai/rss.xml via a bundled Python script.
  • Parses relative dates ("yesterday", "the day before") and absolute YYYY-MM-DD dates.
  • Produces 3–5 key takeaways, sorts items into six categories (model releases, product updates, research, tools, funding/M&A, industry events), and extracts keywords.
  • Optionally renders a styled HTML page (Apple minimal, deep blue, warm autumn) saved to docs/{date}.html.
  • Optionally builds a social-ready card image via the Firefly Card API, saved to docs/images/{date}.png.
  • If no issue exists for the requested date, it reports the available date range and suggests alternatives.

Who it's for

  • Anyone who ships a daily or weekly AI roundup to a team, Slack channel, or newsletter.
  • Content creators and marketers covering the AI space.
  • Developers and PMs who want a quick scan of new models and tooling.

Examples

  1. "Give me yesterday's AI news" → structured Markdown digest with summary, categories, and keywords.
  2. "AI news for 2026-01-13, make a webpage" → Apple-style HTML written to docs/2026-01-13.html.
  3. "Only model-release news from yesterday, then make a share card" → filtered digest plus a PNG card in docs/images/.

· · · Install guide · · ·

Try it now, no install

Paste this into Claude to use the skill without installing anything.

Read the instructions in this file and follow them to help me:
https://raw.githubusercontent.com/geekjourneyx/ai-daily-skill/HEAD/plugins/ai-daily/skills/ai-daily/SKILL.md

What I want: (describe your task here)

If Claude can't open the link, open it yourself and paste the contents instead.

If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download ZIP
Install in Claude Code

Let Claude do it — paste this into Claude Code

Install the skill I found on Claude Skill Mart.
Copy the plugins/ai-daily/skills/ai-daily folder from the GitHub repo geekjourneyx/ai-daily-skill into my ~/.claude/skills/ai-daily-news/.
When it's done, tell me in one line what this skill can do.

Install with a command instead

git clone https://github.com/geekjourneyx/ai-daily-skill.git && mkdir -p ~/.claude/skills && cp -r ai-daily-skill/plugins/ai-daily/skills/ai-daily ~/.claude/skills/ai-daily

This is a third-party skill. Check the source repository before installing.

  1. Open a terminal and clone the repo: git clone https://github.com/geekjourneyx/ai-daily-skill.git
  2. Create the skills folder if needed: mkdir -p ~/.claude/skills
  3. Copy the skill in: cp -r ai-daily-skill/plugins/ai-daily/skills/ai-daily ~/.claude/skills/ai-daily
  4. Confirm Python 3 is available: python3 --version (the RSS fetch script needs it).
  5. Prepare output folders: mkdir -p docs/images
  6. Restart Claude Code and try: "Summarize yesterday's AI news."
  7. Note that card-image generation calls an external API (fireflycard-api.302ai.cn), so internet access is required.