Agent Skills
› holaboss-ai/holaOS
› skill-creator
skill-creator
GitHub指导如何创建和更新可复用的 Codex 技能,规范 SKILL.md 格式、工作流及模板使用。
Trigger Scenarios
需要创建新的技能定义
需要更新现有技能描述
Install
npx skills add holaboss-ai/holaOS --skill skill-creator -g -y
SKILL.md
Frontmatter
{
"name": "skill-creator",
"description": "Guide for creating effective skills. Use when creating or updating a skill."
}
Skill Creator
Use this skill when defining or updating reusable Codex skills.
Workflow
- Workspace-local skills always live under
skills/at the workspace root. - Create or update each workspace skill under
skills/<skill-id>/and saveSKILL.mdplus any helper files there. - This embedded skill is guidance only: do not write new workspace skills into
runtime/harnesses/src/embedded-skills/. - Clarify the task and gather concrete examples.
- Define minimal reusable structure and naming.
- Enforce canonical
SKILL.mdformat:- frontmatter is required and must include:
name: <skill-id>(must exactly match the directory name underskills/)description: <one-line summary>
- markdown body starts after frontmatter and contains practical usage guidance.
- frontmatter is required and must include:
- Start from this template and fill in concrete content:
---
name: <skill-id>
description: <one-line summary>
---
# <Readable Skill Title>
## When To Use
- ...
## Workflow
1. ...
2. ...
## Examples
- ...
- Keep
SKILL.mdconcise; use references/scripts only when needed. - Validate with a real invocation path.
- Iterate from usage feedback.
Version History
- f52b580 Current 2026-07-25 05:13


