template-skill

Convert Skill Unit definitions into vector-ready JSON metadata with toxicity signals.

560|92|Updated Oct 20, 2025
One-click install
npx skills add https://github.com/LeastBit/Claude_skills_zh-CN --skill template-skill-leastbit
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: template-skill
Source: https://github.com/LeastBit/Claude_skills_zh-CN/tree/main/template-skill_模板技能
Command: npx skills add https://github.com/LeastBit/Claude_skills_zh-CN --skill template-skill-leastbit

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

该技能单元提供一个可复用的技能模板框架,帮助开发者快速创建、描述并注册新的 Claude 技能,降低重复工作和出错概率。

Core Features & Use Cases

  • 标准化入口:每个技能单元以 SKILL.md 的 YAML Frontmatter 为入口,确保名称和描述一致,便于自动发现。
  • 易于扩展:支持可选的 scripts/、references/、assets/ 目录来扩展能力和文档。
  • Use Case:当你需要创建一个全新的 Claude 技能以自动化某项重复任务时,可以先复制模板,修改名称与描述后即可上线。

Quick Start

复制该技能单位目录作为新技能的起点,修改 SKILL.md 中的 name 与 description,然后按需添加 scripts/references/assets,完成后上传到 skills 库。

Frequently Asked Questions about template-skill

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

FAQPage Schema
How do I create a standardized Claude skill template with YAML frontmatter?

A Claude skill template uses YAML frontmatter in SKILL.md to define metadata like name and description, ensuring consistency across skill definitions. Start by copying the template directory, edit the frontmatter fields, and add optional scripts/, references/, or assets/ directories to extend functionality before uploading to your skills repository.

What structure should skill definitions follow for retrieval-augmented generation pipelines?

Skill definitions for RAG pipelines must output valid JSON with request, description, is_toxic, and toxic_reason fields. The request requires exactly three declarative sentences, and description must follow the [Action] [Input] to produce [Output] pattern to maintain consistency across agent pipelines and knowledge bases.

Can I automate the conversion of skill definitions into vector-ready metadata?

Yes. This template converts skill units into vector-ready metadata by enforcing structured JSON output with required fields for embedding and retrieval. It transforms skill definitions into retrieval-friendly embeddings applicable across agent pipelines and knowledge bases without manual reformatting.

How do I reduce errors when creating multiple Claude skills?

Use a reusable skill template framework to standardize how you create and describe new Claude skills. The template provides a consistent entry point through SKILL.md, supports optional extension directories, and lowers the probability of inconsistencies across your skill library.

What are the requirements for skill descriptions in automated discovery systems?

Skill descriptions in automated discovery require a standardized format with name and description fields in YAML frontmatter for consistent indexing. Each description must follow the [Action] [Input] to [Output] pattern and include toxicity metadata to ensure compatibility with automated skill registration and RAG retrieval systems.