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.
npx skills add L-LesterYu/OpenClaw-hot-skills-zh --skill skill-creator-zhgit clone --depth 1 https://github.com/L-LesterYu/OpenClaw-hot-skills-zhWrote 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.
[](https://agentmods.dev/skills/l-lesteryu/openclaw-hot-skills-zh/skill-creator-zh)<a href="https://agentmods.dev/skills/l-lesteryu/openclaw-hot-skills-zh/skill-creator-zh"><img src="https://agentmods.dev/badge/skills/l-lesteryu/openclaw-hot-skills-zh/skill-creator-zh/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.
<a href="https://agentmods.dev/skills/l-lesteryu/openclaw-hot-skills-zh/skill-creator-zh"><img src="https://agentmods.dev/badge/skills/l-lesteryu/openclaw-hot-skills-zh/skill-creator-zh.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00126 | $0.04459 |
| Opus 5 | $0.00063 | $0.02230 |
| Sonnet 5 | $0.00025 | $0.00892 |
| Haiku 4.5 | $0.00013 | $0.00446 |
Grade A, and why
skill-creator-zh 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.
How it starts
The opening of the file, as written. The whole thing — 370 lines — stays where its author put it; the contents beside it link to each section on GitHub.
技能创建器
本技能提供创建有效技能的指导。
关于技能
技能是模块化、自包含的包,通过提供专业知识、工作流程和工具来扩展 Codex 的能力。可以将它们视为特定领域或任务的"入职指南"——它们将 Codex 从通用代理转变为具备程序性知识的专业代理,这些知识是任何模型都无法完全拥有的。
技能提供什么
- 专业工作流程 - 特定领域的多步骤流程
- 工具集成 - 处理特定文件格式或 API 的指令
- 领域专业知识 - 公司特定知识、模式、业务逻辑
- 捆绑资源 - 用于复杂和重复任务的脚本、参考资料和资产
核心原则
简洁至上
上下文窗口是公共资源。技能与 Codex 需要的其他所有内容共享上下文窗口:系统提示、对话历史、其他技能的元数据以及实际的用户请求。
默认假设:Codex 已经非常聪明。 只添加 Codex 还不知道的上下文。挑战每一条信息:"Codex 真的需要这个解释吗?"和"这一段是否值得它的 token 成本?"
优先使用简洁的示例而非冗长的解释。
设置适当的自由度
根据任务的脆弱性和可变性匹配具体程度:
高自由度(基于文本的指令):当多种方法都有效、决策取决于上下文或启发式方法指导方法时使用。
中等自由度(伪代码或带参数的脚本):当存在首选模式、一些变化是可接受的或配置影响行为时使用。
低自由度(特定脚本,少量参数):当操作脆弱且容易出错、一致性至关重要或必须遵循特定顺序时使用。
将 Codex 想象为探索路径:悬崖间的窄桥需要特定的护栏(低自由度),而开阔的田野允许多条路线(高自由度)。
技能的解剖结构
每个技能由必需的 SKILL.md 文件和可选的捆绑资源组成:
skill-name/
├── SKILL.md(必需)
│ ├── YAML frontmatter 元数据(必需)
│ │ ├── name:(必需)
│ │ └── description:(必需)
│ └── Markdown 指令(必需)
└── 捆绑资源(可选)
├── scripts/ - 可执行代码(Python/Bash 等)
├── references/ - 预期按需加载到上下文中的文档
└── assets/ - 输出中使用的文件(模板、图标、字体等)
SKILL.md(必需)
每个 SKILL.md 由以下组成:
- Frontmatter(YAML):包含
name和description字段。这是 Codex 用来确定何时使用技能的唯一字段,因此在描述技能是什么以及何时应该使用时,清晰和全面非常重要。 - 正文(Markdown):使用技能及其捆绑资源的指令和指导。仅在技能触发后加载(如果触发的话)。
捆绑资源(可选)
脚本(scripts/)
需要确定性可靠性或被重复重写的任务的可执行代码(Python/Bash 等)。
- 何时包含:当相同的代码被重复重写或需要确定性可靠性时
- 示例:用于 PDF 旋转任务的
scripts/rotate_pdf.py - 优点:节省 token、确定性、可能在不加载到上下文的情况下执行
- 注意:脚本可能仍需要被 Codex 读取以进行修补或环境特定的调整
参考资料(references/)
预期按需加载到上下文中以指导 Codex 流程和思考的文档和参考材料。
- 何时包含:用于 Codex 在工作时应该参考的文档
- 示例:用于财务模式的
references/finance.md,用于公司 NDA 模板的references/mnda.md,用于公司政策的references/policies.md,用于 API 规范的references/api_docs.md - 用例:数据库模式、API 文档、领域知识、公司政策、详细工作流程指南
- 优点:保持 SKILL.md 精简,仅在 Codex 确定需要时加载
- 最佳实践:如果文件很大(>10k 字),在 SKILL.md 中包含 grep 搜索模式
- 避免重复:信息应该存在于 SKILL.md 或参考文件中,而不是两者都有。将详细的参考材料、模式和示例放在参考文件中,除非它确实是技能的核心——这可以保持 SKILL.md 精简,同时使信息可被发现而不会占用上下文窗口。只在 SKILL.md 中保留必要的程序性指令和工作流程指导;将详细的参考材料、模式和示例移至参考文件。
What ships with it
5 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
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.
- 9d ago First seen · 370 lines · 126 tokens per session scan A c9f7f8aeac30
skill-creator-zh is a skill published in the GitHub repository L-LesterYu/OpenClaw-hot-skills-zh (54 stars, last pushed 5mo ago), licensed MIT. It adds 126 tokens to every session and 4,459 once invoked, about $0.0006 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.
Other skills, from other repositories
systematic-debugging
Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.
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…
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…
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.
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…
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…