← All skills
Tencent SkillHub Β· Developer Tools

Miniflux News

Fetch and triage the latest unread RSS/news entries from a Miniflux instance via its REST API using an API token. Use when the user asks to get the latest Miniflux unread items, list recent entries with titles/links, or generate short summaries of specific Miniflux entries. Includes a bundled script to query Miniflux (/v1/entries and /v1/entries/{id}) using credentials from ~/.config/clawdbot/miniflux-news.json (or MINIFLUX_URL and MINIFLUX_TOKEN overrides).

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Fetch and triage the latest unread RSS/news entries from a Miniflux instance via its REST API using an API token. Use when the user asks to get the latest Miniflux unread items, list recent entries with titles/links, or generate short summaries of specific Miniflux entries. Includes a bundled script to query Miniflux (/v1/entries and /v1/entries/{id}) using credentials from ~/.config/clawdbot/miniflux-news.json (or MINIFLUX_URL and MINIFLUX_TOKEN overrides).

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md, references/miniflux-api-notes.md, scripts/miniflux.py

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

Miniflux News

Use the bundled script to fetch entries, then format a clean list and optionally write summaries.

Setup (credentials)

This skill reads Miniflux credentials from a local config file by default.

Config file (recommended)

Path: ~/.config/clawdbot/miniflux-news.json Format: { "url": "https://your-miniflux.example", "token": "<api-token>" } Create/update it using the script: python3 skills/miniflux-news/scripts/miniflux.py configure \ --url "https://your-miniflux.example" \ --token "<api-token>"

Environment variables (override)

You can override the config file (useful for CI): export MINIFLUX_URL="https://your-miniflux.example" export MINIFLUX_TOKEN="<api-token>" Token scope: Miniflux API token with read access.

Fetch latest entries

List latest unread items (default): python3 skills/miniflux-news/scripts/miniflux.py entries --limit 20 Filter by category (by name): python3 skills/miniflux-news/scripts/miniflux.py entries --category "News" --limit 20 If you need machine-readable output: python3 skills/miniflux-news/scripts/miniflux.py entries --limit 50 --json

Response formatting

Return a tight bullet list: [id] title β€” feed + link. Ask how many the user wants summarized (e.g., β€œsummarize 3” or β€œsummarize ids 123,124”).

View full content

Show the full article content stored in Miniflux (useful for reading or for better summaries): python3 skills/miniflux-news/scripts/miniflux.py entry 123 --full --format text If you want the raw HTML as stored by Miniflux: python3 skills/miniflux-news/scripts/miniflux.py entry 123 --full --format html

Categories

List categories: python3 skills/miniflux-news/scripts/miniflux.py categories

Mark entries as read (explicit only)

This skill must never mark anything as read implicitly. Only do it when the user explicitly asks to mark specific ids as read. Mark specific ids as read: python3 skills/miniflux-news/scripts/miniflux.py mark-read 123 124 --confirm Mark all unread entries in a category as read (still explicit, requires --confirm; includes a safety --limit): python3 skills/miniflux-news/scripts/miniflux.py mark-read-category "News" --confirm --limit 500

Summarize entries

Fetch full content for a specific entry id (machine-readable): python3 skills/miniflux-news/scripts/miniflux.py entry 123 --json Summarization rules: Prefer 3–6 bullets max. Lead with the β€œso what” in 1 sentence. If content is empty or truncated, say so and summarize from title + available snippet. Don’t invent facts; quote key numbers/names if present.

Troubleshooting

If the script says missing credentials: set MINIFLUX_URL/MINIFLUX_TOKEN or create ~/.config/clawdbot/miniflux-news.json. If you get HTTP 401: token is wrong/expired. If you get HTTP 404: base URL is wrong (should be the Miniflux web root).

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
2 Docs1 Scripts
  • SKILL.md Primary doc
  • references/miniflux-api-notes.md Docs
  • scripts/miniflux.py Scripts