Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

lum-skill-publisherlum 技能出版商

Agent Skill

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

总安装

12,724

周安装

541

GitHub Stars

公开资料未说明

下载量

4,458
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install lum-skill-publisher

简介

lum-skill-publisher 分析技能趋势并协助发布新 Skill 到 ClawHub。

  • 适合开发者推广工具、优化技能描述或参与社区共建的场景。
  • 生成差距报告和模板建议,提升技能可见性和实用性。
  • 使用前需 Fork 仓库并遵循贡献指南,建议本地测试通过后提交 PR。
  • 注意技能命名规范,避免与现有条目重复或冲突。

SKILL.md

name
clawhub-skill-publisher
version
1.0.1
description
Research, structure, and publish skills to ClawHub. Analyzes top listings for content patterns, generates gap reports against your draft, patches README/SKILL files to match marketplace standards, and runs clawhub publish.
metadata

ClawHub Skill Publisher v1

Turn a rough skill idea into a polished, publish-ready ClawHub listing — informed by what's actually working in the marketplace.

Use this skill when you want to:

  • Publish a new skill to ClawHub
  • Audit an existing skill draft against marketplace standards
  • Research what top-performing skills look like before writing yours

Workflow

Step 1 — Research Top Listings

Install the most relevant published skills in a temp directory and read their SKILL.md + README.md:

mkdir -p /tmp/ch-research

# Search for skills in your category
clawhub search "your-category-keyword"

# Install top 3-5 results for analysis
clawhub install <slug1> --dir /tmp/ch-research --force
clawhub install <slug2> --dir /tmp/ch-research --force
# (rate limit: add 3s sleep between installs)

What to capture per skill:

  • Description line: length, tone, value-first or feature-first?
  • First sentence of SKILL.md: does it state the use case immediately?
  • Structure: does it use tables, code blocks, headers?
  • Word count (target: 400–700 words for SKILL.md)
  • Sections present: commands, when-to-use, safety, version history
  • Trust signals: safety section, version history, explicit opt-outs

Step 2 — Gap Analysis

Compare your draft against findings. Score each dimension:

DimensionBest PracticeYour DraftAction
Description line≤160 chars, value-first, no buzzwords?Patch or OK
"When to use"Explicit trigger + do/don't?Patch or OK
Commands/interfaceSlash commands or trigger phrases?Patch or OK
Word count (SKILL.md)400–700 words?Trim or expand
Tables vs. proseTables preferred for comparisons?Patch or OK
Version historyPresent, at bottom?Add or OK
Safety sectionExplicit "never does X" list?Add or OK
ExamplesConcrete ✅/❌ pairs?Add or OK
AttributionLink back to openclaw.ai / clawhub.ai?Add or OK

Step 3 — Patch the Draft

Apply gap findings. Priority order:

  1. Description line (most visible — fix first)
  2. "When to use" section (drives installs)
  3. Trim word count if over 700 (cut prose, keep tables)
  4. Add missing sections (safety, version history)
  5. Convert prose comparisons to tables
  6. Add examples file if none exists

Step 4 — Publish

# Verify auth
clawhub whoami

# Publish (run from workspace root or skill parent dir)
clawhub publish ./skills/<your-skill> \
  --slug <your-slug> \
  --name "Your Skill Name" \
  --version 1.0.0 \
  --changelog "Initial release"

Published URL: https://clawhub.ai/skills/<your-slug>


ClawHub Listing Anatomy

Description Field (≤160 chars)

The most important text. Shows in search results and install prompts.

Formula: [What it does] + [how] + [key outcome].

✅ Good: "Reduce AI costs by batching related asks into fewer responses. ~30–50% fewer API calls, no quality loss." ❌ Bad: "ClawSaver — Combines Linked Asks into Well-structured Sets for Affordable, Verified, Efficient Responses"

SKILL.md Structure (what the agent reads)

---
name: skill-name
version: X.Y.Z
description: "Same as listing description"
metadata: {"openclaw":{"emoji":"🔧"}}
---

# Skill Name vX

> One-line positioning statement.

[One paragraph: what it does and why.]

## When to Use
[Use / Do not use — explicit conditions]

## Core Behavior / Commands
[Tables preferred. Trigger phrases, commands, decision rules.]

## Safety
[What it never does. Explicit opt-outs.]

## Installation
[clawhub install command]

## Version History
[- X.Y.Z — what changed]

README.md Structure (humans + listing body)

# Skill Name
> Tagline

## Why [Skill Name]?
[Problem → solution in 2-3 sentences]

## What It Does
[Numbered or bulleted feature list]

## [Key Decision Table or Usage Example]

## Safety Model

## Installation

## Version

Marketplace Patterns (Observed Feb 2026)

What top skills have in common

  • Value-first description (outcome before feature list)
  • "When to use" is explicit — most top skills have do/don't lists
  • Tables over prose for anything comparative
  • Safety section is a trust signal — include it even if short
  • Version history at the bottom — shows maintenance
  • Word count 400–700 for SKILL.md; README can be longer

What separates good from great

  • Great: examples file with concrete ✅/❌ pairs
  • Great: trigger phrase detection (tells agent *when* to activate)
  • Great: explicit opt-outs ("say X to disable")
  • Good but not great: long prose descriptions, missing opt-outs
  • Avoid: backronyms or clever names in the description line (save for README)

Category density (as of Feb 2026)

  • Cost/token tracking: saturated — need a differentiated angle
  • Batch/workflow: sparse — opportunity
  • Provider-specific tools: mixed — Kimi-heavy, OpenAI moderate
  • Productivity/meta-skills: sparse — opportunity

File Checklist Before Publishing

  • [ ] SKILL.md — frontmatter has name, version, description
  • [ ] SKILL.md — word count 400–700
  • [ ] SKILL.md — has "When to Use" section
  • [ ] SKILL.md — has Safety section
  • [ ] SKILL.md — has Version History
  • [ ] README.md — value-first, ≤600 words
  • [ ] README.md — installation command correct
  • [ ] examples/ — at least one example file (optional but recommended)
  • [ ] Description line — ≤160 chars, value-first
  • [ ] clawhub whoami — auth confirmed before publish

Skill Type: Behavior-Change vs. Active Tool

Most ClawHub skills are behavior-change skills — they work by shaping agent judgment through instructions, not by running code or intercepting requests at the system level. This is the same mechanism as execution-loop-breaker, token-saver, and most top listings.

When writing a behavior-change skill:

  • Be explicit in the description that it works through agent behavior, not automated interception
  • Use language like "trains your agent to..." or "gives your agent the judgment to..." — not "automatically detects" or "intercepts"
  • Don't overstate automation. "Teaches your agent to consolidate related asks" is honest. "Automatically batches requests" implies system-level routing that the skill doesn't do.
  • The benefit is still real — behavior change produces real cost and efficiency improvements

When a skill needs to be an active tool:

  • Requires pre-response hooks or middleware (OpenClaw doesn't currently expose these)
  • Requires script files (analyzer.js, optimizer.js) that actually run
  • Example: a real token optimizer that reads context size and trims it before sending

Bottom line: Instruction-based skills are legitimate and valuable. Just be honest about the scope. Users trust skills that set accurate expectations.


Version History

  • 1.0.1 — Added "Skill Type: Behavior-Change vs. Active Tool" lesson from ClawSaver development
  • 1.0.0 — Initial release. Research workflow, gap analysis framework, listing anatomy, marketplace patterns from Feb 2026 analysis.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

74.97%
按下载量换算3,342

安全审计

VirusTotal

可疑

ClawScan

通过

Static analysis

未展示

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills