Token导航 LogoToken导航TokenDH.com
研究检索执行命令github未标认证来源可访问clear审计提醒

mlwclimlwcli 搜索

Agent Skill

mlwcli 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

447

周安装

19

GitHub Stars

公开资料未说明

下载量

157
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/goofansu/mlwcli --skill mlwcli

简介

mlwcli 搜索工具用于快速查找与筛选相关信息。

  • 它适用于多种宿主环境中的关键词驱动检索任务。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 通过 goofansu/mlwcli 仓库安装,使用 npx 命令部署。
  • 建议在使用前检查其是否涉及网络请求或文件读写操作。
  • mlwcli 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

mlwcli

A unified CLI for managing feeds (Miniflux), links (Linkding), and pages (Wallabag).

Command Reference

# Authentication (interactive TUI)
mlwcli auth login        # Login to linkding, miniflux, or wallabag
mlwcli auth logout       # Logout from a service

# Linkding (Links)
mlwcli link add <url>    # Add link
mlwcli link list         # List links

# Miniflux (Feeds)
mlwcli feed add <url>    # Add feed
mlwcli feed list         # List feeds
mlwcli entry list        # List feed entries
mlwcli entry save <id>   # Save entry to third-party service

# Wallabag (Pages)
mlwcli page add <url>    # Add page
mlwcli page list         # List pages

Use --help on any command for options.

Critical Guidelines

  1. Authentication requires user action:

- auth login and auth logout use an interactive TUI that requires a TTY — do not run them yourself - If a command fails due to missing credentials, tell the user to run mlwcli auth login in their terminal - Config stored at ~/.config/mlwcli/auth.toml

  1. Pagination: All list commands return {total, items}.

- link list, entry list: --limit / --offset (default: limit=10, offset=0) - page list: --page / --per-page (default: page=1, per-page=10) - feed list: no pagination parameters (returns all) - Always check total vs items returned before assuming you have all results.

  1. Output Filtering:

- --jq=expression — inline jq filter (automatically enables JSON output) - --json=field1,field2 — select specific fields (comma-separated, no spaces) - Without these flags, output is human-readable table format

  1. Search and Filtering:

- link list: --search, --limit, --offset - entry list: --search, --status (read/unread/removed, default: unread), --starred, --feed-id, --limit, --offset - page list: --archive, --starred, --tags, --domain, --page, --per-page

  1. Quote Handling:

- Values with double quotes: wrap in single quotes: --notes 'Title: "Example"' - Tags are space-separated within a quoted string: --tags "tag1 tag2"

Examples

Authentication

Authentication requires an interactive TTY — ask the user to run these commands themselves:

mlwcli auth login   # interactive TUI: select service, enter endpoint + credentials
mlwcli auth logout  # interactive TUI: only shows signed-in services

Check pagination before processing

mlwcli entry list --status=unread --jq='{total: .total, returned: (.items | length)}'

If total > returned, increase --limit or paginate:

mlwcli entry list --status=unread --limit=100
# or iterate with --offset=0, --offset=10, etc.

List unread entries

mlwcli entry list --status=unread --jq='.items[] | { id, url, title, published_at, status, feed_id: .feed.id, feed_title: .feed.title }'

List entries by feed

# Find feed ID
mlwcli feed list --jq='.items[] | { id, title, site_url }'

# Fetch entries from that feed
mlwcli entry list --feed-id=42 --limit=20 --jq='.items[] | { id, url, title, published_at }'

Find starred/read entries by date

mlwcli entry list --starred --status=read --limit=100 --json=id,url,title,changed_at,starred | jq '.items[] | select(.changed_at >= "2025-12-26")'

Note: changed_at reflects when the entry was last modified (starred/read status changed), not publication date.

Save an entry to a third-party service

mlwcli entry save 42

Saves to Miniflux's configured third-party integration (e.g. Wallabag, Pocket).

Add a feed (with optional category)

mlwcli feed add <url>
mlwcli feed add <url> --category-id=<id>   # defaults to 1 (All) if omitted

To find category IDs:

mlwcli feed list --jq='.items[] | { id, title, category_id: .category.id, category_title: .category.title }'

Add a link

mlwcli link add <url>
mlwcli link add <url> --notes='Title: "Some Title"' --tags="tag1 tag2"

Add a page

mlwcli page add <url>
mlwcli page add <url> --tags="tag1 tag2" --archive

List pages

mlwcli page list --starred --per-page=20 --jq='.items[] | { id, url, title, domain_name }'
mlwcli page list --domain=example.com
mlwcli page list --tags="tech news"

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

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

平台分布

Claude Code

30.69%
按下载量换算48

OpenCode

22.35%
按下载量换算35

Gemini CLI

19.98%
按下载量换算31

windsurf

12.8%
按下载量换算20

amp

8.89%
按下载量换算14

pi

3.31%
按下载量换算5

安全审计

Gen Agent Trust Hub

通过

Socket

可疑

Snyk

可疑

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/goofansu/mlwcli --skill mlwcli;npx skills add goofansu/mlwcli --skill "mlwcli" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills