Token导航 LogoToken导航TokenDH.com
图像处理敏感数据clawhub未标认证来源可访问clear审计通过

miniflux-skill微流技能

Agent Skill

用于辅助图像生成、图片编辑、视觉素材处理或图像模型工作流。它适合让 Agent 根据文本生成图片、处理背景、整理视觉提示词或调用相关图像工具。使用时需要确认输入图片、版权来源、输出格式和模型限制;涉及人物、品牌、商品或公开展示素材时,应额外核对授权、真实性和内容合规边界。

总安装

19,169

周安装

815

GitHub Stars

2

下载量

6,716
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:miniflux-skill(微流技能)
来源仓库:https://github.com/dorogoy/miniflux-skill
安装命令:
openclaw skills install miniflux-skill
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install miniflux-skill

简介

miniflux-skill 通过 REST API 管理 Miniflux 订阅源,支持文章抓取与内容筛选。

  • 适用于 RSS 聚合、新闻监控与信息分类,提升资讯获取与管理效率。
  • 可自动过滤关键词、标记重要条目或导出摘要,适配个人知识库建设。
  • 安装命令:openclaw skills install miniflux-skill;需配置 Miniflux 实例 URL 与令牌。
  • 频繁拉取可能增加服务器负载,建议设置合理轮询间隔以避免被封禁。

SKILL.md

name
miniflux
description
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.
metadata

Miniflux 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:

  1. Log in to your Miniflux instance
  2. Go to Settings > API Keys
  3. Click "Create a new API key"
  4. 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

CommandDescription
feedsList all feeds
categoriesList all categories
entriesList entries with filters (status, search, limit, etc.)
entryGet a specific entry by ID
create-feedCreate a new feed subscription
update-feedUpdate an existing feed
delete-feedDelete a feed
refresh-allRefresh all feeds
refresh-feedRefresh a specific feed
mark-readMark specific entries as read
mark-unreadMark specific entries as unread
mark-feed-readMark all entries of a feed as read
toggle-bookmarkToggle bookmark/star status of an entry
discoverDiscover subscriptions from a URL
countersGet unread/read counters per feed
meGet current user info
create-categoryCreate a new category
delete-categoryDelete a category

Filters for Entries

When using the entries command, you can filter by:

  • --status: Entry status (unread, read, or removed)
  • --limit: Number of entries to return (default: 100)
  • --offset: Number of entries to skip
  • --direction: Sort direction (asc or desc)
  • --search: Search query string
  • --category-id: Filter by category ID
  • --feed-id: Filter by feed ID
  • --starred: Filter starred entries (true/false)
  • --before: Unix timestamp for entries before this time
  • --after: Unix timestamp for entries after this time

Examples

# Get last 10 unread entries
bash miniflux.sh entries --status unread --limit 10

# Search for Kubernetes articles
bash miniflux.sh entries --search "kubernetes" --limit 20

# Get entries from a specific feed
bash miniflux.sh entries --feed-id 42 --limit 15

# Get starred entries
bash miniflux.sh entries --starred true

# Create a feed with crawler enabled
bash miniflux.sh create-feed --url "https://techcrunch.com/feed/" --category 1 --crawler true

# Discover feeds from a blog
bash miniflux.sh discover --url "https://example.com"

API Endpoints Supported

  • /v1/feeds - List feeds
  • /v1/feeds/{id} - Get feed details
  • /v1/feeds/{id}/entries - Get feed entries
  • /v1/feeds/{id}/refresh - Refresh feed
  • /v1/feeds/{id}/mark-all-as-read - Mark feed entries as read
  • /v1/categories - List categories
  • /v1/categories/{id}/entries - Get category entries
  • /v1/entries - List entries
  • /v1/entries/{id} - Get entry
  • /v1/entries/{id}/bookmark - Toggle bookmark
  • /v1/feeds/refresh - Refresh all feeds
  • /v1/discover - Discover subscriptions
  • /v1/feeds/counters - Get counters
  • /v1/me - Current user info

Error Handling

The script will exit with error code 1 on API errors and display the error message from Miniflux.

Dependencies

  • Python 3.8+
  • Miniflux Python client (uv pip install miniflux)

Documentation

Full API documentation: https://miniflux.app/docs/api.html

适合场景

01

文本生成图片

02

图片风格化

03

产品图和创意图

04

需要 FLUX 模型时

能力概览

能力 1

调用 FLUX 图像模型

能力 2

支持文本生图和图像改写

能力 3

覆盖 LoRA 或风格适配

能力 4

适合创意视觉生成

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

91.94%
按下载量换算6,175

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills