用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/aiFabricoCom/fabrico-collections-codex --skill fabrico-creating-skills命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | fabrico-creating-skills |
| description | Author repository skills with concise metadata and progressive disclosure. |
Build small, discoverable capability packages that contain instructions and only the resources needed to execute them reliably.
.agents/skills/<skill-name>/
├── SKILL.md # required
├── agents/openai.yaml # recommended UI metadata
├── scripts/ # optional deterministic helpers
├── references/ # optional material read on demand
└── assets/ # optional files copied or used in output
Repository skills live under .agents/skills/; personal skills live under $HOME/.agents/skills/. Keep the folder name identical to the name value.
SKILL.md frontmatter with only name and description.agents/openai.yaml when UI metadata improves discovery. Set allow_implicit_invocation: false only for workflows that must be started explicitly.The description is the primary trigger. State the capability first, then concrete trigger contexts and important exclusions. Front-load decisive terms because catalogs may shorten long descriptions.
Avoid generic claims such as “helps with development.” Distinguish the skill from adjacent capabilities in one or two compact sentences.
SKILL.md is loaded when selected.Keep SKILL.md below 500 lines. Link references directly from it and avoid reference chains. Put a short table of contents in reference files longer than 100 lines.
Use resources deliberately:
scripts/ for repeated operations that benefit from deterministic executionreferences/ for detailed schemas, policies, variants, and examples Codex may need to readassets/ for templates, media, or boilerplate used in an output rather than read as guidanceDo not add auxiliary readmes, changelogs, installation guides, or duplicate explanations.
When creating agents/openai.yaml:
short_description between 25 and 64 characters;default_prompt one sentence that explicitly mentions $<skill-name>;policy.allow_implicit_invocation: false for explicit workflow entry points, otherwise omit the policy or set it to true.name and description.SKILL.md.agents/openai.yaml, when present, matches the skill and parses as YAML.Start from skill.template.md. Read common-patterns.md when selecting a resource layout. See reviewing-code.skill.md for a complete compact example.