Token导航 LogoToken导航TokenDH.com
开发只读clawhub未标认证来源可访问clear审计通过

skillforgeskillforge 分析

Agent Skill

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

总安装

8,067

周安装

343

GitHub Stars

公开资料未说明

下载量

2,826
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install skillforge

简介

skillforge 通过七步流程生成生产级 Agent Skill 包,涵盖需求分析到部署。

  • 适合前端组件开发、样式实现和交互逻辑维护等任务。
  • 提供结构化管道,确保技能包具备完整架构和可复用性。
  • 通过 clawhub 安装,建议查看原始 README 了解各阶段输出物。
  • 使用前请确认其是否涉及项目文件修改或外部依赖安装。

SKILL.md

name
skillforge
description
|

SkillForge — Agent Skill Generator

Generate complete, production-ready Agent Skill packages via a 7-step pipeline. Each step has defined inputs, outputs, and quality constraints.

Core Design Principles

Apply these principles throughout all 7 steps:

  1. Concise is Key — Context window is a public good. Only include knowledge the AI model does NOT already have. Challenge each paragraph: "Does this justify its token cost?"
  2. Description is the trigger — Determines whether the Skill gets selected. Must include WHAT + WHEN.
  3. Progressive disclosure — SKILL.md < 500 lines. Supporting files in scripts/, references/, templates/ loaded on demand.
  4. Code examples > text — Prefer concise, runnable examples over verbose descriptions.
  5. Anti-patterns are essential — Show what NOT to do using ❌/✅ contrast format.
  6. Imperative tone — "Run" not "You should run".
  7. No auxiliary files — No README.md, CHANGELOG.md. Skills are for AI agents, not humans.

Pipeline Overview

User requirement
  → Step 1: Requirement deep analysis
  → Step 2: Architecture decisions
  → Step 3: Metadata (YAML frontmatter)
  → Step 4: SKILL.md body
  → Step 5: Quality audit + optimization
  → Step 6: Resource files (scripts/, references/, templates/)
  → Step 7: Usage documentation
  → Complete Skill package

Execute steps sequentially. Each step builds on previous outputs.

Step 1: Requirement Deep Analysis

Analyze the user's requirement. Output a structured document (2000-5000 chars).

Read the full step prompt: references/step-prompts.md → Section "Step 1".

Output structure:

  1. Core positioning (name, one-line description, target users, value proposition)
  2. Functional boundaries (core features as input→process→output triples, extensions, exclusions)
  3. Usage scenarios (at least 5, each with: user request, expected behavior, output format)
  4. Knowledge gap analysis (most critical):

- AI already knows → exclude from SKILL.md - AI doesn't know → core content of SKILL.md - AI often gets wrong → needs anti-pattern examples

  1. Dependencies and constraints

Step 2: Architecture Decisions

Make 5 key decisions. Read full prompt: references/step-prompts.md → Section "Step 2".

DecisionOptions
Structure patternWorkflow / Task-oriented / Guide / Capability
Freedom levelHigh / Medium / Low
Resource file planTable of files with paths, types, purposes, line counts
Progressive disclosureWhat goes in SKILL.md vs references/ vs scripts/
Quality assuranceValidation checklist, common errors, quality standards

Output a complete directory tree at the end.

Step 3: Metadata Crafting

Generate YAML frontmatter with optimized description.

  1. Generate 3 candidate descriptions
  2. Score each on: trigger precision (1-5), capability coverage (1-5), information density (1-5)
  3. Select highest-scoring candidate

Read full prompt: references/step-prompts.md → Section "Step 3".

description quality rules:

  • 30-80 words, objective descriptive tone
  • Must include WHAT the skill does AND WHEN to use it
  • Every word must earn its place

Step 4: SKILL.md Body Generation

Generate the complete body (excluding frontmatter). Target: 150-450 lines.

Read full prompt: references/step-prompts.md → Section "Step 4".

Structure (adapt as needed):

  1. Overview (2-3 sentences)
  2. Core workflow (numbered steps or decision flow)
  3. Detailed rules and instructions (domain-specific)
  4. Code examples (✅ Good / ❌ Bad contrast format)
  5. Edge case handling
  6. Output format specification
  7. Validation checklist (Markdown checkboxes)

Key constraints:

  • No generic knowledge AI already has
  • No repetition of description content
  • Sections > 100 lines → split to references/
  • All code examples must be complete and runnable

Step 5: Quality Audit

Audit the generated SKILL.md (Step 3 frontmatter + Step 4 body) against 10 dimensions, then output the optimized version.

Read full prompt: references/step-prompts.md → Section "Step 5".

10-dimension scoring (1-10 each):

#Dimension
1Description trigger precision
2Knowledge increment (only AI-unknown content)
3Code example quality (runnable, representative)
4Anti-pattern coverage (❌/✅ contrast)
5Structure clarity
6Progressive disclosure (<500 lines)
7Tone consistency (imperative throughout)
8Edge case handling
9Actionability (instructions directly executable)
10Completeness (no missing critical content)

Fix any dimension scoring below 8. Output optimized complete SKILL.md.

Step 6: Resource File Generation

Generate all supporting files planned in Step 2.

Read full prompt: references/step-prompts.md → Section "Step 6".

Rules:

  • Strictly follow Step 2 file plan — no omissions, no extras
  • If Step 2 says "no resource files needed" → skip this step
  • Every file must be complete — no ... or TODO placeholders
  • Scripts must include shebang lines

Step 7: Usage Documentation

Generate usage guide with 4 sections:

  1. Installation (1-3 sentences)
  2. Trigger examples (at least 5 natural language requests)
  3. Iteration suggestions (3-5 specific improvement directions)
  4. Validation checklist (completeness checks with checkboxes)

Read full prompt: references/step-prompts.md → Section "Step 7".

Execution Workflow

When a user requests Skill generation:

  1. Collect requirement: skill name, target domain, core capabilities, usage scenarios (optional), notes (optional)
  2. Execute Steps 1-7 sequentially, presenting each step's output to the user
  3. After Step 5, write the final SKILL.md to disk
  4. After Step 6, write all resource files to disk
  5. After Step 7, present the complete skill package

File output structure:

{skill-name}/
├── SKILL.md
├── scripts/       (if planned)
├── references/    (if planned)
└── templates/     (if planned)

Quality Gate

Before delivering the final package, verify:

  • [ ] SKILL.md exists with valid YAML frontmatter (name + description)
  • [ ] description includes WHAT + WHEN, 30-80 words
  • [ ] SKILL.md body < 500 lines
  • [ ] All code examples are complete and runnable
  • [ ] Anti-patterns use ❌/✅ contrast format
  • [ ] Imperative tone throughout
  • [ ] All Step 2 planned resource files exist
  • [ ] No README.md, CHANGELOG.md, or auxiliary docs
  • [ ] No generic knowledge AI already has
  • [ ] Directory structure matches Step 2 plan

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

78.97%
按下载量换算2,232

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills