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

clawhub-plugin-packagerClawHub plugin packager 效率

Agent Skill

clawhub-plugin-packager 用于辅助前端页面、组件、样式和交互逻辑开发,适合在 OpenClaw 中需要维护前端项目、生成组件或检查界面实现时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

4,079

周安装

165

GitHub Stars

公开资料未说明

下载量

1,280
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install clawhub-plugin-packager

简介

ClawHub plugin packager 可自动生成或修复 OpenClaw/ClawHub 插件包,适配发布流程要求。

  • 适用于插件开发初期需求不完整或结构不规范的情况,帮助标准化输出格式。
  • 能处理目录结构、元数据补全及基础安全校验,但无法替代人工审核关键环节。
  • 安装命令:openclaw skills install clawhub-plugin-packager;执行过程可能涉及临时文件生成与命令行调用。
  • 使用前请确认项目路径权限,避免在受保护目录下运行导致意外写入。

SKILL.md

name
clawhub-plugin-packager
description
Generate, repair, or audit publish-ready native OpenClaw/ClawHub plugin packages from rough, partial, or inconsistent requirements while keeping the plugin zip separate from a critique file.
version
1.1.0
user-invocable
true
disable-model-invocation
true
metadata
openclaw
emoji
🧩
skillKey
clawhub-plugin-packager

ClawHub Plugin Packager

Use this skill when the user wants to create, repair, review, rename, or repackage a native OpenClaw / ClawHub plugin package.

This skill is plugin-native by design. It is not a generic skill packager with plugin wording layered on top.

Core promise

This skill produces a plugin package first and a separate critique file second.

The plugin package is the main deliverable. The critique file is the review/support layer.

The critique file must remain outside the plugin zip unless the user explicitly asks otherwise.

Unified identity rule

Unless the user explicitly requests a split identity, keep one aligned identity across plugin surfaces:

  • folder name
  • package name
  • plugin id
  • publish/display name when inferable
  • README title
  • repository name when inferable

Prefer one clean identity over clever naming splits.

Exact job

This skill turns rough notes, existing plugin files, code fragments, README text, manifest fragments, or partial specs into a publish-ready native OpenClaw plugin package.

It is designed to:

  • inspect what is present
  • classify the plugin type
  • infer what is missing when reasonable
  • repair inconsistencies
  • generate a coherent plugin package anyway when safe best effort is possible
  • self-audit the result
  • return exactly one plugin package zip plus one separate critique file

Operating stance

Use a low-friction handoff style.

When the user provides material:

  • inspect what is there
  • infer what is missing when reasonable
  • avoid unnecessary clarification loops
  • proceed with the narrowest valid plugin type
  • keep the output concrete and publish-oriented

Prefer statements over questions.

If something is missing but inferable:

  • infer it
  • note the inference in the critique file
  • keep moving

If something is risky, ambiguous, or likely to affect publishability:

  • still produce the package when safe best effort is possible
  • keep the runtime surface minimal
  • mark the issue clearly in the critique file

Do not stop at “more info needed” when a conservative, publishable package can still be built.

Supported modes

1. native-tool-plugin

Default mode.

Use when the request is incomplete, generic, or simply asks for “a plugin” without a more specific runtime role.

This mode should output a minimal native tool plugin in TypeScript + ESM unless the user clearly asks for another language/runtime shape.

2. native-provider-plugin

Use when the plugin is meant to add or wrap a provider surface such as model, speech, or service-provider behavior.

This mode must reason about:

  • provider identity
  • credentials or environment variables
  • provider config schema
  • provider-facing README guidance

3. native-channel-plugin

Use when the plugin adds a channel, transport, ingress, or egress surface.

This mode must reason about:

  • channel identity
  • setup/activation entry behavior
  • connection/config schema
  • README setup steps

4. plugin-audit-only

Use when the user wants review, validation, or packaging advice without generation.

This mode should produce a detailed review record and publishability assessment. Do not generate the final plugin zip unless the user explicitly asks to override audit-only behavior.

5. repair-existing-plugin

Use when the user provides an existing plugin folder, zip, manifest, package.json, entrypoint, or draft package and wants it repaired into publishable form.

Preserve user-authored intent wherever possible, but normalize what is required for coherence and publishability.

Required mode selection behavior

Choose a mode using this priority order:

  1. explicit user instruction
  2. existing artifact structure
  3. runtime role implied by requested behavior
  4. fallback to native-tool-plugin

If ambiguity remains, do not block.

Infer the most conservative valid mode and continue.

That conservative fallback is always native-tool-plugin.

Default strategy

Unless the request clearly specifies otherwise:

  1. prefer a native OpenClaw plugin, not a bundle
  2. prefer native-tool-plugin when the runtime role is underspecified
  3. prefer TypeScript + ESM unless the user clearly asks for JavaScript
  4. keep the first pass minimal, publishable, and easy to extend
  5. mark side-effectful tools as optional when a narrower safe default exists
  6. emit an empty-but-valid config schema when no config is needed

Minimum publishable contract

Every non-audit generation run must produce a plugin package that includes, at minimum:

  • package.json
  • openclaw.plugin.json
  • a coherent runtime entry file
  • README.md

Add additional files only when the selected mode genuinely requires them, such as:

  • tsconfig.json
  • src/
  • setup entry files for channel plugins
  • bundled skill folders declared by the manifest
  • helper schema files

Required manifest behavior

Always emit a valid plugin manifest with:

  • a coherent plugin id
  • a valid configSchema

If no real configuration is needed, emit an empty or minimal schema instead of omitting it.

Required package metadata behavior

Always include the compatibility/build metadata required for native plugin publication.

Required README behavior

The README must state:

  • what the plugin does
  • what plugin class it is
  • what files matter
  • how configuration works
  • what environment variables or credentials are expected, if any
  • what assumptions were made when the input was incomplete

Exact output contract

Always produce exactly two user-facing deliverables for plugin-generation jobs.

A. Plugin package zip

A zip-ready native OpenClaw plugin folder containing only files that directly belong to the plugin release artifact.

Do not include inside the plugin zip:

  • critique notes
  • inference logs
  • packaging commentary
  • review records
  • handoff discussion notes

The plugin zip should look like it was created for the plugin itself, not for the chat session that created it.

B. Separate critique file

A separate plain-text critique file outside the plugin zip.

Preferred extension:

  • .txt

This file must document:

  • inputs provided
  • mode selected and why
  • assumptions and inferences
  • repaired inconsistencies
  • simplifications/downgrades made to preserve publishability
  • remaining risks or follow-up points
  • publishability assessment

This skill's own release boundary

This skill package is itself a standalone ClawHub skill release artifact.

The “plugin zip + separate critique file” rule applies to future plugin-generation jobs performed by this skill, not to the distribution of this skill package itself.

Do not generate a sidecar critique file for this skill unless the user explicitly asks for a review of the skill package.

Intake contract

Accept any of the following as valid input:

  • plain-language description
  • rough notes
  • pasted code
  • existing plugin folder contents
  • manifest fragments
  • package.json fragments
  • README or docs text
  • issue text or repo notes
  • mixed-format partial specifications

Classify source material internally as:

  • preserved input
  • repaired input
  • inferred input
  • ignored input

Reflect those classifications in the critique file.

Inference rules

Be inference-forward, but bounded.

Prefer to infer

  • plugin id
  • display/publish name
  • folder name
  • description
  • plugin class
  • default folder layout
  • minimum config schema
  • entrypoint name
  • README structure
  • environment variable placeholders
  • conservative tool/provider/channel behavior

Do not invent recklessly

Avoid fabricating highly specific runtime features that the request does not justify.

When uncertain, prefer:

  1. publishability
  2. minimal runtime coherence
  3. safety and reviewability
  4. feature richness

When a detail is genuinely unknown, choose the narrowest valid implementation and record the assumption.

Build rules by mode

native-tool-plugin

Generate the smallest useful native plugin.

Default target:

  • TypeScript
  • ESM
  • one runtime entrypoint
  • one minimal coherent tool registration
  • optional-tool classification when side effects are likely

If the request does not clearly demand multiple tools, generate one core tool only.

native-provider-plugin

Generate a provider-oriented package that clearly expresses:

  • provider purpose
  • credentials/env placeholders
  • provider config fields
  • how the provider is expected to be used

If provider details are missing, use placeholder-safe env variables and explain them in the README and critique file.

native-channel-plugin

Generate the runtime shape appropriate for channel plugins, including setup/activation entry behavior when needed.

If lifecycle details are unclear, simplify toward a minimal coherent structure rather than inventing elaborate transport logic.

repair-existing-plugin

Preserve user-authored material wherever possible, but normalize as needed:

  • file naming
  • folder structure
  • manifest shape
  • package metadata
  • README format
  • entrypoint naming
  • config schema completeness
  • plugin id consistency

Document all material changes in the critique file.

plugin-audit-only

Produce a detailed critique and publishability assessment.

Do not build the final zip unless explicitly asked.

Runtime contract layer

Every generated plugin must explicitly answer:

  • what kind of plugin this is
  • what runtime role it serves
  • what entrypoint is used
  • what config exists
  • what public behavior is exposed

Do not leave these as implied.

Secret handling and safety

Never include live credentials, secrets, or production tokens.

When secrets may be needed:

  • use placeholders
  • prefer documented environment-variable names
  • include .env.example-style guidance only when it materially helps the plugin package
  • record all inferred secret/env surfaces in the critique file

Review and self-audit rules

Before final delivery, run an internal review pass against the generated result.

Check:

  • plugin class coherence
  • manifest presence and completeness
  • config schema presence
  • package metadata presence
  • folder layout coherence
  • README completeness
  • separation between plugin zip and critique file
  • obvious secret leakage
  • unnecessary speculative complexity

Determine one of these outcomes:

  • publish-ready
  • publishable with cautions
  • needs human review before publish

Include that assessment in the critique file.

Critique file contract

The critique file must include these sections:

  1. Output Summary
  2. Mode Selected
  3. Inputs Used
  4. Assumptions
  5. Repairs
  6. Simplifications
  7. Risks / Follow-Up Points
  8. Publishability Assessment

Do not turn this into generic commentary. It exists to improve the second run without contaminating the plugin zip.

Packaging rules

  • Keep the plugin package folder clean and release-oriented.
  • Prefer a single top-level plugin folder inside the zip when platform packaging conventions benefit from that structure.
  • Keep the critique output separate.
  • Do not include workspace junk, screenshots, logs, or unrelated helper notes.

Non-goals

Do not treat these as always required for v1.1 plugin generation:

  • inter-plugin protocol design
  • migration frameworks
  • elaborate persistence systems
  • full compatibility matrices
  • admin dashboards
  • speculative always-on runtime architecture

Those belong in later passes or only when explicitly requested.

Final behavior rule

When in doubt, generate the smallest publishable native plugin package that honestly reflects the request, and document all inferences in the separate critique file.

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

86.03%
按下载量换算1,101

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

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

安装前确认

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

来源信息

继续浏览同类 Skills