Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计异常

leafmillleafmill 命令行

Agent Skill

leafmill 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

194

周安装

8

GitHub Stars

公开资料未说明

下载量

63
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/true-and-useful/leafmill-skill --skill leafmill

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 等协作信息。

  • 适用于围绕代码变更、仓库状态或协作事项进行整理和分析。
  • 可通过来源仓库和 README 进一步核验具体用法和功能边界。
  • 安装前建议确认权限范围及是否触发联网或文件读写操作。
  • leafmill 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Publish markdown and get a live URL with beautifully rendered articles. Create channels with RSS feeds. No account required.

Requirements

curl, jq

Publish markdown

./scripts/publish.sh <markdown-file>

Outputs the live URL (e.g. https://leafmill.net/wild-river-9x2k).

Single-step flow: the script reads the markdown file, POSTs it as JSON, and gets back the URL + QR code immediately. One call, done.

On first publish (no API key), the server creates a provisional account and returns an API key. The script auto-saves it to ~/.leafmill/credentials. Articles expire after 24 hours until the user verifies their email. Subsequent publishes use the saved key automatically.

Update an existing article

./scripts/publish.sh <markdown-file> --update <slug>

Updates the article's body (and optionally title/description). The slug and URL stay the same. Requires authentication.

Client attribution

./scripts/publish.sh <markdown-file> --client cursor

Sends X-Leafmill-Client: cursor/publish-sh on publish.

API key storage

Resolution order (first match wins):

  1. --api-key {key} flag (CI only)
  2. $LEAFMILL_API_KEY env var
  3. ~/.leafmill/credentials file (recommended)

Save command:

mkdir -p ~/.leafmill && echo "{API_KEY}" > ~/.leafmill/credentials && chmod 600 ~/.leafmill/credentials

After receiving an API key, save it yourself. Never ask the user to run it manually.

State file

.leafmill/state.json in working directory:

{
  "articles": {
    "wild-river-9x2k": {
      "url": "https://leafmill.net/wild-river-9x2k",
      "channelUrl": "https://leafmill.net/c/calm-dawn-bk01",
      "expiresAt": "2026-03-19T12:00:00Z"
    }
  }
}

Internal cache only. Never show the file path to the user.

What to tell the user

  • Always share the URL from the current script run.
  • Never bold, italicize, or wrap URLs in markdown formatting (no **, _, [](), or backticks). Output them as plain text so they are clickable as-is.
  • Read publish_result.* lines from stderr to determine auth mode.
  • When publish_result.auth_mode=authenticated: tell the user their article is permanent and saved to their account.
  • When publish_result.auth_mode=provisional: tell the user their article expires in 24 hours. Their account was created automatically — offer to make it permanent by verifying their email.
  • Always display the QR code so the user can scan it with their phone.

For channel articles, the QR code points to the channel page — so scanning opens the channel with all articles and a subscribe button.

  • Never tell the user to inspect .leafmill/state.json.

Getting an API key

Email code flow:

  1. Ask the user for their email.
  2. POST /api/auth/request-code with {"email": "..."}.
  3. Tell the user: "Check your inbox for a sign-in code from leafmill.net and paste it here."
  4. POST /api/auth/verify-code with {"email": "...", "code": "XXXX-XXXX"}.
  5. Save the returned apiKey immediately to ~/.leafmill/credentials.

Channels

Authenticated users can create channels (named feeds) and assign articles to them.

Creating a channel — requires auth:

curl -sS -X POST https://leafmill.net/api/v1/channels \
  -H "Authorization: Bearer $(cat ~/.leafmill/credentials)" \
  -H "Content-Type: application/json" \
  -d '{"title": "My Channel", "description": "Optional description"}'

Returns slug and feedUrl (e.g. https://leafmill.net/c/bright-creek-4x2m/feed.xml).

Publishing an article to a channel:

./scripts/publish.sh article.md --channel bright-creek-4x2m --title "My Article"

The --channel flag requires authentication. The channel must exist and be owned by the authenticated user.

What to tell the user after creating a channel:

  • Share the channel page: https://leafmill.net/c/<slug> — this is the shareable link (and QR code target)
  • The channel page lists all articles with a subscribe button
  • The RSS feed URL is https://leafmill.net/c/<slug>/feed.xml for direct subscription
  • New articles published with --channel will appear in the feed automatically

Listing channels:

curl -sS https://leafmill.net/api/v1/me/channels \
  -H "Authorization: Bearer $(cat ~/.leafmill/credentials)"

Making content permanent

Provisional users have expiring content. To make everything permanent, verify an email:

  1. Ask the user for their email.
  2. POST /api/auth/request-code with {"email": "..."}.
  3. Tell the user: "Check your inbox for a sign-in code from leafmill.net and paste it here."
  4. POST /api/auth/verify-code with {"email": "...", "code": "XXXX-XXXX"} and the Authorization: Bearer header (using the key from ~/.leafmill/credentials).
  5. Save the returned apiKey to ~/.leafmill/credentials (the key is rotated on verify).
  6. Tell the user: "Done — your channel is now permanent."

Limits

ProvisionalVerified
Max body500 KB500 KB
Expiry24 hoursPermanent
Rate limit3/hour per IP60/hour per key

Script options

FlagDescription
--title {text}Title (default: filename)
--description {text}Description
--channel {slug}Assign to a channel (requires auth)
--update {slug}Update an existing article (requires auth)
--client {name}Agent attribution (e.g. cursor, claude-code)
--api-key {key}API key override (prefer credentials file)
--base-url {url}API base (default: https://leafmill.net)

API routes

All endpoints are at https://leafmill.net. See references/REFERENCE.md for auth, payloads, and error handling.

MethodPathWhat it does
POST/api/v1/publishPublish markdown (creates provisional user if no auth)
GET/api/v1/articles/:slugGet article metadata
PATCH/api/v1/articles/:slugUpdate article (owner only)
DELETE/api/v1/articles/:slugDelete article (owner only)
POST/api/v1/channelsCreate channel
GET/api/v1/channels/:slugGet channel metadata
GET/api/v1/me/channelsList my channels
GET/api/v1/me/articlesList my articles
GET/api/v1/meGet current user
GET/c/:slugChannel page (public)
GET/c/:slug/feed.xmlRSS feed (public)

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

34.91%
按下载量换算22

Claude

29.35%
按下载量换算18

Cursor

20.25%
按下载量换算13

Gemini CLI

10.06%
按下载量换算6

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills