用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/aiFabricoCom/fabrico-collections-codex --skill fabrico-creating-workflows命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | fabrico-creating-workflows |
| description | Author reusable entry workflow skills. |
Model a reusable user-started action as a normal Codex skill plus UI metadata that disables implicit invocation.
.agents/skills/<workflow-name>/
├── SKILL.md
├── agents/
│ └── openai.yaml
└── references/, scripts/, assets/ # only when needed
SKILL.md frontmatter contains only name and description. The current user message is the workflow input; do not add argument placeholders or invent a separate command format.
For an explicit workflow, agents/openai.yaml must contain:
interface:
display_name: "<Human-readable name>"
short_description: "<25-64 character UI summary>"
default_prompt: "Use $<workflow-name> to <representative task>."
policy:
allow_implicit_invocation: false
Quote all YAML string values. The default prompt must mention the skill by its exact $name.
agents/openai.yaml with allow_implicit_invocation: false.AGENTS.md.name match.SKILL.md frontmatter has only name and description.agents/openai.yaml is valid and sets allow_implicit_invocation: false.default_prompt explicitly mentions the exact skill name.SKILL.md and resolve.Use workflow-skill.template.md as the starting point.