skill-creator

skill-creator is a skill for Claude Code, Codex from liyecom/liye-ai. It costs 11 tokens per session (1,266 once invoked), scanned A, original, Apache-2.0.

A guide for creating Claude skills, which are reusable instructions and supporting files that teach an assistant how to handle a type of work.

In plain words
What is it for?
Use it when designing a skill, writing its SKILL.md file, organizing scripts or templates, and adapting it to the described three-layer system.
Why use it?
It gives developers a consistent structure for defining, documenting, integrating, publishing, and maintaining skills.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: reads .claude/ paths.

Good fit Use it when designing a skill, writing its SKILL.md file, organizing scripts or templates, and adapting it to the described three-layer system.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/liyecom/liye-ai/skill-creator
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add liyecom/liye-ai --skill skill-creator
Clone the repo
git clone --depth 1 https://github.com/liyecom/liye-ai

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for skill-creator

README.md
[![agentmods](https://agentmods.dev/badge/skills/liyecom/liye-ai/skill-creator/github.svg)](https://agentmods.dev/skills/liyecom/liye-ai/skill-creator)
Your own site
<a href="https://agentmods.dev/skills/liyecom/liye-ai/skill-creator"><img src="https://agentmods.dev/badge/skills/liyecom/liye-ai/skill-creator/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for skill-creator

Your own site · 80×15
<a href="https://agentmods.dev/skills/liyecom/liye-ai/skill-creator"><img src="https://agentmods.dev/badge/skills/liyecom/liye-ai/skill-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 11 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,266 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00011 $0.01266
Opus 5 $0.00005 $0.00633
Sonnet 5 $0.00002 $0.00253
Haiku 4.5 $0.00001 $0.00127

Measured 10d ago against content hash 784a6987f3c2, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

skill-creator scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

Skills/00_Core_Utilities/meta/skill-creator/SKILL.md · 180 lines

How it starts

The opening of the file, as written. The whole thing — 180 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Skill Creator

来源: ComposioHQ/awesome-claude-skills 适配: LiYe OS 三层架构

提供创建 Claude Skills 的完整指导,包括专业知识封装、工作流设计、工具集成等。

When to Use This Skill

当需要创建新的 Claude 技能时:

  • 设计技能结构和范围
  • 编写 SKILL.md 规范文件
  • 组织脚本和模板
  • 遵循最佳实践
  • 发布和维护技能

Core Capabilities

1. 技能结构设计

标准目录结构

skill-name/
├── SKILL.md          # 必须:技能定义文件
├── scripts/          # 可选:辅助脚本
├── templates/        # 可选:文档模板
└── references/       # 可选:参考资料

2. SKILL.md 编写规范

必须包含的 Frontmatter

---
name: skill-name
description: 清晰描述技能功能
domain: 所属域
version: 1.0.0
status: active | draft | deprecated
---

必须包含的章节

  • When to Use This Skill: 明确使用场景
  • Core Capabilities: 核心能力列表
  • Usage Examples: 真实使用示例
  • Dependencies: 依赖项说明

3. LiYe OS 三层适配

在 LiYe OS 中创建技能需要考虑三层架构:

L1 方法论层 (docs/methodology/):

# skill_definition.md - 10 模块结构
1. Skill Identity
2. Capability Model
3. Mental Models
4. Methods & SOPs
5. Execution Protocols
6. Output Structure
7. Templates
8. Tools Access
9. Evaluation
10. Evolution

L2 可执行层 (src/skill/atomic/):

// index.ts
export const skill: Skill = {
  id: 'skill-name',
  name: 'Skill Name',
  execute: async (input) => { ... }
};

// spec.yaml
id: skill-name
type: atomic
input: { ... }
output: { ... }

L3 指令层 (.claude/skills/):

# SKILL.md - 简洁的使用指导
针对 Claude 的操作指令

4. 最佳实践

  • 单一职责: 每个技能专注一个明确目标
  • 清晰边界: 明确说明何时使用/不使用
  • 丰富示例: 提供真实场景的使用案例
  • 版本管理: 使用 SemVer 版本号
  • 持续演进: 维护 evolution_log.md

5. 发布流程

  1. 在 99_Incubator 开发和测试
  2. 完成所有必需文件
  3. 通过验证清单
  4. 迁移到正式域
  5. 更新索引文件

Usage Examples

示例 1: 创建数据分析技能

用户: 帮我创建一个 Amazon 广告分析技能
Claude: [使用 skill-creator 技能设计结构、生成模板文件]

示例 2: 从文档生成技能

用户: 把这个 API 文档转换成 Claude 技能
Claude: [使用 skill-creator 技能提取关键信息、生成 SKILL.md]

示例 3: 评审现有技能

用户: 检查这个技能是否符合规范
Claude: [使用 skill-creator 技能对照最佳实践进行评审]

Dependencies

无外部依赖,纯知识型技能。

LiYe OS Integration

业务域引用

此技能被以下业务域引用:

  • 99_Incubator: 技能孵化(主域)

Read the full file on GitHub · 180 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 180 lines · 11 tokens per session scan A 784a6987f3c2

Subscribe to this mod's changes

skill-creator is a skill published in the GitHub repository liyecom/liye-ai (33 stars, last pushed 3d ago), licensed Apache-2.0. It adds 11 tokens to every session and 1,266 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.