skill-builder

Creates new SKILL.md skill units following a modular template and framework conventions.

Updated Jul 3, 2026
One-click install
npx skills add https://github.com/LYGOLANG/fufan-cc-flow --skill skill-builder-lygolang
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: skill-builder
Source: https://github.com/LYGOLANG/fufan-cc-flow/tree/main/.agents/skills/skill-builder
Command: npx skills add https://github.com/LYGOLANG/fufan-cc-flow --skill skill-builder-lygolang

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? When your agent framework grows, hand-writing new Skills leads to inconsistent structure, missing sections, and drift from established conventions. This Skill standardizes the creation of new SKILL.md units so every skill is plug-and-play and stylistically consistent with existing ones. ## Core Features & Use Cases - Template-first scaffolding: Copies a skeleton template with mandatory sections ([任务], [依赖检测], [文件结构], [第一性原则], [初始化]) and optional sections, then fills placeholders. - Convention enforcement: Applies writing rules such as bracket-style section headers, four-space indentation, Chinese content, and frontmatter limited to name and description. - Reference-based consistency: Reads 1-2 existing skills with the closest interaction pattern (conversational, autonomous analysis, execution, or diagnostic) before writing. - Use Case: When EVOLUTION.md proposes a new capability, invoke this Skill to generate a compliant new skill directory under .agents/skills/ and register it in AGENTS.md. ## Quick Start Create a new skill called code-review following the framework's modular skill conventions and register it in AGENTS.md.

Frequently Asked Questions about skill-builder

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a new SKILL.md for an agent framework?▼

Start from the skeleton template in templates/skill-template.md, fill in the mandatory sections ([任务], [依赖检测], [文件结构], [第一性原则], [初始化]), and keep frontmatter limited to name and description. Reference an existing skill with a similar interaction pattern to stay consistent.

What sections are required in a SKILL.md file?▼

Mandatory sections are [任务], [依赖检测], [文件结构], [第一性原则], and [初始化]. Recommended sections include [输出风格], dimension checklists, and strategy sections, while fallback and phase-completion sections are added only when needed.

What formatting conventions does a SKILL.md follow?▼

Sections use bracket-style headers like [任务], content is indented with four spaces, the body is written in Chinese, and the YAML frontmatter contains only name and description. Skill names use kebab-case and live under .agents/skills/.

When should a skill use references or templates subdirectories?▼

Add a references/ directory when content is too thick for the main SKILL.md so it can be loaded on demand. Add templates/ only when the skill produces document outputs that need a reusable output template.

Does creating a new skill require updating other files?▼

Yes. After creating the SKILL.md under .agents/skills/[skill-name]/, you must register it in AGENTS.md by adding the skill invocation rules, the available skills list, and any workflow orchestration entries.