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

new-skill-creator新技能创建器

Agent Skill

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

总安装

5,845

周安装

246

GitHub Stars

公开资料未说明

下载量

2,047
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install new-skill-creator

简介

new-skill-creator 提供分步引导创建新 Agent Skill 的完整模板包。

  • 适用于开发者快速生成符合规范的 SKILL.md 文件。
  • 包含 frontmatter、工作流、示例与测试用例结构。
  • 使用前应熟悉 OpenClaw 技能开发规范与接口约定。
  • 建议本地验证后再提交至 clawhub 仓库。

SKILL.md

name
skill-creator
description
Create a new agent skill from scratch with guided, step-by-step assistance. Generates a complete SKILL.md package with frontmatter, workflow, examples, and cross-platform metadata. Use when you need to create a skill, build a skill, scaffold a new skill, write a SKILL.md, make an agent skill, author a skill template, start a new skill project, or turn an idea into a publishable skill for ClawHub, skills.sh, OpenClaw, Cursor, Codex, or Claude Code.
metadata
{ "openclaw": { "emoji": "🛠️", "requires": { "bins": ["python3"] } } }

Skill Creator

Create agent skills from scratch through guided conversation. Collects requirements, generates a directory skeleton, and walks you through filling each section until the skill is ready to test and publish.

Quick Start

  1. Describe what the skill should do in one sentence.
  2. The creator walks you through requirements, structure, and content.
  3. A complete skill directory is generated and ready for testing.

When to Use This Skill

Use when someone wants to create a new skill or does not know where to start.

Typical triggers:

  • "I want to make a skill that does X"
  • "Help me create a new skill"
  • "Turn this workflow into a skill"
  • "Scaffold a skill for me"

Example Prompts

  • I want to create a skill that helps me generate weekly reports from Jira data.
  • Help me build a new skill from scratch — I have no idea where to start.
  • Turn this workflow I just did into a reusable skill I can publish on ClawHub.
  • Scaffold a skill for converting CSV files to charts.
  • Create a skill template for me, I need something that audits Terraform configs.

When Not to Use

Do not use this skill for tasks that already have a dedicated tool:

  • Testing or evaluating an existing skill: use skill-test
  • Optimizing search visibility of an existing skill: use skill-seo
  • Debugging runtime failures inside a skill
  • General code review unrelated to skill authoring

Workflow

Follow these five phases in order. Do not skip phases unless the user explicitly asks.

Phase 1: Understand the Need

Ask the user these questions one or two at a time, not all at once:

  1. What should this skill help the agent do? (one sentence)
  2. What would a user say to trigger it? (2-3 realistic examples)
  3. What does the skill produce when finished? (files, reports, code, actions)
  4. Does the skill need external tools or APIs? (env vars, CLI binaries)

Conclude this phase when the purpose, triggers, outputs, and dependencies are clear.

Phase 2: Plan the Structure

Based on the answers, decide which type of skill to create:

  • Instruction-only: SKILL.md + references/ (most skills)
  • Script-backed: adds scripts/ for deterministic or repetitive tasks
  • Asset-backed: adds assets/ for templates, images, or boilerplate

Read references/skill-anatomy.md for the full structure spec.

Phase 3: Generate the Skeleton

Run the scaffold script:

python3 {baseDir}/scripts/init_skill.py <skill-name> --path <output-dir>

For script-backed skills, add --type script. For asset-backed skills, add --type asset.

The script creates the directory, SKILL.md template with TODO placeholders, and resource folders. Verify the output before proceeding.

Phase 4: Fill the Content

Guide the user through each section in priority order. Read references/writing-guide.md for writing rules and references/examples.md for good/bad comparisons.

  1. Frontmatter (most critical):

- name: lowercase-hyphen, must match directory name - description: use the template from writing-guide.md; cover action, object, outcome, and "Use when" triggers - metadata.openclaw: emoji and requires

  1. Example Prompts: at least 3, written in realistic user language
  2. Workflow: numbered steps describing the skill's process
  3. Commands: runnable examples using {baseDir} paths
  4. Definition of Done: measurable completion criteria
  5. When Not to Use: explicit boundaries to reduce false triggers

After each section, confirm with the user before moving on.

Phase 5: Verify and Optimize

After the skill is complete, run the quality toolchain:

  1. Run skill-test to evaluate quality (target score >= 85)
  2. Run skill-seo to check discoverability
  3. Fix issues flagged by either tool and re-evaluate

The skill is ready to publish when skill-test reports no critical or high findings.

Assistant Responsibilities

When using this skill:

  • Ask questions gradually; do not overwhelm the user with all questions at once
  • Explain jargon when the user appears non-technical
  • Generate the skeleton before asking the user to write content
  • Show the user what was generated and explain what each file is for
  • Write draft content for the user to review rather than asking them to write from scratch
  • Preserve the user's original intent; do not expand scope unless asked
  • Always run the scaffold script rather than creating files manually

Notes and Constraints

  • SKILL.md files should stay under 500 lines. Move heavy content to references/.
  • The name field must be lowercase letters, digits, and hyphens only (1-64 chars).
  • The name must match the directory name exactly.
  • Use {baseDir} for all command paths to ensure portability.
  • Do not duplicate logic from skill-test or skill-seo.
  • All generated skills should be compatible with OpenClaw, Codex, Claude Code, and Cursor.
  • If the target directory already exists, the scaffold script will error and refuse to overwrite. Rename or remove the existing directory first.

Definition of Done

  • The scaffold script has run and the directory exists.
  • SKILL.md has valid frontmatter with name, description, and metadata.
  • At least 3 example prompts are present.
  • A Workflow section documents the skill's process.
  • A Definition of Done section states measurable completion criteria.
  • skill-test scores the new skill at 85 or above with no critical findings.

Resources

Commands

# Generate a new instruction-only skill
python3 {baseDir}/scripts/init_skill.py my-skill --path /path/to/output

# Generate a script-backed skill
python3 {baseDir}/scripts/init_skill.py my-skill --path /path/to/output --type script

# Generate an asset-backed skill
python3 {baseDir}/scripts/init_skill.py my-skill --path /path/to/output --type asset

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.93%
按下载量换算1,616

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills