miniflux
Manage Miniflux - Modern minimalist feed reader via REST API. Use for listing feeds and entries, creating/removing subscriptions, searching articles, managing categories, and marking entries as read/unread.
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/dorogoy/miniflux-skillMiniflux Skill
Manage Miniflux - Modern minimalist feed reader via REST API.
Use for listing feeds and entries, creating/removing subscriptions, searching articles, managing categories, and marking entries as read/unread.
Setup
This skill requires Python and the Miniflux Python client.
# Install the miniflux Python package
uv pip install miniflux
Configuration
Set the following environment variables:
export MINIFLUX_URL="https://your-miniflux-instance.com"
export MINIFLUX_TOKEN="your-api-token-here"
To get an API token:
- Log in to your Miniflux instance
- Go to Settings > API Keys
- Click "Create a new API key"
- Copy the token and set it in MINIFLUX_TOKEN
Usage
CLI Wrapper
# List all feeds
bash miniflux.sh feeds
# List categories
bash miniflux.sh categories
# Get unread entries
bash miniflux.sh entries --status unread
# Search entries
bash miniflux.sh entries --search "kubernetes"
# Create a new feed
bash miniflux.sh create-feed --url "https://example.com/feed.xml" --category 1
# Refresh all feeds
bash miniflux.sh refresh-all
# Mark entries as read
bash miniflux.sh mark-read --entry-ids 123,456
# Mark feed as read
bash miniflux.sh mark-feed-read --feed-id 42
# Toggle bookmark/star
bash miniflux.sh toggle-bookmark --entry-id 123
# Discover subscriptions from a website
bash miniflux.sh discover --url "https://example.org"
# Delete a feed
bash miniflux.sh delete-feed --feed-id 42
# Get feed details
bash miniflux.sh feed --feed-id 42
# Get counters (unread/read)
bash miniflux.sh counters
# Get current user info
bash miniflux.sh me
# Get specific entry
bash miniflux.sh entry --entry-id 123
# Create category
bash miniflux.sh create-category --title "Tech News"
# Delete category
bash miniflux.sh delete-category --category-id 5
# Update feed
bash miniflux.sh update-feed --feed-id 42 --title "New Title" --category-id 3
Commands Reference
| Command | Description |
|---|---|
feeds | List all feeds |
categories | List all categories |
entries | List entries with filters (status, search, limit, etc.) |
entry | Get a specific entry by ID |
create-feed | Create a new feed subscription |
update-feed | Update an existing feed |
delete-feed | Delete a feed |
refresh-all | Refresh all feeds |
refresh-feed | Refresh a specific feed |
mark-read | Mark specific entries as read |
mark-unread | Mark specific entries as unread |
mark-feed-read | Mark all entries of a feed as read |
toggle-bookmark | Toggle bookmark/star status of an entry |
discover | Discover subscriptions from a URL |
counters | Get unread/read counters per feed |
me | Get current user info |
create-category | Create a new category |
delete-category | Delete a category |
Filters for Entries
When using the entries command, you can filter by:
Metadata
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skillPaste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-dorogoy-miniflux-skill": {
"enabled": true,
"auto_update": true
}
}
}