skill-creator

skill-creator is a skill for Claude Code, Codex from malue-ai/dazee-small. It costs 58 tokens per session (3,139 once invoked), scanned A, original, MIT.

A skill-building assistant that turns a repeatable workflow into a documented add-on for a coding agent. It helps define when the add-on should run, what it needs, what it produces, and how to test it.

In plain words
What is it for?
Use it to create a skill from scratch, capture a successful process, improve an existing skill, and add scripts, references, or templates when needed.
Why use it?
It gives structure to creating or improving a skill, including its instructions, dependencies, edge cases, and success criteria.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create a skill from scratch, capture a successful process, improve an existing skill, and add scripts, references, or templates when needed.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/malue-ai/dazee-small/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 malue-ai/dazee-small --skill skill-creator
Clone the repo
git clone --depth 1 https://github.com/malue-ai/dazee-small

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/malue-ai/dazee-small/skill-creator/github.svg)](https://agentmods.dev/skills/malue-ai/dazee-small/skill-creator)
Your own site
<a href="https://agentmods.dev/skills/malue-ai/dazee-small/skill-creator"><img src="https://agentmods.dev/badge/skills/malue-ai/dazee-small/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/malue-ai/dazee-small/skill-creator"><img src="https://agentmods.dev/badge/skills/malue-ai/dazee-small/skill-creator.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 58 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,139 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.00058 $0.03139
Opus 5 $0.00029 $0.01570
Sonnet 5 $0.00012 $0.00628
Haiku 4.5 $0.00006 $0.00314

Measured 9d ago against content hash 937d5aa7e91b, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, 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 9d 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.

instances/xiaodazi/skills/skill-creator/SKILL.md · 364 lines

How it starts

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

Skill 创建器

帮助用户创建新的 Skill 或改进已有 Skill。一个 Skill 就是一组指令,教 Agent 如何完成特定任务。

使用场景

  • 用户说「帮我做一个 Skill」「把这个流程变成 Skill」「创建一个 XX 技能」
  • 用户对某个已有 Skill 不满意,想要改进
  • 用户想把当前对话中的成功工作流固化下来
  • 用户问「Skill 怎么写」「SKILL.md 格式是什么」

核心流程

创建 Skill 的过程:

  1. 捕获意图 — 弄清楚用户想让 Skill 做什么
  2. 访谈研究 — 追问边界情况、输入输出格式、依赖
  3. 编写 SKILL.md — 生成文件并保存
  4. 测试验证 — 用几个真实场景测试
  5. 迭代改进 — 根据反馈优化

你的任务是判断用户在这个流程的哪个阶段,然后帮他推进。


第一步:捕获意图

如果用户想从零开始,先搞清楚这几个问题(可以从对话上下文推断,不必每个都问):

  1. 这个 Skill 让 Agent 做什么? — 核心功能
  2. 什么时候应该触发这个 Skill? — 用户说什么话、什么场景
  3. 输出格式是什么? — 文件、文本、还是执行动作
  4. 有什么依赖? — 需要命令行工具、Python 包、API Key、还是纯 LLM 就够

如果用户说「把这个流程变成 Skill」,从当前对话中提取:用了什么工具、执行了什么步骤、用户做了什么修正、输入输出长什么样。

第二步:访谈研究

主动追问:

  • 边界情况怎么处理?
  • 有没有示例文件或参考?
  • 成功标准是什么?
  • 有没有类似的现有 Skill 可以参考?

如果涉及外部工具或 API,确认依赖信息(命令名、包名、API Key 字段名)。

第三步:编写 SKILL.md

SKILL.md 结构

skill-name/
├── SKILL.md          (必需)
├── scripts/          (可选 - 确定性/重复性任务的脚本)
├── references/       (可选 - 按需加载的参考文档)
└── assets/           (可选 - 模板、图标等资源文件)

frontmatter 格式

每个 SKILL.md 必须以 YAML frontmatter 开头:

---
name: my-skill-name
description: 清晰描述这个 Skill 做什么、什么时候用它。
metadata:
  xiaodazi:
    dependency_level: builtin    # builtin / lightweight / external / cloud_api
    os: [common]                 # [common] / [darwin] / [win32] / [linux]
    backend_type: local          # local / tool / mcp / api
    user_facing: true
---

字段说明:

  • name:唯一标识,小写,用连字符分隔(如 my-cool-skill
  • description:触发机制的核心。要包含:做什么 + 什么时候用。写得稍微"积极"一些,让 Agent 更容易触发。例如不要写"生成仪表盘",要写"生成仪表盘。当用户提到数据可视化、报表、图表、监控面板时都应该使用这个 Skill"
  • dependency_level
    • builtin — 装好就能用,无需额外安装
    • lightweight — 需要 pip install 一个包或系统授权
    • external — 需要安装外部应用/CLI 工具
    • cloud_api — 需要 API Key
  • os[common] 表示全平台,也可以是 [darwin][win32][linux]
  • backend_typelocal 表示通过 SKILL.md 指导 Agent 执行

正文编写指南

渐进式加载(Progressive Disclosure)

Skill 的内容分三层加载:

  1. Metadata(name + description)— 始终在上下文中,约 100 词
  2. SKILL.md 正文 — Skill 被触发时加载,理想情况 < 500 行
  3. 附属资源 — 按需读取,无上限

Read the full file on GitHub · 364 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. 9d ago First seen · 364 lines · 58 tokens per session scan A 937d5aa7e91b

Subscribe to this mod's changes

skill-creator is a skill published in the GitHub repository malue-ai/dazee-small (36 stars, last pushed 5mo ago), licensed MIT. It adds 58 tokens to every session and 3,139 once invoked, about $0.0003 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-09-03.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens